Automated integrated analysis software for genomics data of the cancer patients.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

43 Zeilen
929B

  1. task MSIsensor {
  2. String sample
  3. File ref_dir
  4. String fasta
  5. File tumor_bam
  6. File tumor_bam_index
  7. File? normal_bam
  8. File? normal_bam_index
  9. File baseline
  10. String docker
  11. String cluster_config
  12. String disk_size
  13. command <<<
  14. set -o pipefail
  15. set -e
  16. nt=$(nproc)
  17. # MSI
  18. mkdir -p /cromwell_root/tmp/${sample}
  19. msisensor-pro scan -d ${ref_dir}/${fasta} -o reference.list
  20. if [ ${normal_bam} ]; then
  21. msisensor-pro msi -d reference.list -n ${normal_bam} -t ${tumor_bam} -o /cromwell_root/tmp/${sample}
  22. else
  23. msisensor-pro pro -d ${baseline} -t ${tumor_bam} -o /cromwell_root/tmp/${sample}
  24. fi
  25. cp /cromwell_root/tmp/${sample} ${sample}.MSI.txt
  26. # TMB
  27. >>>
  28. runtime {
  29. docker: docker
  30. cluster: cluster_config
  31. systemDisk: "cloud_ssd 40"
  32. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  33. }
  34. output {
  35. File msi = "${sample}.MSI.txt"
  36. }
  37. }