Skip to content

Commit a8bf074

Browse files
committed
Fixed typo
1 parent e7398cd commit a8bf074

File tree

1 file changed

+4
-3
lines changed
  • Amplicon/Illumina/Workflow_Documentation/NF_AmpIllumina-B/workflow_code/modules

1 file changed

+4
-3
lines changed

Amplicon/Illumina/Workflow_Documentation/NF_AmpIllumina-B/workflow_code/modules/create_runsheet.nf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env nextflow
22
nextflow.enable.dsl = 2
33

4-
params.GLDS_accession = "GLDS-487"
5-
params.target_region = "16S"
4+
//params.accession = "GLDS-487"
5+
//params.target_region = "16S"
66

77
process GET_RUNSHEET {
88

@@ -30,7 +30,8 @@ process GET_RUNSHEET {
3030

3131
workflow {
3232

33-
GET_RUNSHEET()
33+
values = Channel.of([params.accession, params.target_region])
34+
GET_RUNSHEET(values)
3435
file_ch = GET_RUNSHEET.out.input_file
3536
.splitCsv(header:true)
3637

0 commit comments

Comments
 (0)