You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

workflow.wdl 467B

4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
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. }