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.

18 lines
324B

  1. import "./tasks/pindel.wdl" as pindel
  2. workflow run_pindel {
  3. String sample_id
  4. File bam
  5. File reference
  6. File reference_fai
  7. String pindel_docker
  8. call pindel.pindel as pindel {
  9. input:
  10. sample_id=sample_id,
  11. bam=bam,
  12. reference=reference,
  13. reference_fai=reference_fai,
  14. docker=pindel_docker
  15. }
  16. }