diff --git a/.github/workflows/release-announcements.yml b/.github/workflows/release-announcements.yml index d468aea..788d134 100644 --- a/.github/workflows/release-announcements.yml +++ b/.github/workflows/release-announcements.yml @@ -12,7 +12,7 @@ jobs: - name: get topics and convert to hashtags id: get_topics run: | - curl -s https://nf-co.re/pipelines.json | jq -r '.remote_workflows[] | select(.full_name == "${{ github.repository }}") | .topics[]' | awk '{print "#"$0}' | tr '\n' ' ' >> $GITHUB_OUTPUT + echo "topics=$(curl -s https://nf-co.re/pipelines.json | jq -r '.remote_workflows[] | select(.full_name == "${{ github.repository }}") | .topics[]' | awk '{print "#"$0}' | tr '\n' ' ')" >> $GITHUB_OUTPUT - uses: rzr/fediverse-action@master with: diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cb4f5e..4b80ccf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## 1.0.1 - 2024-03-22 +## 1.0.1 - 2024-04-26 Minor release after nf-core template 2.13.1 update ### `Added` - [#36] - Merged nf-core template 2.13.1 update +- [#36] - Multiqc version changed 1.19 -> 1.21 ### `Fixed` diff --git a/main.nf b/main.nf index 40f3aca..7c5dfb5 100644 --- a/main.nf +++ b/main.nf @@ -29,7 +29,6 @@ include { getGenomeAttribute } from './subworkflows/local/utils_nfcore_read ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ -// TODO nf-core: Remove this line if you don't need a FASTA file // This is an example of how to use getGenomeAttribute() to fetch parameters // from igenomes.config using `--genome` if (!params.fasta) {