Skip to content

Commit

Permalink
Fix braces
Browse files Browse the repository at this point in the history
  • Loading branch information
nictru committed Oct 17, 2024
1 parent 30042f0 commit b292215
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subworkflows/local/utils_nfcore_tfactivity_pipeline/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ workflow PIPELINE_INITIALISATION {
}
.set { ch_samplesheet }

ch_samplesheet_bam = params.input_bam ? Channel.fromList(samplesheetToList(params.input_bam), "${projectDir}/assets/schema_input_bam.json") : Channel.empty()
ch_counts_design = Channel.fromList(samplesheetToList(params.counts_design), "${projectDir}/assets/schema_counts_design.json")
ch_samplesheet_bam = params.input_bam ? Channel.fromList(samplesheetToList(params.input_bam, "${projectDir}/assets/schema_input_bam.json")) : Channel.empty()
ch_counts_design = Channel.fromList(samplesheetToList(params.counts_design, "${projectDir}/assets/schema_counts_design.json"))

emit:
samplesheet = ch_samplesheet
Expand Down

0 comments on commit b292215

Please sign in to comment.