Mercurial > repos > crusoe > khmer
comparison 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 |
comparison
equal
deleted
inserted
replaced
51:3357f097d3c9 | 52:3d65329a491d |
---|---|
7 import os | 7 import os |
8 import logging | 8 import logging |
9 | 9 |
10 log = logging.getLogger(__name__) | 10 log = logging.getLogger(__name__) |
11 | 11 |
12 class Count( Binary ): | |
13 | 12 |
14 def __init__( self, **kwd ): | 13 class Count(Binary): |
15 Binary.__init__( self, **kwd ) | 14 |
15 def __init__(self, **kwd): | |
16 Binary.__init__(self, **kwd) | |
16 | 17 |
17 | 18 |
18 class Presence( Binary ): | 19 class Presence(Binary): |
19 | 20 |
20 def __init__( self, **kwd ): | 21 def __init__(self, **kwd): |
21 Binary.__init__( self, **kwd ) | 22 Binary.__init__(self, **kwd) |
22 | 23 |
23 Binary.register_unsniffable_binary_ext("ct") | 24 Binary.register_unsniffable_binary_ext("ct") |
24 Binary.register_unsniffable_binary_ext("pt") | 25 Binary.register_unsniffable_binary_ext("pt") |