Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

workflow.wdl 693B

il y a 3 ans
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. }