Skip to content

Instantly share code, notes, and snippets.

View cplaisier's full-sized avatar

Christopher L Plaisier, PhD cplaisier

View GitHub Profile
@cplaisier
cplaisier / TF_NetworkEntrez.py
Created March 20, 2018 17:31 — forked from ssstrike/TF_NetworkEntrez.py
takes an input Entrez ID and outputs a .sif file
# -*- coding: utf-8 -*-
"""
Created on Mon Mar 12 18:16:24 2018
@author: Fuzzy
"""
import json
with open('tfbsDb_plus_and_minus_5000_entrez.json', 'r') as f:
data = json.load(f)
@cplaisier
cplaisier / TF_TestNetwork.py
Last active March 13, 2018 18:19 — forked from ssstrike/TF_TestNetwork.py
Outputs list of associated Entrez ID to an input Entrez ID
# -*- coding: utf-8 -*-
"""
Created on Mon Mar 12 18:16:24 2018
@author: Fuzzy
"""
import json
with open('tfbsDb_plus_and_minus_5000_entrez.json', 'r') as f:
data = json.load(f)