Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 4 roky
1234567891011121314151617
  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. }
  12. }
  13. }