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.

workflow.wdl 693B

3 jaren geleden
12345678910111213141516171819202122232425262728293031
  1. import "./tasks/arriba.wdl" as arriba
  2. workflow {{ project_name }} {
  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 disk_size
  10. String arriba_docker
  11. String arriba_cluster
  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. disk_size=disk_size,
  21. docker=arriba_docker,
  22. cluster=arriba_cluster
  23. }
  24. }