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.

29 satır
558B

  1. task novoalign {
  2. File NVref_dir
  3. String index
  4. File fastq_1
  5. File fastq_2
  6. String NVdocker
  7. String sample
  8. String cluster_config
  9. String disk_size
  10. command <<<
  11. set -o pipefail
  12. set -e
  13. nt=$(nproc)
  14. /opt/novoalign -d ${NVref_dir}/${index} -f ${fastq_1} ${fastq_2} -o SAM --hlimit 9 -t 0,2 -c $nt > ${sample}.novoalign.sam
  15. >>>
  16. runtime {
  17. docker:NVdocker
  18. cluster: cluster_config
  19. systemDisk: "cloud_ssd 40"
  20. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  21. }
  22. output {
  23. File aligned_sam = "${sample}.novoalign.sam"
  24. }
  25. }