view gedlab.py @ 48:bcd19db01a6b

fix filter-abund file name
author Michael R. Crusoe <mcrusoe@msu.edu>
date Sat, 12 Jul 2014 15:18:24 -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")