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.

31 lines
685B

  1. import "./tasks/arriba.wdl" as arriba
  2. workflow run_arriba {
  3. String sample_id
  4. File fastq1
  5. File fastq2
  6. File STAR_INDEX_DIR
  7. File ASSEMBLY_FA
  8. File ANNOTATION_GTF
  9. String arriba_docker
  10. String arriba_cluster
  11. String disk_size
  12. call arriba.arriba as arriba {
  13. input:
  14. sample_id=sample_id,
  15. fastq1=fastq1,
  16. fastq2=fastq2,
  17. STAR_INDEX_DIR=STAR_INDEX_DIR,
  18. ASSEMBLY_FA=ASSEMBLY_FA,
  19. ANNOTATION_GTF= ANNOTATION_GTF,
  20. docker=arriba_docker,
  21. cluster=arriba_cluster,
  22. disk_size=disk_size
  23. }
  24. }