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

5 лет назад
5 лет назад
5 лет назад
5 лет назад
123456789101112131415161718192021222324252627282930313233
  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 -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 sam = base + ".vdjca"
  27. }
  28. }