Mercurial > repos > crusoe > khmer
view gedlab.py @ 39:31c05c5f7032
specify reqs directly
| author | Michael R. Crusoe <mcrusoe@msu.edu> |
|---|---|
| date | Mon, 30 Jun 2014 12:16:39 -0400 |
| parents | be178f712bb1 |
| children | 3d65329a491d |
line wrap: on
line source
""" 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")
