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

5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
12345678910111213141516171819202122232425262728293031323334353637383940
  1. task mixcr {
  2. File read1
  3. File read2
  4. String sample
  5. String base = sub(basename(read1),"\\.\\S+$", "")
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. mixcr align -t 4 -p rna-seq -s hsa -OallowPartialAlignments=true ${read1} ${read2} ${base}.vdjca
  11. mixcr assemblePartial ${base}.vdjca ${base}_rescued_1.vdjca
  12. mixcr assemblePartial ${base}_rescued_1.vdjca ${base}_rescued_2.vdjca
  13. mixcr extend ${base}_rescued_2.vdjca ${base}_rescued_2_extended.vdjca
  14. mixcr assemble ${base}_rescued_2_extended.vdjca ${base}.clns
  15. mixcr exportClones ${base}.clns ${base}.txt
  16. mixcr exportClones -c TRB ${base}.clns ${base}.TRB.txt
  17. mixcr exportClones -c IGH ${base}.clns ${base}.IGH.txt
  18. >>>
  19. runtime {
  20. docker:docker
  21. cluster: cluster_config
  22. systemDisk: "cloud_ssd 40"
  23. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  24. }
  25. output {
  26. File align_out = base + ".vdjca"
  27. File assemble_rescued_1_out = base + "_rescued_1.vdjca"
  28. File assemble_rescued_2_out = base + "_rescued_2.vdjca"
  29. File assemble_rescued_extended_out = base + "_rescued_2_extended.vdjca"
  30. File clns_out = base + ".clns"
  31. File clones_out = base + ".txt"
  32. File trb_out = base + ".TRB.txt"
  33. File igh_out = base + ".IGH.txt"
  34. }
  35. }