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

15 行
352B

  1. import "./tasks/fastp.wdl" as fastp
  2. workflow {{ project_name }} {
  3. File inputSamplesFile
  4. Array[Array[File]] inputSamples = read_tsv(inputSamplesFile)
  5. scatter (quartet in inputSamples){
  6. call fastp.fastp as fastp {
  7. input:
  8. sample_id=quartet[2],
  9. read1=quartet[0],
  10. read2=quartet[1],
  11. docker = fastp_docker,
  12. cluster = fastp_cluster
  13. }
  14. }
  15. }