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

4 년 전
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. }