diff --git a/CHANGELOG.md b/CHANGELOG.md index f86e7a8b..8f632895 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### `Fixed` +- [#264](https://github.com/nf-core/seqinspector/pull/264) Fix `--multiqc_title` modifying the output directory structure, breaking the report index section ([#261](https://github.com/nf-core/seqinspector/issues/261)) + ### `Changed` - [#259](https://github.com/nf-core/seqinspector/pull/259) Back to dev diff --git a/assets/multiqc_config.yml b/assets/multiqc_config.yml index b219abfd..18d4277b 100644 --- a/assets/multiqc_config.yml +++ b/assets/multiqc_config.yml @@ -14,6 +14,12 @@ report_section_order: export_plots: true +# Set static output file names for the report, data and plots directories so these +# are not changed when "--multiqc_title" is specified, required for index section to work properly +output_fn_name: "multiqc_report.html" +data_dir_name: "multiqc_data" +plots_dir_name: "multiqc_plots" + disable_version_detection: true fn_clean_trim: diff --git a/nextflow_schema.json b/nextflow_schema.json index 08cea605..e6a77c8f 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -46,7 +46,7 @@ }, "multiqc_title": { "type": "string", - "description": "MultiQC report title. Printed as page header, used for filename if not otherwise specified.", + "description": "MultiQC report title. Printed as page header.", "fa_icon": "fas fa-file-signature" }, "tools": {