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.

14 lines
174B

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