bio-workflow-management-wdl-workflows
Installation
SKILL.md
WDL Workflows
Basic Task Definition
version 1.0
task fastqc {
input {
File fastq
Int threads = 2
}
command <<<
fastqc -t ~{threads} ~{fastq}
>>>
version 1.0
task fastqc {
input {
File fastq
Int threads = 2
}
command <<<
fastqc -t ~{threads} ~{fastq}
>>>