Skip to content
Snippets Groups Projects
Commit 039c58a9 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Added text to cmdArgs

parent 378dc2a3
No related branches found
No related tags found
No related merge requests found
......@@ -29,19 +29,19 @@ object BamStats extends ToolCommand {
class OptParser extends AbstractOptParser {
opt[File]('R', "reference") valueName "<file>" action { (x, c) =>
c.copy(referenceFasta = Some(x))
}
} text "Fasta file of reference"
opt[File]('o', "outputDir") required () valueName "<directory>" action { (x, c) =>
c.copy(outputDir = x)
}
} text "Output directory"
opt[File]('b', "bam") required () valueName "<file>" action { (x, c) =>
c.copy(bamFile = x)
}
} text "Input bam file"
opt[Int]("binSize") valueName "<int>" action { (x, c) =>
c.copy(binSize = x)
}
} text "Bin size of stats (beta)"
opt[Int]("threadBinSize") valueName "<int>" action { (x, c) =>
c.copy(threadBinSize = x)
}
} text "Size of region per thread"
}
/** This is the main entry to [[BamStats]], this will do the argument parsing. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment