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.

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