File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -71,10 +71,10 @@ workflow NFCORE_CHIPSEQ {
7171 //
7272 // WORKFLOW: Run nf-core/chipseq workflow
7373 //
74- ch_input = Channel . value(file(params. input, checkIfExists : true ))
74+ ch_samplesheet = Channel . value(file(params. input, checkIfExists : true ))
7575
7676 CHIPSEQ (
77- ch_input ,
77+ ch_samplesheet ,
7878 ch_versions,
7979 PREPARE_GENOME . out. fasta,
8080 PREPARE_GENOME . out. fai,
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ if (anno_readme && file(anno_readme).exists()) {
8989workflow CHIPSEQ {
9090
9191 take :
92- ch_input // channel: path(sample_sheet.csv)
92+ ch_samplesheet // channel: path(sample_sheet.csv)
9393 ch_versions // channel: [ path(versions.yml) ]
9494 ch_fasta // channel: path(genome.fa)
9595 ch_fai // channel: path(genome.fai)
@@ -108,7 +108,7 @@ workflow CHIPSEQ {
108108 // SUBWORKFLOW: Read in samplesheet, validate and stage input files
109109 //
110110 INPUT_CHECK (
111- ch_input ,
111+ ch_samplesheet ,
112112 params. seq_center
113113 )
114114 ch_versions = ch_versions. mix(INPUT_CHECK . out. versions)
You can’t perform that action at this time.
0 commit comments