Skip to content

Commit

Permalink
Merge branch 'main' into master-html-creation-with-timestamps
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanjameskennedy authored Feb 17, 2025
2 parents b8d1ae1 + b291569 commit 4bc8367
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions workflows/gmsemu.nf
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,21 @@ workflow GMSEMU {
MERGE_BARCODES(params.merge_fastq_pass)
GENERATE_INPUT(MERGE_BARCODES.out.fastq_dir_merged)
ch_input = GENERATE_INPUT.out.sample_sheet_merged
} else if (params.merge_fastq_pass && params.barcodes_samplesheet) {
} else if ( params.merge_fastq_pass && params.barcodes_samplesheet) {
MERGE_BARCODES_SAMPLESHEET(params.barcodes_samplesheet, params.merge_fastq_pass)
GENERATE_INPUT(MERGE_BARCODES_SAMPLESHEET.out.fastq_dir_merged)
ch_input = GENERATE_INPUT.out.sample_sheet_merged
}

// Validate and stage input files
INPUT_CHECK(ch_input)
GENERATE_MASTER_HTML(GENERATE_INPUT.out.sample_sheet_merged)


//
// SUBWORKFLOW: Read in samplesheet, validate and stage input files
//
INPUT_CHECK (
ch_input
)
ch_versions = ch_versions.mix(INPUT_CHECK.out.versions)

//
Expand Down

0 comments on commit 4bc8367

Please sign in to comment.