The coverage of 2315 genes selected from the Network of Cancer Genes (NCG).
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

28 lines
462B

  1. task BAMReadCount {
  2. String sample_id
  3. File ref_dir
  4. String fa
  5. File fai
  6. File bed
  7. File bam
  8. File bai
  9. String docker
  10. String cluster_config
  11. String disk_size
  12. command <<<
  13. bam-readcount -w 0 -q1 -f ${fa} -l ${bed} ${bam} > ${sample_id}.readcount
  14. >>>
  15. runtime {
  16. docker: docker
  17. cluster: cluster_config
  18. systemDisk: "cloud_ssd 40"
  19. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  20. }
  21. output {
  22. File BAMReadCount = "${sample_id}.readcount"
  23. }
  24. }