您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

26 行
438B

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