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 423B

4 anni fa
12345678910111213141516171819202122
  1. import "./tasks/BAMReadCount.wdl" as BAMReadCount
  2. workflow {{ project_name }} {
  3. File reference
  4. File bamfile
  5. String sample_id
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. Int number
  10. call BAMReadCount.BAMReadCount as BAMReadCount {
  11. input:
  12. reference = reference,
  13. bamfile = bamfile,
  14. docker = docker,
  15. disk_size = disk_size,
  16. cluster_config=cluster_config,
  17. sample_id=sample_id,
  18. number=number
  19. }
  20. }