Skip to content
Snippets Groups Projects
Commit 8bed940c authored by Ruben Vorderman's avatar Ruben Vorderman
Browse files

update parameter meta

parent 0551737d
Branches BIOWDL-387
No related tags found
No related merge requests found
......@@ -174,6 +174,12 @@ task TextToFile {
File out = outputFile
}
parameter_meta {
text: {description: "The text to print", category: "required"}
outputFile: {description: "The name of the output file", category: "common"}
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"}
}
runtime {
memory: "1G"
docker: dockerImage
......
......@@ -342,8 +342,10 @@ task HaplotypeCallerGvcf {
parameter_meta {
inputBams: {description: "The BAM files on which to perform variant calling.", category: "required"}
inputBamsIndex: {description: "The indexes for the input BAM files.", category: "required"}
intervalList: {description: "Bed files or interval lists describing the regions to operate on.", category: "required"}
intervalList: {description: "Bed files or interval lists describing the regions to operate on.", category: "common"}
excludeIntervalList: {description: "Bed files or interval lists describing the regions to NOT operate on.", category: "common"}
gvcfPath: {description: "The location to write the output GVCF to.", category: "required"}
ploidy: {description: "The ploidy with which the variants should be called.", category: "common"}
referenceFasta: {description: "The reference fasta file which was also used for mapping.",
category: "required"}
referenceFastaDict: {description: "The sequence dictionary associated with the reference fasta file.",
......
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