The coverage of 2315 genes selected from the Network of Cancer Genes (NCG).
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

29 lines
648B

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