Skip to content
Snippets Groups Projects
Commit 2e511982 authored by Sander Bollen's avatar Sander Bollen
Browse files

FastqSplitter optparser messages correction

parent b2226d71
No related branches found
No related tags found
No related merge requests found
......@@ -55,10 +55,10 @@ object FastqSplitter extends ToolCommand {
class OptParser extends AbstractOptParser {
opt[File]('I', "inputFile") required () valueName "<file>" action { (x, c) =>
c.copy(inputFile = x)
} text "out is a required file property"
} text "Path to input file"
opt[File]('o', "output") required () unbounded () valueName "<file>" action { (x, c) =>
c.copy(outputFile = x :: c.outputFile)
} text "out is a required file property"
} text "Path to output file"
}
/**
......
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