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.

39 line
609B

  1. task starfusion{
  2. String sample_id
  3. File fastq1
  4. File fastq2
  5. File database_dir
  6. String docker
  7. String cluster
  8. String disk_size
  9. command <<<
  10. set -o pipefail
  11. set -e
  12. mkdir -p ${sample_id}/output
  13. STAR-Fusion --genome_lib_dir ${database_dir} \
  14. --left_fq ${fastq1} \
  15. --right_fq ${fastq2} \
  16. --CPU 4 \
  17. --output_dir ${sample_id}/output
  18. >>>
  19. runtime {
  20. docker : docker
  21. cluster: cluster
  22. systemDisk: "cloud_ssd 40"
  23. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  24. }
  25. output {
  26. Array[File] starfusion_result=glob("${sample_id}/output/*")
  27. }
  28. }