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.

16 satır
277B

  1. import "./tasks/index.wdl" as index
  2. workflow {{ project_name }} {
  3. File bam
  4. String samtools_docker
  5. String cluster_config
  6. String disk_size
  7. call index.index as index {
  8. input:
  9. bam=bam,
  10. docker=samtools_docker,
  11. cluster_config=cluster_config,
  12. disk_size=disk_size
  13. }
  14. }