Skip to content
Snippets Groups Projects
Commit 9ec5ab9d authored by cedrick's avatar cedrick
Browse files

add missing parameter_meta

parent b885b5fc
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,6 @@ task Bcf2Vcf {
input {
File bcf
String outputPath
String dockerImage = "quay.io/biocontainers/bcftools:1.9--ha228f0b_3"
}
......@@ -21,4 +20,10 @@ task Bcf2Vcf {
runtime {
docker: dockerImage
}
parameter_meta {
bcf: {description: "The generated BCF from an SV caller", category: "advanced"}
outputPath: {description: "The location the output VCF file should be written.", 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"}
}
}
......@@ -381,7 +381,6 @@ task FilterShortReadsBam {
File bamFile
String outputPathBam
String outputPathBamIndex
String dockerImage = "quay.io/biocontainers/samtools:1.8--h46bd0b3_5"
}
......@@ -402,4 +401,11 @@ task FilterShortReadsBam {
runtime {
docker: dockerImage
}
parameter_meta {
bamFile: {description: "The bam file to process.", category: "required"}
outputPathBam: {description: "The filtered bam file.", category: "advanced"}
outputPathBamIndex: {description: "The index of filtered bam file.", 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"}
}
}
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