We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4918a25 commit a595130Copy full SHA for a595130
subworkflows/local/utils_nfcore_seqinspector_pipeline/main.nf
@@ -74,6 +74,7 @@ workflow PIPELINE_INITIALISATION {
74
75
Channel
76
.fromList(samplesheetToList(params.input, "${projectDir}/assets/schema_input.json"))
77
+ .toList()
78
.flatMap { it.withIndex().collect { entry, idx -> entry + "${idx+1}" } }
79
.map {
80
meta, fastq_1, fastq_2, idx ->
@@ -94,8 +95,8 @@ workflow PIPELINE_INITIALISATION {
94
95
}
96
97
.groupTuple()
- .map { samplesheet ->
98
- validateInputSamplesheet(samplesheet)
+ .map {
99
+ validateInputSamplesheet(it) // Applies additional group validation checks that schema_input.json cannot do.
100
101
.transpose() // Replace the map below
102
// .map {
0 commit comments