Skip to content

Commit a7d86d8

Browse files
authored
Merge pull request #3427 from mirpedrol/bump-to-3.2.0
bump to v3.2.0
2 parents 5236c85 + 0d9a4f1 commit a7d86d8

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.gitpod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
image: nfcore/gitpod:dev
1+
image: nfcore/gitpod:latest
22
tasks:
33
- name: install current state of nf-core/tools and setup pre-commit
44
command: |

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
# nf-core/tools: Changelog
22

3-
## v3.2.0dev
3+
## [v3.2.0 - Pewter Pangolin](https://github.com/nf-core/tools/releases/tag/3.2.0) - [2025-01-27]
44

55
### Template
66

77
- Remove automated release tweets ([#3419](https://github.com/nf-core/tools/pull/3419))
88
- Update template components ([#3426](https://github.com/nf-core/tools/pull/3426))
99

10-
### Linting
11-
1210
### Modules
1311

1412
- Modules created in pipelines "local" dir now use the full template ([#3256](https://github.com/nf-core/tools/pull/3256))

nf_core/pipeline-template/docs/output.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The pipeline is built using [Nextflow](https://www.nextflow.io/) and processes d
1515
{% if fastqc -%}
1616

1717
- [FastQC](#fastqc) - Raw read QC{% endif %}
18-
{%- if multiqc -%}
18+
{%- if multiqc %}
1919
- [MultiQC](#multiqc) - Aggregate report describing results and QC from the whole pipeline
2020
{%- endif %}
2121
- [Pipeline information](#pipeline-information) - Report metrics generated during the workflow execution
@@ -34,7 +34,7 @@ The pipeline is built using [Nextflow](https://www.nextflow.io/) and processes d
3434
</details>
3535

3636
[FastQC](http://www.bioinformatics.babraham.ac.uk/projects/fastqc/) gives general quality metrics about your sequenced reads. It provides information about the quality score distribution across your reads, per base sequence content (%A/T/G/C), adapter contamination and overrepresented sequences. For further reading and documentation see the [FastQC help pages](http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/).
37-
{%- endif -%}
37+
{%- endif %}
3838

3939
{% if multiqc -%}
4040

@@ -53,7 +53,7 @@ The pipeline is built using [Nextflow](https://www.nextflow.io/) and processes d
5353
[MultiQC](http://multiqc.info) is a visualization tool that generates a single HTML report summarising all samples in your project. Most of the pipeline QC results are visualised in the report and further statistics are available in the report data directory.
5454

5555
Results generated by MultiQC collate pipeline QC from supported tools e.g. FastQC. The pipeline has special steps which also allow the software versions to be reported in the MultiQC output for future traceability. For more information about how to use MultiQC reports, see <http://multiqc.info>.
56-
{%- endif -%}
56+
{%- endif %}
5757

5858
### Pipeline information
5959

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import find_packages, setup
44

5-
version = "3.2.0dev"
5+
version = "3.2.0"
66

77
with open("README.md") as f:
88
readme = f.read()

0 commit comments

Comments
 (0)