Skip to content

Commit

Permalink
fix multiple samplesheet error message
Browse files Browse the repository at this point in the history
  • Loading branch information
nebfield committed Jun 20, 2024
1 parent c2daeab commit 717a565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/SamplesheetParser.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ class SamplesheetParser {
def samplesets = rows.collect { row -> row.sampleset }
def n_samplesets = samplesets.toSet().size()
if (n_samplesets > 1) {
Nextflow.error("${n_samplesets} missing chromosomes detected! Maximum is 1. Check your samplesheet.")
Nextflow.error("${n_samplesets} samplesets detected! Maximum is 1. Check your samplesheet.")
}
}

Expand Down

0 comments on commit 717a565

Please sign in to comment.