Skip to content

Commit daa0571

Browse files
Merge branch 'dev' into bwamem_fix
2 parents a6e08a9 + e51b3c0 commit daa0571

33 files changed

Lines changed: 751 additions & 436 deletions

.gitpod.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.nf-core.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ lint:
33
- lib/nfcore_external_java_deps.jar
44
- conf/modules.config
55
- .github/workflows/ci.yml
6+
files_unchanged:
7+
- docs/images/nf-core-methylseq_logo_light.png
8+
- docs/images/nf-core-methylseq_logo_dark.png
69
modules_config: false
710
nf_core_version: 3.5.1
811
repository_type: pipeline

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,30 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6-
## [v4.2.0](https://github.com/nf-core/methylseq/releases/tag/4.2.0) - []
6+
## [v4.2.0](https://github.com/nf-core/methylseq/releases/tag/4.2.0) - [2025-12-05]
77

88
### Bug fixes & refactoring
99

10+
- 🐛 Fix error in `picard_bedtointervallist.config` [#566](https://github.com/nf-core/methylseq/pull/566)
11+
- 🔧 Update Bismark to v0.25.1 [#569](https://github.com/nf-core/methylseq/pull/569)
12+
- 🔧 Update MultiQC module
13+
1014
### Pipeline Updates
1115

16+
- ✨ Added TAPS (TET-assisted pyridine borane sequencing) analysis workflow [#574](https://github.com/nf-core/methylseq/pull/574)
17+
- Added rastair modules
18+
- Removed methyldackel modules from fastq_align_dedup_bwameth subworkflow
19+
- Added bam_methyldackel subworkflow which runs methyldackel modules
20+
- Added fasta_index_methylseq subworkflow which indexes genomes for bismark, bwa-meth or bwa mem
21+
- Added bam_taps_conversion to run rastair modules for TAPS data
22+
- Added fastq_align_dedup_bwamem subworkflow to run bwa mem (+ gpu parabricks), dedup and run stats
23+
- Updated bismark modules
24+
- 🔄 Updated template to nf-core/tools v3.5.1 [#577](https://github.com/nf-core/methylseq/pull/577)
25+
1226
### Testing Updates
1327

28+
- 🧪 Updated nf-test GPU configuration
29+
1430
## [v4.1.0](https://github.com/nf-core/methylseq/releases/tag/4.1.0) - [2025-08-10]
1531

1632
### Bug fixes & refactoring

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<h1>
22
<picture>
3-
<source media="(prefers-color-scheme: dark)" srcset="docs/images/nf-core-methylseq_logo_dark.png">
4-
<img alt="nf-core/methylseq" src="docs/images/nf-core-methylseq_logo_light.png">
3+
<source media="(prefers-color-scheme: dark)" srcset="docs/images/nf-core-methylseq-dark.png">
4+
<img alt="nf-core/methylseq" src="docs/images/nf-core-methylseq-light.png">
55
</picture>
66
</h1>
77

@@ -23,7 +23,7 @@
2323

2424
**nf-core/methylseq** is a bioinformatics analysis pipeline used for Methylation (Bisulfite) sequencing data. It pre-processes raw data from FastQ inputs, aligns the reads and performs extensive quality-control on the results.
2525

26-
![nf-core/methylseq metro map](docs/images/taps_metromap.png)
26+
![nf-core/methylseq metro map](docs/images/4.2.0_metromap.png)
2727

2828
The pipeline is built using [Nextflow](https://www.nextflow.io), a workflow tool to run tasks across multiple compute infrastructures in a very portable manner. It uses Docker / Singularity / Podman / Charliecloud / Apptainer containers making installation trivial and results highly reproducible.
2929

assets/dummy_file.txt

Whitespace-only changes.

assets/genome_target_regions.bed

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
chr 150 200
2-
chr 2500 3000
3-
chr 5000 5418
4-
chr 20000 25000
5-
chr 35000 36000
1+
chr 150 200
2+
chr 2500 3000
3+
chr 5000 5418
4+
chr 20000 25000
5+
chr 35000 36000

conf/modules/rastair_call.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
process {
22
withName: RASTAIR_CALL {
33
ext.args = [
4-
// Pending the resolution of the mbias_parse process
4+
// Pending the resolution of the mbiasparse process
55
params.trim_OT ?: '0,0,10,0', // [r1_start, r1_end, r2_start, r2_end]
66
params.trim_OB ?: '0,0,10,0' // [r1_start, r1_end, r2_start, r2_end]
77
].join(" ").trim()
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
includeConfig "../modules/rastair_call.config"
22
includeConfig "../modules/rastair_mbias.config"
3-
includeConfig "../modules/rastair_mbias_parser.config"
3+
includeConfig "../modules/rastair_mbiasparser.config"
44
includeConfig "../modules/rastair_methylkit.config"
-196 KB
Binary file not shown.

0 commit comments

Comments
 (0)