Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

31 linhas
692B

  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 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. }