Skip to content

Commit

Permalink
help display fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
blazejmarciniak committed Apr 19, 2017
1 parent b1cba85 commit 09d7119
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
15 changes: 3 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,14 @@ optional arguments:
-h, --help show this help message and exit
-v, --version display version number and exit
-c Sequence identity threshold
-g By cd hits default algorithm, a sequence is clustered
-g By cd hit's default algorithm, a sequence is clustered
to the first cluster that meet the threshold (fast
mode). If set to 1, the program will cluster it into
the most similar cluster that meet the
threshold(accurate but slow mode)
-s2 length difference cutoff for db1, default 1.0 by
default, seqs in db1 >= seqs in db2 in a same cluster
if set to 0.9, seqs in db1 may just >= 90{'const':
None, 'help': 'length difference cutoff for db1,
default 1.0 by default, seqs in db1 >= seqs in db2 in
a same cluster if set to 0.9, seqs in db1 may just >=
90% seqs in db2', 'option_strings': ['-s2'], 'dest':
's2', 'required': False, 'nargs': None, 'choices':
None, 'default': 1.0, 'prog': 'diffind-start.py',
'container': <argparse._ArgumentGroup object at
0x7f7b031c9ed0>, 'type': 'float', 'metavar': None}eqs
in db2
if set to 0.9, seqs in db1 may just >= 90% seqs in db2
--ref REF Reference file files will be compared with it
--files FILES [FILES ...]
List of files to be checked against --ref
Expand All @@ -51,4 +42,4 @@ optional arguments:
drops column if absolute value of difference between
max and min in gene less then filter value
--drop-single-zero drops column if single zero found
--no-clear does not attach numbers to genes nqmes
--no-clear does not attach numbers to genes names
2 changes: 1 addition & 1 deletion diffind-start.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
parser.add_argument('-v', '--version', help='display version number and exit', action='version', version='%(prog)s 0.0.4')
parser.add_argument('-c', help='Sequence identity threshold', type=float, required=False, default=0.9)
parser.add_argument('-g', help='By cd hit’s default algorithm, a sequence is clustered to the first cluster that meet the threshold (fast mode). If set to 1, the program will cluster it into the most similar cluster that meet the threshold(accurate but slow mode)', type=int, required=False, default=0)
parser.add_argument('-s2', help='length difference cutoff for db1, default 1.0 by default, seqs in db1 >= seqs in db2 in a same cluster if set to 0.9, seqs in db1 may just >= 90% seqs in db2', type=float, required=False, default=1.0)
parser.add_argument('-s2', help='length difference cutoff for db1, default 1.0 by default, seqs in db1 >= seqs in db2 in a same cluster if set to 0.9, seqs in db1 may just >= 90%% seqs in db2', type=float, required=False, default=1.0)
parser.add_argument('--ref', help='Reference file files will be compared with it', type=str, required=True)
parser.add_argument('--files', help='List of files to be checked against --ref', type=str, nargs='+', required=True)
parser.add_argument('--nucleotide', help='files that are going to be compared are in nucleotide format', action='store_true', required=False, default=False)
Expand Down

0 comments on commit 09d7119

Please sign in to comment.