The coverage of 2315 genes selected from the Network of Cancer Genes (NCG).
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

28 linhas
462B

  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. }