Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,18 @@
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).

## v4.2.0
## v4.2.0dev

### Added

### Fixed

- Fix channel join mismatch between `fa` and `fai` [#806](https://github.com/nf-core/rnafusion/pull/806)

### Changed

- Template update to v4.0.2 [#804](https://github.com/nf-core/rnafusion/pull/804)

## v4.1.0 - [2026-02-09]

### Added
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/build_references/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ workflow BUILD_REFERENCES {
ch_versions = ch_versions.mix(SAMTOOLS_FAIDX.out.versions)
ch_fai = SAMTOOLS_FAIDX.out.fai
} else {
ch_fai = channel.fromPath(params.fai).map { that -> [[id:that.Name], that] }
ch_fai = channel.fromPath(params.fai).map { that -> [[id:that.Name.replaceFirst(/\.fai$/, '')], that] }
}

def ch_hgnc_date = channel.empty()
Expand Down
Loading