Mercurial > repos > crusoe > khmer
view gedlab.py @ 52:3d65329a491d
PEP8 & params for do-partition
author | Michael R. Crusoe <mcrusoe@msu.edu> |
---|---|
date | Tue, 05 Aug 2014 17:30:32 -0400 |
parents | be178f712bb1 |
children |
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")