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.

24 lines
490B

  1. task Count {
  2. String sample_id
  3. File readcount
  4. File bed
  5. String docker
  6. String cluster_config
  7. String disk_size
  8. command <<<
  9. python /count.py -s ${sample_id} -i ${readcount} -c ${bed} -o ${sample_id}.coverage
  10. >>>
  11. runtime {
  12. docker: docker
  13. cluster: cluster_config
  14. systemDisk: "cloud_ssd 40"
  15. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  16. }
  17. output {
  18. File Count = "${sample_id}.coverage"
  19. }
  20. }