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.

workflow.wdl 467B

4 år sedan
4 år sedan
4 år sedan
4 år sedan
1234567891011121314151617181920212223242526272829
  1. import "./tasks/BAMReadCount.wdl" as BAMReadCount
  2. workflow {{ project_name }} {
  3. File ref_dir
  4. File 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. }