Skip to content

Instantly share code, notes, and snippets.

View ScottPDickinson's full-sized avatar

Scott Dickinson ScottPDickinson

  • Chicago, IL
View GitHub Profile
@ScottPDickinson
ScottPDickinson / get_snp_list.py
Created September 8, 2016 15:08
Getting SNP list from PredictDB database
import sqlite3
def get_snp_list(db_file, out_file):
'''
Queries a PredictDB sqlite database and creates a tab-delimited file with fields
rsid number, ref_allele, eff_allele.
db_file: path to the database file
out_file: name of the output file
'''