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.

26 lines
423B

  1. import "./tasks/fastp.wdl" as fastp
  2. workflow {{ project_name }} {
  3. File inputSamplesFile
  4. Array[Array[File]] inputSamples = read_tsv(inputSamplesFile)
  5. String fasta
  6. String idx_prefix
  7. File screen_ref_dir
  8. File fastq_screen_conf
  9. File idx
  10. File gtf
  11. File ref_dir
  12. scatter (quartet in inputSamples){
  13. call fastp.fastp as fastp {
  14. input:
  15. sample_id=quartet[2],
  16. read1=quartet[0],
  17. read2=quartet[1]
  18. }
  19. }
  20. }