Skip to content
This repository has been archived by the owner on Jul 17, 2023. It is now read-only.

Commit

Permalink
docs: clarify that input is currently BAM-only
Browse files Browse the repository at this point in the history
  • Loading branch information
ctsa committed Jun 9, 2015
1 parent c96d3a5 commit dab5de1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/python/bin/configManta.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ def workflowDescription(self) :
return """Version: %s
This script configures the Manta SV analysis pipeline.
You must specify a BAM or CRAM file for at least one sample.
You must specify a BAM file for at least one sample.
""" % (workflowVersion)


def addWorkflowGroupOptions(self,group) :
group.add_option("--normalBam", type="string",dest="normalBamList",metavar="FILE", action="append",
help="Normal sample BAM or CRAM file. May be specified more than once, multiple inputs will be merged. [at least one required] (no default)")
help="Normal sample BAM file. May be specified more than once, multiple inputs will be merged. [at least one required] (no default)")
group.add_option("--tumorBam","--tumourBam", type="string",dest="tumorBamList",metavar="FILE", action="append",
help="Tumor sample BAM or CRAM file. May be specified more than once, multiple inputs will be merged. [optional] (no default)")
help="Tumor sample BAM file. May be specified more than once, multiple inputs will be merged. [optional] (no default)")
group.add_option("--exome", dest="isExome", action="store_true",
help="Set options for WES input: turn off depth filters")
group.add_option("--rna", dest="isRNA", action="store_true",
Expand Down

0 comments on commit dab5de1

Please # to comment.