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.

29 lines
453B

  1. import "./tasks/BAMReadCount.wdl" as BAMReadCount
  2. workflow {{ project_name }} {
  3. File ref_dir
  4. String fa
  5. File fai
  6. File bed
  7. File bam
  8. File bai
  9. String sample_id
  10. String docker
  11. String cluster_config
  12. String disk_size
  13. call BAMReadCount.BAMReadCount as BAMReadCount {
  14. input:
  15. ref_dir=ref_dir,
  16. fa=fa,
  17. fai=fai,
  18. bed=bed,
  19. bam=bam,
  20. bai=bai,
  21. docker=docker,
  22. disk_size=disk_size,
  23. cluster_config=cluster_config,
  24. sample_id=sample_id
  25. }
  26. }