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
a1c95ef7
Commit
a1c95ef7
authored
Nov 07, 2014
by
Peter van 't Hof
Browse files
Fix type on arg
parent
1f7364e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
biopet-framework/src/main/scala/nl/lumc/sasc/biopet/pipelines/gatk/GatkPipeline.scala
View file @
a1c95ef7
...
...
@@ -27,10 +27,10 @@ class GatkPipeline(val root: Configurable) extends QScript with MultiSampleQScri
var
mergeGvcfs
:
Boolean
=
false
@Argument
(
doc
=
"Joint variantcalling"
,
shortName
=
"jointVariantCalling"
,
required
=
false
)
var
jointVariantcalling
=
config
(
"joint_variantcalling"
,
default
=
false
)
var
jointVariantcalling
:
Boolean
=
config
(
"joint_variantcalling"
,
default
=
false
)
@Argument
(
doc
=
"Joint genotyping"
,
shortName
=
"jointGenotyping"
,
required
=
false
)
var
jointGenotyping
=
config
(
"joint_genotyping"
,
default
=
false
)
var
jointGenotyping
:
Boolean
=
config
(
"joint_genotyping"
,
default
=
false
)
var
singleSampleCalling
=
config
(
"single_sample_calling"
,
default
=
true
)
var
reference
:
File
=
config
(
"reference"
,
required
=
true
)
...
...
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