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 satır
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. }