forked from ACharbonneau/gtexdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgtex_maps.py
79 lines (77 loc) · 2.97 KB
/
gtex_maps.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
anatomy_dict = {
'Adipose - Subcutaneous': 'UBERON:0002190',
'Adipose - Visceral (Omentum)': 'UBERON:0010414',
'Adrenal Gland': 'UBERON:0002369',
'Artery - Aorta': 'UBERON:0001946',
'Artery - Coronary': 'UBERON:0001621',
'Artery - Tibial': 'UBERON:0007610',
'Bladder': 'UBERON:0001255',
'Brain - Amygdala': 'UBERON:0001876',
'Brain - Anterior cingulate cortex (BA24)': 'UBERON:0009835',
'Brain - Caudate (basal ganglia)': 'UBERON:0001873',
'Brain - Cerebellar Hemisphere': 'UBERON:0002037',
'Brain - Cerebellum': 'UBERON:0002037',
'Brain - Cortex': 'UBERON:0001870',
'Brain - Frontal Cortex (BA9)': 'UBERON:0009834',
'Brain - Hippocampus': 'UBERON:0001954',
'Brain - Hypothalamus': 'UBERON:0001898',
'Brain - Nucleus accumbens (basal ganglia)': 'UBERON:0001882',
'Brain - Putamen (basal ganglia)': 'UBERON:0001874',
'Brain - Spinal cord (cervical c-1)': 'UBERON:0006469',
'Brain - Substantia nigra': 'UBERON:0002038',
'Breast - Mammary Tissue': 'UBERON:0008367',
'Cells - Cultured fibroblasts': None, # 'UBERON:0000XXX',
'Cells - EBV-transformed lymphocytes': None, #'EFO:0002009',
'Cells - Leukemia cell line (CML)': None, #'EFO:0000572',
'Cells - Transformed fibroblasts': None, #??
'Cervix - Ectocervix': 'UBERON:0012249',
'Cervix - Endocervix': 'UBERON:0000458',
'Colon - Sigmoid': 'UBERON:0001159',
'Colon - Transverse': 'UBERON:0001157',
'Esophagus - Gastroesophageal Junction': 'UBERON:0004550',
'Esophagus - Mucosa': 'UBERON:0006920',
'Esophagus - Muscularis': 'UBERON:0004648',
'Fallopian Tube': 'UBERON:0003889',
'Heart - Atrial Appendage': 'UBERON:0006631',
'Heart - Left Ventricle': 'UBERON:0006566',
'Kidney - Cortex': 'UBERON:0001225',
'Kidney - Medulla': 'UBERON:0001293',
'Liver': 'UBERON:0001114',
'Lung': 'UBERON:0008952',
'Minor Salivary Gland': 'UBERON:0006330',
'Muscle - Skeletal': 'UBERON:0011907',
'Nerve - Tibial': 'UBERON:0001323',
'Ovary': 'UBERON:0000992',
'Pancreas': 'UBERON:0001150',
'Pituitary': 'UBERON:0000007',
'Prostate': 'UBERON:0002367',
'Skin - Not Sun Exposed (Suprapubic)': 'UBERON:0036149',
'Skin - Sun Exposed (Lower leg)': 'UBERON:0004264',
'Small Intestine - Terminal Ileum': 'UBERON:0001211',
'Spleen': 'UBERON:0002106',
'Stomach': 'UBERON:0000945',
'Testis': 'UBERON:0000473',
'Thyroid': 'UBERON:0002046',
'Uterus': 'UBERON:0000995',
'Vagina': 'UBERON:0000996',
'Whole Blood': 'UBERON:0013756'
}
assay_types = {
'WGS': 'OBI:0002117',
'RNA-Seq': 'OBI:0001271',
'WXS': 'OBI:0002118',
'histology': 'OBI:0600020'
}
edam_types = {'file_formats': {
'crai,cram': 'format:3462',
'cram,crai': 'format:3462',
'bam,sra': 'format:2572',
'sra,bam': 'format:2572',
'bam,contigs,sra': 'format:2572',
'sra': 'format:3698'},
'data_types': {
'RNA-Seq': 'data:3495',
'WGS': 'data:3494',
'WXS': 'data:3494'
}
}