Skip to content
Snippets Groups Projects
Commit 8495de61 authored by Cats's avatar Cats
Browse files

add parameter_meta to biowdl input converter and YamltoJson

parent f37b2874
No related branches found
No related tags found
No related merge requests found
......@@ -52,4 +52,17 @@ task InputConverter {
runtime {
docker: dockerImage
}
parameter_meta {
samplesheet: {description: "The samplesheet to be processed.", category: "required"}
outputFile: {description: "The location the JSON representation of the samplesheet should be written to.",
category: "advanced"}
skipFileCheck: {description: "Whether or not the existance of the files mentioned in the samplesheet should be checked.",
category: "advanced"}
checkFileMd5sums: {description: "Whether or not the MD5 sums of the files mentioned in the samplesheet should be checked.",
category: "advanced"}
old: {description: "Whether or not the old samplesheet format should be used.", 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"}
}
}
......@@ -184,6 +184,13 @@ task YamlToJson {
runtime {
docker: dockerImage
}
parameter_meta {
yaml: {description: "The YAML file to convert.", category: "required"}
outputJson: {description: "The location the output JSON file should be written to.", 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"}
}
}
struct Reference {
......
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