Skip to content

Instantly share code, notes, and snippets.

Avatar

Hyeshik Chang hyeshik

View GitHub Profile
@hyeshik
hyeshik / README.md
Last active September 18, 2019 05:50
View README.md

SNU Bioinformatics and Practice 2 - Week 2

Contains the notebooks for the practice sessions.

@hyeshik
hyeshik / KNUE-20190510-Slides.pdf
Last active February 19, 2021 03:29
파이썬으로 하는 데이터 분석: 일상에서 배우기
View KNUE-20190510-Slides.pdf
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hyeshik
hyeshik / WASET abstract database processing.ipynb
Last active May 10, 2019 15:50
Processes the downloaded WASET database to generate tables of Korean authors and abstracts
View WASET abstract database processing.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hyeshik
hyeshik / download-waset.py
Last active July 31, 2018 01:33
Download WASET conference abstracts
View download-waset.py
#!/usr/bin/env python3
#
# Copyright (c) 2018 Hyeshik Chang
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
View 0524 Bamtori NIPT Interpretation.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View 0609 Mad Scienctist Generator.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hyeshik
hyeshik / 1226 Burger Index.ipynb.json
Last active September 1, 2022 01:36
An IPython notebook for analysis of the distributions of fast-food hamburger shops.
View 1226 Burger Index.ipynb.json
This file has been truncated, but you can view the full file.
{
"metadata": {
"name": "",
"signature": "sha256:f99925a6f73a1e36bc91415d84266705e3bdf72304d8dba7bcfb6c94ca7b270a"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
@hyeshik
hyeshik / Citation trends 2013.ipynb.json
Created August 1, 2014 14:27
a notebook to plot citation trends from JCR 2004-2013
View Citation trends 2013.ipynb.json
View jobscript.sh
#!/bin/sh
#rule: {job}
#input: {job.input}
#output: {job.output}
#threads: {job.threads}
{self.workflow.snakemakepath} --snakefile {self.workflow.snakefile} \
--force -j{self.cores} \
--directory {workdir} --nocolor --notemp --quiet --nolock {job.output} \
> /dev/null && touch "{jobfinished}" || touch "{jobfailed}"
exit 0
@hyeshik
hyeshik / sgesnake.sh
Last active December 18, 2015 16:28
View sgesnake.sh
#!/bin/sh
#
# Adopts and submit a snakemake cluster job script to SGE queue
#
# by Hyeshik Chang
#
JOBSCRIPT_SNAKEMAKE=$1
JOBSCRIPT_SGE="`dirname $1`/sge`basename $1`"