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

  1. import "./tasks/qualimapBAMqc.wdl" as qualimapBAMqc
  2. import "./tasks/multiqc.wdl" as multiqc
  3. workflow {{ project_name }} {
  4. File bam
  5. File bai
  6. call qualimapBAMqc.qualimapBAMqc as qualimapBAMqc {
  7. input:
  8. bam=bam,
  9. bai=bai
  10. }
  11. }