Skip to content

Instantly share code, notes, and snippets.

@Yixf-Self
Forked from seandavi/fastqc.wdl
Created August 16, 2017 03:51
Show Gist options
  • Save Yixf-Self/72c74dad47a9ed0df8c610e745df14c8 to your computer and use it in GitHub Desktop.
Save Yixf-Self/72c74dad47a9ed0df8c610e745df14c8 to your computer and use it in GitHub Desktop.
task fastqc {
File fastq
command {
fastqc ${fastq}
}
output {
Array[File] results = glob("*html")
}
runtime
{
docker : "seandavi/fastqc"
memory: "2 GB"
defaultDisks: "local-disk 10 SSD"
}
}
workflow test {
call fastqc
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment