Skip to content

Commit 9a1a86a

Browse files
committed
Use samplesheet notation instead of input
1 parent d7d7b92 commit 9a1a86a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

main.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

workflows/chipseq.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ if (anno_readme && file(anno_readme).exists()) {
8989
workflow 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)

0 commit comments

Comments
 (0)