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
cb3dfee1
Commit
cb3dfee1
authored
Sep 09, 2015
by
Peter van 't Hof
Browse files
More compact help text
parent
d0887e43
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/tools/VcfStats.scala
View file @
cb3dfee1
...
...
@@ -186,50 +186,14 @@ object VcfStats extends ToolCommand {
c
.
copy
(
generalWiggle
=
x
::
c
.
generalWiggle
,
writeBinStats
=
true
)
}
validate
{
x
=>
if
(
generalWiggleOptions
.
contains
(
x
))
success
else
failure
(
s
"""Nonexistent field $x"""
)
}
text
"""
|Create a wiggle track with bin size <binSize> for any of the following statistics:
|Total
|Biallelic
|ComplexIndel
|Filtered
|FullyDecoded
|Indel
|Mixed
|MNP
|MonomorphicInSamples
|NotFiltered
|PointEvent
|PolymorphicInSamples
|SimpleDeletion
|SimpleInsertion
|SNP
|StructuralIndel
|Symbolic
|SymbolicOrSV
|Variant
"""
.
stripMargin
}
text
s
"""Create a wiggle track with bin size <binSize> for any of the following statistics:
|${generalWiggleOptions.mkString(", ")}"""
.
stripMargin
opt
[
String
](
"genotypeWiggle"
)
unbounded
()
action
{
(
x
,
c
)
=>
c
.
copy
(
genotypeWiggle
=
x
::
c
.
genotypeWiggle
,
writeBinStats
=
true
)
}
validate
{
x
=>
if
(
genotypeWiggleOptions
.
contains
(
x
))
success
else
failure
(
s
"""Non-existent field $x"""
)
}
text
"""
|Create a wiggle track with bin size <binSize> for any of the following genotype fields:
|Total
|Het
|HetNonRef
|Hom
|HomRef
|HomVar
|Mixed
|NoCall
|NonInformative
|Available
|Called
|Filtered
|Variant
"""
.
stripMargin
}
text
s
"""Create a wiggle track with bin size <binSize> for any of the following genotype fields:
|${genotypeWiggleOptions.mkString(", ")}"""
.
stripMargin
}
/**
...
...
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