The coverage of 2315 genes selected from the Network of Cancer Genes (NCG).
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

29 linhas
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. }