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
cae64a35
Commit
cae64a35
authored
Jul 06, 2016
by
Moustakas
Browse files
Add text to options parser
parent
7e3e31cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/CheckAllelesVcfInBam.scala
View file @
cae64a35
...
...
@@ -47,19 +47,19 @@ object CheckAllelesVcfInBam extends ToolCommand {
class
OptParser
extends
AbstractOptParser
{
opt
[
File
](
'I'
,
"inputFile"
)
required
()
maxOccurs
1
valueName
"<file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
inputFile
=
x
)
}
}
text
"VCF file"
opt
[
File
](
'o'
,
"outputFile"
)
required
()
maxOccurs
1
valueName
"<file>"
action
{
(
x
,
c
)
=>
c
.
copy
(
outputFile
=
x
)
}
}
text
"output VCF file name"
opt
[
String
](
's'
,
"sample"
)
unbounded
()
minOccurs
1
action
{
(
x
,
c
)
=>
c
.
copy
(
samples
=
x
::
c
.
samples
)
}
}
text
"sample name"
opt
[
File
](
'b'
,
"bam"
)
unbounded
()
minOccurs
1
action
{
(
x
,
c
)
=>
c
.
copy
(
bamFiles
=
x
::
c
.
bamFiles
)
}
}
text
"bam file, from which the variants (VCF files) were called"
opt
[
Int
](
'm'
,
"min_mapping_quality"
)
maxOccurs
1
action
{
(
x
,
c
)
=>
c
.
copy
(
minMapQual
=
c
.
minMapQual
)
}
}
text
"minimum mapping quality score for a read to be taken into account"
}
private
class
CountReport
(
...
...
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