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.

22 lines
423B

  1. import "./tasks/BAMReadCount.wdl" as BAMReadCount
  2. workflow {{ project_name }} {
  3. File reference
  4. File bamfile
  5. String sample_id
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. Int number
  10. call BAMReadCount.BAMReadCount as BAMReadCount {
  11. input:
  12. reference = reference,
  13. bamfile = bamfile,
  14. docker = docker,
  15. disk_size = disk_size,
  16. cluster_config=cluster_config,
  17. sample_id=sample_id,
  18. number=number
  19. }
  20. }