We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7398cd commit a8bf074Copy full SHA for a8bf074
Amplicon/Illumina/Workflow_Documentation/NF_AmpIllumina-B/workflow_code/modules/create_runsheet.nf
@@ -1,8 +1,8 @@
1
#!/usr/bin/env nextflow
2
nextflow.enable.dsl = 2
3
4
-params.GLDS_accession = "GLDS-487"
5
-params.target_region = "16S"
+//params.accession = "GLDS-487"
+//params.target_region = "16S"
6
7
process GET_RUNSHEET {
8
@@ -30,7 +30,8 @@ process GET_RUNSHEET {
30
31
workflow {
32
33
- GET_RUNSHEET()
+ values = Channel.of([params.accession, params.target_region])
34
+ GET_RUNSHEET(values)
35
file_ch = GET_RUNSHEET.out.input_file
36
.splitCsv(header:true)
37
0 commit comments