Skip to content
GitLab
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
caffc20b
Commit
caffc20b
authored
Dec 22, 2016
by
Peter van 't Hof
Browse files
Fixed text error
parent
7814030e
Changes
1
Hide whitespace changes
Inline
Side-by-side
biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/vcfstats/VcfStats.scala
View file @
caffc20b
...
...
@@ -82,10 +82,10 @@ object VcfStats extends ToolCommand {
}
text
"Path to interval (BED) file (optional)"
opt
[
String
](
"infoTag"
)
unbounded
()
valueName
"<tag>"
action
{
(
x
,
c
)
=>
c
.
copy
(
infoTags
=
x
::
c
.
infoTags
)
}
text
"Summarize these info tags. Default is
all tags
"
}
text
s
"Summarize these info tags. Default is
(${defaultInfoFields.mkString("
,
")})
"
opt
[
String
](
"genotypeTag"
)
unbounded
()
valueName
"<tag>"
action
{
(
x
,
c
)
=>
c
.
copy
(
genotypeTags
=
x
::
c
.
genotypeTags
)
}
text
"Summarize these genotype tags. Default is
all tags
"
}
text
s
"Summarize these genotype tags. Default is
(${defaultGenotypeFields.mkString("
,
")})
"
opt
[
Unit
](
"allInfoTags"
)
unbounded
()
action
{
(
x
,
c
)
=>
c
.
copy
(
allInfoTags
=
true
)
}
text
"Summarize all info tags. Default false"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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