Skip to content
Snippets Groups Projects
Commit 765cf25f authored by Cats's avatar Cats
Browse files

add parameter_meta to MarkDuplicates and MergeVCFs

parent 843f0bfd
No related branches found
No related tags found
No related merge requests found
......@@ -430,6 +430,20 @@ task MarkDuplicates {
docker: dockerImage
memory: memory
}
parameter_meta {
inputBams: {description: "The BAM files for which the duplicate reads should be marked.", category: "required"}
inputBamIndexes: {description: "Th eindexes for the input BAM files.", category: "required"}
outputBamPath: {description: "The location where the ouptut BAM file should be written.", category: "required"}
metricsPath: {description: "The location where the output metrics file should be written.", category: "required"}
read_name_regex: {description: "Equivalent to the `READ_NAME_REGEX` option of MarkDuplicates.", category: "advanced"}
memory: {description: "The amount of memory this job will use.", category: "advanced"}
javaXmx: {description: "The maximum memory available to the program. Should be lower than `memory` to accommodate JVM overhead.",
category: "advanced"}
dockerImage: {description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.",
category: "advanced"}
}
}
# Combine multiple VCFs or GVCFs from scattered HaplotypeCaller runs
......@@ -465,6 +479,18 @@ task MergeVCFs {
docker: dockerImage
memory: memory
}
parameter_meta {
inputVCFs: {description: "The VCF files to be merged.", category: "required"}
inputVCFsIndexes: {description: "The indexes of the VCF files.", category: "required"}
outputVcfPath: {description: "The location the output VCf file should be written to.", category: "required"}
memory: {description: "The amount of memory this job will use.", category: "advanced"}
javaXmx: {description: "The maximum memory available to the program. Should be lower than `memory` to accommodate JVM overhead.",
category: "advanced"}
dockerImage: {description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.",
category: "advanced"}
}
}
task SamToFastq {
......
Subproject commit 76d1e695812aecd55fdf0221dc08b25d3ac7dde1
Subproject commit fc603e5d408b89b99297fb5737586c059c5f9df6
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