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.

BAMReadCount.wdl 452B

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