view seg2matrix/CGData/ProbeMap.py @ 57:eef100efcc4c

fix
author jingchunzhu
date Fri, 18 Sep 2015 11:11:15 -0700 (2015-09-18)
parents ab20c0d04f4a
children
line wrap: on
line source

import CGData.BaseTable


class ProbeMap(CGData.BaseTable.BaseTable):
    __format__ =  {
            "name" : "probeMap",
            "form" : "table",
            "columnOrder" : [
                "probe",
                "aliases",
                "chrom",
                "chrom_start",
                "chrom_end",
                "strand"
            ],
            "primaryKey" : "probe",
            "columnDef" : {
				"chrom_start" : { "type" : "int", "index" : 1 },
				"chrom_end" : { "type" : "int", "index" : 1 }
            }
        }
        
    def __init__(self):
        CGData.BaseTable.BaseTable.__init__(self)