The coverage of 2315 genes selected from the Network of Cancer Genes (NCG).
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

BAMReadCount.wdl 447B

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