Keybase proof
I hereby claim:
- I am yong27 on github.
- I am yong27 (https://keybase.io/yong27) on keybase.
- I have a public key ASAjtQNw9SDOQaz1UbCt8SF8R7dYOe-xaZQKCGYa8jmPugo
To claim this, I am signing this object:
{ | |
"metadata": { | |
"name": "", | |
"signature": "sha256:9299994bc33725ce2fb54720efc2a7b1a7fb1e955d3914b9e8ba9de6a50bd456" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ |
import pandas as pd | |
from subprocess import Popen, PIPE | |
def len_fasta(filename): | |
p1 = Popen(['cat', filename], stdout=PIPE, stderr=PIPE) | |
p2 = Popen(['grep', '>'], stdin=p1.stdout, stdout=PIPE, stderr=PIPE) | |
p3 = Popen(['wc', '-l'], stdin=p2.stdout, stdout=PIPE, stderr=PIPE) | |
result, err = p3.communicate() | |
if p3.returncode != 0: |
""" | |
It's for counting biological_process terms which have is_a and part_of. | |
Usage: | |
$ wget http://purl.obolibrary.org/obo/go.obo | |
$ python3 go_term_stat.py < go.obo | |
Main data structure |
def is_valid_fastq(lines): | |
start = lines[0].startswith('@') | |
middle = lines[2].startswith('+') | |
length = len(lines[1]) == len(lines[3]) | |
return all([start, middle, length]) | |
def FastqIterator(file): | |
lines = [file.next(), file.next(), file.next()] | |
for line in file: | |
lines.append(line) |
import unittest | |
class 유형: | |
def __init__(자기, *인수, **키워드인수): | |
자기.생성될때(*인수, **키워드인수) | |
class 시험사례(unittest.TestCase): | |
같아야함 = unittest.TestCase.assertEquals | |
class 배열(list): |
import unittest | |
from math import pi, degrees | |
def get_hour_angle(hour, minute=0): | |
angle = (hour / 6.) * pi | |
minute_angle = get_minute_angle(minute) / 12 | |
return angle + minute_angle | |
def get_minute_angle(minute): | |
angle = (minute / 30.) * pi |
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"# 성적 데이터 분석\n", | |
"\n", | |
"인코고등학교 1학년의 중간고사 성적이 나왔습니다. 1반과 2반 두개의 반으로 구성되어 있고, 학생은 각각 6명입니다. 이 성적 데이터로 간단한 데이터 분석을 하고자 합니다. \n", | |
"\n", |
I hereby claim:
To claim this, I am signing this object: