From 094b2371e97b608fdae3c222c587d0f1ce987129 Mon Sep 17 00:00:00 2001 From: Celine Mercier Date: Fri, 15 Apr 2016 14:44:31 +0200 Subject: [PATCH] Deleted obsolete directory --- python/obitools3/command/__init__.py | 0 python/obitools3/command/count.py | 36 ---------------------------- 2 files changed, 36 deletions(-) delete mode 100644 python/obitools3/command/__init__.py delete mode 100644 python/obitools3/command/count.py diff --git a/python/obitools3/command/__init__.py b/python/obitools3/command/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/python/obitools3/command/count.py b/python/obitools3/command/count.py deleted file mode 100644 index 2141bf5..0000000 --- a/python/obitools3/command/count.py +++ /dev/null @@ -1,36 +0,0 @@ -''' -Created on 8 mars 2016 - -@author: coissac -''' - -__title__="Counts sequences in a sequence set" - - -default_config = { 'countmode' : None - } - -def addOptions(parser): - parser.add_argument(dest='obi:input', metavar='obi:input', - nargs='?', - default=None, - help='input data set' ) - - group=parser.add_option_group('Obicount specific options') - group.add_option('-s','--sequence', - action="store_true", dest="count:sequence", - default=False, - help="Prints only the number of sequence records." - ) - - group.add_option('-a','--all', - action="store_true", dest="count:all", - default=False, - help="Prints only the total count of sequence records (if a sequence has no `count` attribute, its default count is 1) (default: False)." - ) - - - -def run(config): - # The code of my command - pass