Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mirrors
biopet.biopet
Commits
1261f884
Commit
1261f884
authored
Jul 06, 2016
by
Moustakas
Browse files
Added text in the options parser
parent
90e274fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/BaseCounter.scala
View file @
1261f884
...
...
@@ -38,13 +38,13 @@ object BaseCounter extends ToolCommand {
class
OptParser
extends
AbstractOptParser
{
opt
[
File
](
'r'
,
"refFlat"
)
required
()
valueName
"<file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
refFlat
=
x
)
}
}
text
"refFlat file. Mandatory"
opt
[
File
](
'o'
,
"outputDir"
)
required
()
valueName
"<directory>"
action
{
(
x
,
c
)
=>
c
.
copy
(
outputDir
=
x
)
}
}
text
"Output directory. Mandatory"
opt
[
File
](
'b'
,
"bam"
)
required
()
valueName
"<file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
bamFile
=
x
)
}
}
text
"Bam file. Mandatory"
opt
[
String
](
'p'
,
"prefix"
)
valueName
"<prefix>"
action
{
(
x
,
c
)
=>
c
.
copy
(
prefix
=
x
)
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment