Skip to content

Instantly share code, notes, and snippets.

View saarthak24's full-sized avatar
🤓

Saarthak Sethi saarthak24

🤓
View GitHub Profile
@saarthak24
saarthak24 / filtered.py
Created April 5, 2019 08:05
Created while conducting research for project on "Identifying and Ranking Amygdala Genes Linked to Autism Spectrum Disorder" at Children's National Health System
from collections import defaultdict
import numpy as np
import csv
np.set_printoptions(threshold=np.nan)
data = open("Data/GPL5175-3188.txt")
# Data for genes and associated IDs
geneList = data.read().split("\n")
data.close()
geneDict = {}
@saarthak24
saarthak24 / amygdala.py
Last active April 5, 2019 08:41
Created while conducting research for project on "Identifying and Ranking Amygdala Genes Linked to Autism Spectrum Disorder" at Children's National Health System
from collections import defaultdict
import numpy as np
import csv
np.set_printoptions(threshold=np.nan)
data = open("Data/GPL5175-3188.txt")
# Data for genes and associated IDs
geneList = data.read().split("\n")
data.close()
geneDict = {}