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.

17 line
234B

  1. import "./tasks/align.wdl" as align
  2. workflow {{ project_name }} {
  3. File read1
  4. File read2
  5. String docker
  6. String cluster_config
  7. String disk_size
  8. call align.align as align {
  9. input: read1=read1, read2=read2
  10. }
  11. }