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 438B

il y a 4 ans
12345678910111213141516171819202122232425
  1. import "./tasks/fastqc.wdl" as fastqc
  2. import "./tasks/fastqscreen.wdl" as fastqscreen
  3. workflow {{ project_name }} {
  4. File screen_ref_dir
  5. File fastq_screen_conf
  6. File read1
  7. File read2
  8. call fastqc.fastqc as fastqc {
  9. input:
  10. read1=read1,
  11. read2=read2
  12. }
  13. call fastqscreen.fastq_screen as fastqscreen {
  14. input:
  15. read1=read1,
  16. read2=read2,
  17. screen_ref_dir=screen_ref_dir,
  18. fastq_screen_conf=fastq_screen_conf
  19. }
  20. }