Skip to content

Commit

Permalink
update base.config
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanbader committed Apr 14, 2022
1 parent a6cde17 commit 963eab8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -356,13 +356,13 @@ if (params.single_end) {
design_replicates_exist;
design_multiple_samples }
} else {
ch_design_reads_csv
ch_design_reads_csv.subscribe{ it
.splitCsv(header:true, sep:',')
.map { row -> [ row.sample_id, [ file(row.fastq_1, checkIfExists: true), file(row.fastq_2, checkIfExists: true) ] ] }
.into { ch_raw_reads_fastqc;
ch_raw_reads_trimgalore;
design_replicates_exist;
design_multiple_samples }
design_multiple_samples }}
}

// Boolean value for replicates existing in design
Expand Down

0 comments on commit 963eab8

Please sign in to comment.