Mercurial > repos > melissacline > ucsc_cancer_utilities
annotate seg2matrix/CGData/ProbeMap.py @ 37:e81019e3ac99
Updated synapseGetDataset to look at the filename rather than the (no longer existant) content type field to determine if the data is in zip format
author | melissacline |
---|---|
date | Mon, 27 Jul 2015 16:29:24 -0700 |
parents | ab20c0d04f4a |
children |
rev | line source |
---|---|
31 | 1 |
2 import CGData.BaseTable | |
3 | |
4 | |
5 class ProbeMap(CGData.BaseTable.BaseTable): | |
6 __format__ = { | |
7 "name" : "probeMap", | |
8 "form" : "table", | |
9 "columnOrder" : [ | |
10 "probe", | |
11 "aliases", | |
12 "chrom", | |
13 "chrom_start", | |
14 "chrom_end", | |
15 "strand" | |
16 ], | |
17 "primaryKey" : "probe", | |
18 "columnDef" : { | |
19 "chrom_start" : { "type" : "int", "index" : 1 }, | |
20 "chrom_end" : { "type" : "int", "index" : 1 } | |
21 } | |
22 } | |
23 | |
24 def __init__(self): | |
25 CGData.BaseTable.BaseTable.__init__(self) | |
26 |