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.

23 lines
431B

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