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.

26 lignes
610B

  1. import "./tasks/starfusion.wdl" as starfusion
  2. workflow {{ project_name }} {
  3. String sample_id
  4. File fastq1
  5. File fastq2
  6. File starfusion_database_dir
  7. String starfusion_docker
  8. String starfusion_cluster
  9. String disk_size
  10. call starfusion.starfusion as starfusion {
  11. input:
  12. sample_id=sample_id,
  13. fastq1=fastq1,
  14. fastq2=fastq2,
  15. database_dir=starfusion_database_dir,
  16. docker=starfusion_docker,
  17. cluster=starfusion_cluster,
  18. disk_size=disk_size
  19. }
  20. }