The coverage of 2315 genes selected from the Network of Cancer Genes (NCG).
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.

BAMReadCount.wdl 462B

vor 4 Jahren
vor 4 Jahren
vor 4 Jahren
12345678910111213141516171819202122232425262728
  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. }