The coverage of 2315 genes selected from the Network of Cancer Genes (NCG).
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

27 lines
432B

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