The coverage of 2315 genes selected from the Network of Cancer Genes (NCG).
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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