|
- task ballgown {
- Array[File] ballgown
- File gene_abundance
- String base = basename(gene_abundance, ".gene.abundance.txt")
- String docker
- String cluster
-
- command <<<
- mkdir /cromwell_root/tmp/
- cp -r ${ballgown} /cromwell_root/tmp/
- Rscript /usr/bin/ballgown.R /cromwell_root/tmp/ballgown/ ${base}.txt
- >>>
-
- runtime {
- docker: docker
- cluster: cluster
- systemDisk: "cloud_ssd 40"
- dataDisk: "cloud_ssd 150 /cromwell_root/"
- }
-
- output {
- File mat_expression = "${base}.txt"
- }
- }
|