Mercurial > repos > crusoe > khmer
comparison gedlab.py @ 60:fe697e0cb24a draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/khmer/ commit d8e0950d53e504e02ee5db43c0804142b14d7fd2-dirty
| author | crusoe |
|---|---|
| date | Tue, 07 Jul 2015 11:59:39 -0400 |
| parents | 08a599cf71d0 |
| children |
comparison
equal
deleted
inserted
replaced
| 59:08a599cf71d0 | 60:fe697e0cb24a |
|---|---|
| 1 """ | |
| 2 k-mer count and presence | |
| 3 """ | |
| 4 | |
| 5 from galaxy.datatypes.binary import Binary | |
| 6 | |
| 7 import os | |
| 8 import logging | |
| 9 | |
| 10 log = logging.getLogger(__name__) | |
| 11 | |
| 12 | |
| 13 class Count(Binary): | |
| 14 | |
| 15 def __init__(self, **kwd): | |
| 16 Binary.__init__(self, **kwd) | |
| 17 | |
| 18 | |
| 19 class Presence(Binary): | |
| 20 | |
| 21 def __init__(self, **kwd): | |
| 22 Binary.__init__(self, **kwd) | |
| 23 | |
| 24 Binary.register_unsniffable_binary_ext("ct") | |
| 25 Binary.register_unsniffable_binary_ext("pt") |
