Blog posting

Python json

Python urllib.request

import json
import urllib.request
import urllib.parse

url = 'http://pubchem.ncbi.nlm.nih.gov/rest/pug_view/data/substance/24724290/' \
      'JSON/?version=1&response_type=display'

with open('test.txt', 'w') as json_file:
    with urllib.request.urlopen(url) as f:
        # print(f.read().decode('utf-8'))
        json_file.write(f.read().decode('utf-8'))

with open('test.txt') as json_file:
    data = json.load(json_file)

print(data['Record']['Section'][2]['Section'][1]['Information'][0]['NumValue'])

Personal study

Read paper about disease-disease relationship


About coursework

BWT and LF Search video


Lab seminar


etc

Read article

1
2
3

Art of Command Line

Jekyll

Korean manual
English manual

Install PyPy in Mint

Read wikipedia

Add blog about bioinformatics to feedly

1
2
3
4
5
6. Machine learning

Paper survey tips

Paper reading tips

Paper survey tips