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.

28 lines
473B

  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 ${ref_dir}/${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. }