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.

17 lines
395B

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