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.

27 linhas
437B

  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 ${fa} -l ${bed} ${bam} > ${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. }