Mercurial > repos > jjohnson > cummerbund
comparison cuffdata.py @ 12:e132e60f95b1
Fix cuffdata datatype init
| author | Jim Johnson <jj@umn.edu> |
|---|---|
| date | Sun, 21 Oct 2012 18:17:51 -0500 |
| parents | 45275147ac1e |
| children |
comparison
equal
deleted
inserted
replaced
| 11:56bdf6d4ac9c | 12:e132e60f95b1 |
|---|---|
| 39 file_ext = 'cuffdata' | 39 file_ext = 'cuffdata' |
| 40 is_binary = False | 40 is_binary = False |
| 41 composite_type = 'auto_primary_file' | 41 composite_type = 'auto_primary_file' |
| 42 allow_datatype_change = False | 42 allow_datatype_change = False |
| 43 def __init__( self, **kwd ): | 43 def __init__( self, **kwd ): |
| 44 Html.__init(self, **kwd ) | 44 Html.__init__( self, **kwd ) |
| 45 self.add_composite_file('run.info', description = 'run.info', mimetype = 'text/html', optional = True, is_binary = False ) | 45 self.add_composite_file('run.info', description = 'run.info', mimetype = 'text/html', optional = True, is_binary = False ) |
| 46 self.add_composite_file('read_groups.info', description = 'read_groups.info', mimetype = 'text/html', optional = True, is_binary = False ) | 46 self.add_composite_file('read_groups.info', description = 'read_groups.info', mimetype = 'text/html', optional = True, is_binary = False ) |
| 47 self.add_composite_file('cds.count_tracking', description = 'cds.count_tracking', mimetype = 'text/html', optional = True, is_binary = False ) | 47 self.add_composite_file('cds.count_tracking', description = 'cds.count_tracking', mimetype = 'text/html', optional = True, is_binary = False ) |
| 48 self.add_composite_file('cds.diff', description = 'cds.diff', mimetype = 'text/html', optional = True, is_binary = False ) | 48 self.add_composite_file('cds.diff', description = 'cds.diff', mimetype = 'text/html', optional = True, is_binary = False ) |
| 49 self.add_composite_file('cds.fpkm_tracking', description = 'cds.fpkm_tracking', mimetype = 'text/html', optional = True, is_binary = False ) | 49 self.add_composite_file('cds.fpkm_tracking', description = 'cds.fpkm_tracking', mimetype = 'text/html', optional = True, is_binary = False ) |
