Skip to content

Commit

Permalink
Merge pull request #554 from broadinstitute/sy-align-nosensitive
Browse files Browse the repository at this point in the history
Use default instead of sensitive bwa metagenomics options
  • Loading branch information
tomkinsc committed Jan 18, 2017
2 parents a9f580f + 8e2f230 commit 7c19ebb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions metagenomics.py
Expand Up @@ -735,10 +735,10 @@ def parser_align_rna_metagenomics(parser=argparse.ArgumentParser()):
parser.add_argument('outReport', help='Output taxonomy report.')
parser.add_argument('--dupeReport', help='Generate report including duplicates.')
parser.add_argument(
'--noSensitive',
'--sensitive',
dest='sensitive',
action="store_false",
help='Use default BWA mem options instead of sensitive options.'
action="store_true",
help='Use sensitive instead of default BWA mem options.'
)
parser.add_argument('--outBam', help='Output aligned, indexed BAM file. Default is to write to temp.')
parser.add_argument('--outLca', help='Output LCA assignments for each read.')
Expand Down

0 comments on commit 7c19ebb

Please sign in to comment.