Skip to content
Snippets Groups Projects
Commit a1c95ef7 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Fix type on arg

parent 1f7364e0
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment