31
|
1
|
|
2 import CGData
|
|
3 import CGData.BaseTable
|
|
4
|
|
5 class GenomicSegment(CGData.BaseTable.BaseTable):
|
|
6
|
|
7 __format__ = {
|
|
8 "name" : "genomicSegment",
|
|
9 "type" : "type",
|
|
10 "form" : "table",
|
|
11 "columnOrder" : [
|
|
12 "id",
|
|
13 "chrom",
|
|
14 "chrom_start",
|
|
15 "chrom_end",
|
|
16 "strand",
|
|
17 "value"
|
|
18 ],
|
|
19 "groupKey" : "id",
|
|
20 "columnDef" : {
|
|
21 "chrom_start" : { "type" : "int" },
|
|
22 "chrom_end" : { "type" : "int" },
|
|
23 "value" : { "type" : "float" }
|
|
24 },
|
|
25 "links" : {
|
|
26 "assembly" : {},
|
|
27 "dataSubType" : {}
|
|
28 }
|
|
29 }
|
|
30
|
|
31 def __init__(self):
|
|
32 CGData.BaseTable.BaseTable.__init__(self)
|