Skip to content

Commit ebdae81

Browse files
authored
Merge pull request #64 from cidgoh/dev
fixing typo for multiqc definition in configuration
2 parents 115eba4 + 6be28fe commit ebdae81

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

nextflow.config

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ params {
4141
// MultiQC options
4242
max_multiqc_email_size = '25.MB'
4343
multiqc_title = "BACPAQ"
44-
multiqc_config = "null"
45-
multiqc_logo = "null"
46-
multiqc_methods_description= "null"
44+
multiqc_config = null
45+
multiqc_logo = null
46+
multiqc_methods_description = null
4747

4848

4949

@@ -88,6 +88,7 @@ params {
8888
skip_bracken = false
8989
skip_kraken2 = false
9090
skip_combinebrackenoutputs = false
91+
skip_quality_report = false
9192

9293
// kraken2 options
9394
// Path to Kraken2 database used for querying reads during taxonomic classification

nextflow_schema.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"input": {
1616
"type": "string",
1717
"format": "file-path",
18-
"mimetype": "text/csv",
18+
"mimetype": "csv",
1919
"pattern": "^\\S+\\.csv$",
2020
"schema": "assets/schema_input.json",
2121
"description": "Path to comma-separated file containing information about the samples in the experiment.",
@@ -27,8 +27,7 @@
2727
"type": "string",
2828
"format": "directory-path",
2929
"description": "The output directory where the results will be saved. You have to use absolute paths to storage on Cloud infrastructure.",
30-
"fa_icon": "fas fa-folder-open",
31-
"default": "results"
30+
"fa_icon": "fas fa-folder-open"
3231
},
3332
"email": {
3433
"type": "string",

0 commit comments

Comments
 (0)