Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

5 лет назад
123456789101112131415161718192021222324252627
  1. task hisat2 {
  2. File idx
  3. File read_1P
  4. File read_2P
  5. String idx_prefix
  6. String base = sub(basename(read_1P),"\\.\\S+$", "")
  7. String docker
  8. String cluster
  9. command {
  10. nt=$(nproc)
  11. hisat2 -t -p $nt -x ${idx}/${idx_prefix} -1 ${read_1P} -2 ${read_2P} -S ${base}.sam --un-conc-gz ${base}_un.fq.gz
  12. }
  13. runtime {
  14. docker: docker
  15. cluster: cluster
  16. systemDisk: "cloud_ssd 40"
  17. dataDisk: "cloud_ssd 200 /cromwell_root/"
  18. }
  19. output {
  20. File sam = base + ".sam"
  21. File unmapread_1p = base + "_un.fq.1.gz"
  22. File unmapread_2p = base + "_un.fq.2.gz"
  23. }
  24. }