Skip to content
Snippets Groups Projects
Commit 7d76ed6c authored by JasperBoom's avatar JasperBoom
Browse files

Update TO-DO.

parent 7dff854e
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ Some tasks are importing other WDL files.
* seqtk.wdl: `Sample`
* spades.wdl: `Spades`
* unicycler.wdl: `Unicycler`
* wisestork.wdl: `Count`, `GcCorrect`, `Newref`, `Zscore`
## Imports other tasks:
* bamstats.wdl
......
......@@ -92,6 +92,10 @@ task Phase {
memory: {description: "The amount of memory this job will use.", category: "advanced"}
timeMinutes: {description: "The maximum amount of time the job will run in minutes.", 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"}
# outputs
phasedVCF: {description: "VCF file containing phased variants."}
phasedVCFIndex: {description: "Index of phased VCF file."}
}
}
......@@ -144,6 +148,11 @@ task Stats {
memory: {description: "The amount of memory this job will use.", category: "advanced"}
timeMinutes: {description: "The maximum amount of time the job will run in minutes.", 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"}
# outputs
phasedGTF: {description: "Phasing statistics for a single VCF file."}
phasedTSV: {description: "Statistics in a tab-separated value format."}
phasedBlockList: {description: "List of the total number of phase sets/blocks."}
}
}
......@@ -204,5 +213,9 @@ task Haplotag {
memory: {description: "The amount of memory this job will use.", category: "advanced"}
timeMinutes: {description: "The maximum amount of time the job will run in minutes.", 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"}
# outputs
bam: {description: "BAM file containing tagged reads for haplotype."}
bamIndex: {description: "Index of the tagged BAM 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