Mercurial > repos > crusoe > khmer
diff gedlab.py @ 35:be178f712bb1
Uploaded datatype definitions.
author | devteam |
---|---|
date | Sun, 29 Jun 2014 18:13:23 -0400 |
parents | |
children | 3d65329a491d |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gedlab.py Sun Jun 29 18:13:23 2014 -0400 @@ -0,0 +1,24 @@ +""" +k-mer count and presence +""" + +from galaxy.datatypes.binary import Binary + +import os +import logging + +log = logging.getLogger(__name__) + +class Count( Binary ): + + def __init__( self, **kwd ): + Binary.__init__( self, **kwd ) + + +class Presence( Binary ): + + def __init__( self, **kwd ): + Binary.__init__( self, **kwd ) + +Binary.register_unsniffable_binary_ext("ct") +Binary.register_unsniffable_binary_ext("pt")