Skip to content

Commit

Permalink
adding single end info to config
Browse files Browse the repository at this point in the history
  • Loading branch information
simonleandergrimm committed Nov 29, 2024
1 parent dd942fa commit 50c2edc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/run.config
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ params {
sample_sheet = "${projectDir}/test-data/samplesheet.csv" // Path to library TSV
adapters = "${projectDir}/ref/adapters.fasta" // Path to adapter file for adapter trimming

// Whether the underlying data is paired-end or single-end
single_end = new File(params.sample_sheet).text.readLines()[0].contains('fastq_2') ? false : true

// Numerical
grouping = false // Whether to group samples by 'group' column in samplesheet
n_reads_trunc = 0 // Number of reads per sample to run through pipeline (0 = all reads)
Expand Down

0 comments on commit 50c2edc

Please sign in to comment.