You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
795B

  1. task arriba{
  2. String sample_id
  3. File fastq1
  4. File fastq2
  5. File star_index_dir
  6. File assembly_fa
  7. File annotation_gtf
  8. String disk_size
  9. String docker
  10. String cluster
  11. command <<<
  12. set -o pipefail
  13. set -e
  14. mkdir ./output/
  15. echo ${star_index_dir} >output/a.txt
  16. echo ${fastq1} >> output/a.txt
  17. echo ${fastq2} >> output/a.txt
  18. echo ${sample_id} >> output/a.txt
  19. echo ${assembly_fa} >> output/a.txt
  20. echo ${annotation_gtf} >> output/a.txt
  21. >>>
  22. runtime {
  23. docker: docker
  24. cluster: cluster
  25. systemDisk: "cloud_ssd 40"
  26. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  27. }
  28. output {
  29. Array[File] arriba_result=glob("./output/*.txt")
  30. }
  31. }