Skip to content

Commit

Permalink
change help message
Browse files Browse the repository at this point in the history
  • Loading branch information
YuSugihara committed Feb 27, 2020
1 parent d6ee0c1 commit dab6614
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# MutMap User Guide
#### version 2.1.5
#### version 2.1.6

## Table of contents
- [What is MutMap?](#What-is-MutMap)
Expand Down Expand Up @@ -74,7 +74,7 @@ $ mutmap -h
usage: mutmap -r <FASTA> -c <BAM|FASTQ> -b <BAM|FASTQ>
-n <INT> -o <OUT_DIR> [-T] [-e <DATABASE>]
MutMap version 2.1.5
MutMap version 2.1.6
optional arguments:
-h, --help show this help message and exit
Expand Down Expand Up @@ -218,11 +218,12 @@ usage: mutplot -v <VCF> -o <OUT_DIR> -n <INT> [-w <INT>] [-s <INT>]
[-D <INT>] [-d <INT>] [-N <INT>] [-m <FLOAT>]
[-S <INT>] [-e <DATABASE>] [--igv] [--corr] [--indel]
MutPlot version 2.1.5
MutPlot version 2.1.6
optional arguments:
-h, --help show this help message and exit
-v , --vcf VCF which contains cultivar and mutant bulk.
-v , --vcf VCF file which contains cultivar and mutant bulk.
in this order. This VCF file must have AD field.
-o , --out Output directory. Specified name can exist.
-n , --N-bulk Number of individuals in mutant bulk.
-w , --window Window size (kb). [2000]
Expand Down
2 changes: 1 addition & 1 deletion mutmap/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.1.5"
__version__ = "2.1.6"
3 changes: 2 additions & 1 deletion mutmap/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@ def mutplot_options(self):
action='store',
required=True,
type=str,
help='VCF which contains cultivar and mutant bulk.',
help=('VCF file which contains cultivar and mutant bulk.\n'
'in this order. This VCF file must have AD field.'),
metavar='')

parser.add_argument('-o',
Expand Down

0 comments on commit dab6614

Please sign in to comment.