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.

workflow.wdl 679B

il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
12345678910111213141516171819202122232425262728293031
  1. import "./tasks/BAMReadCount.wdl" as BAMReadCount
  2. workflow {{ project_name }} {
  3. File ref_dir
  4. String fa
  5. File bed
  6. File bam
  7. File bai
  8. String min_mapping_quality
  9. String min_base_quality
  10. String sample_id
  11. String docker
  12. String cluster_config
  13. String disk_size
  14. call BAMReadCount.BAMReadCount as BAMReadCount {
  15. input:
  16. ref_dir=ref_dir,
  17. fa=fa,
  18. bed=bed,
  19. bam=bam,
  20. bai=bai,
  21. min_mapping_quality=min_mapping_quality,
  22. min_base_quality=min_base_quality,
  23. docker=docker,
  24. disk_size=disk_size,
  25. cluster_config=cluster_config,
  26. sample_id=sample_id
  27. }
  28. }