diff --git a/CHANGELOG.md b/CHANGELOG.md index 15f5395c..0178a403 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### `Added` +- [#615](https://github.com/nf-core/mag/pull/615) Add new logo (by @jfy133) + ### `Changed` - [#599](https://github.com/nf-core/mag/pull/599) Update to nf-core v2.13.1 `TEMPLATE` (by @jfy133) +- [#614](https://github.com/nf-core/mag/pull/614) Update to nf-core v2.14.1 `TEMPLATE` (by @jfy133) ### `Fixed` diff --git a/README.md b/README.md index e13237ca..b2a723eb 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

- - nf-core/mag + + nf-core/mag

diff --git a/assets/multiqc_config.yml b/assets/multiqc_config.yml index 51ab4a65..9f4e5e7e 100644 --- a/assets/multiqc_config.yml +++ b/assets/multiqc_config.yml @@ -120,7 +120,7 @@ extra_fn_clean_exts: - "_fastp" ## Prettification -custom_logo: "nf-core-mag_logo_light.png" +custom_logo: "mag_logo_mascot_light.png" custom_logo_url: https://github.com/nf-core/mag/ custom_logo_title: "nf-core/mag" diff --git a/docs/images/mag_logo_mascot_dark.png b/docs/images/mag_logo_mascot_dark.png new file mode 100644 index 00000000..914d64c5 Binary files /dev/null and b/docs/images/mag_logo_mascot_dark.png differ diff --git a/docs/images/mag_logo_mascot_dark.svg b/docs/images/mag_logo_mascot_dark.svg new file mode 100644 index 00000000..5ccf27ba --- /dev/null +++ b/docs/images/mag_logo_mascot_dark.svg @@ -0,0 +1,331 @@ + +image/svg+xml + + +nf-core/mag diff --git a/docs/images/mag_logo_mascot_light.png b/docs/images/mag_logo_mascot_light.png new file mode 100644 index 00000000..dc23b217 Binary files /dev/null and b/docs/images/mag_logo_mascot_light.png differ diff --git a/docs/images/mag_logo_mascot_light.svg b/docs/images/mag_logo_mascot_light.svg new file mode 100644 index 00000000..727c8680 --- /dev/null +++ b/docs/images/mag_logo_mascot_light.svg @@ -0,0 +1,331 @@ + +image/svg+xml + + +nf-core/mag diff --git a/workflows/mag.nf b/workflows/mag.nf index ec39e34e..ad1db571 100644 --- a/workflows/mag.nf +++ b/workflows/mag.nf @@ -1017,7 +1017,7 @@ workflow MAG { Channel.empty() ch_multiqc_logo = params.multiqc_logo ? Channel.fromPath(params.multiqc_logo, checkIfExists: true) : - Channel.empty() + Channel.fromPath("${workflow.projectDir}/docs/images/mag_logo_mascot_light.png", checkIfExists: true) summary_params = paramsSummaryMap( workflow, parameters_schema: "nextflow_schema.json")