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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Fix `modules.config` structure to make sure all ways of providing the `aligner` param work ([514](https://github.com/nf-core/scrnaseq/pull/514))
- Fix [515](https://github.com/nf-core/scrnaseq/issues/515), failure when running singleplex flex data by updating cellranger multi module ([517](https://github.com/nf-core/scrnaseq/pull/517))
- Fix [522](https://github.com/nf-core/scrnaseq/issues/522), protocol not being passed correctly when running cellranger multi ([524](https://github.com/nf-core/scrnaseq/pull/524))

## v4.1.0 - 2025-08-01

Expand Down
1 change: 1 addition & 0 deletions workflows/scrnaseq.nf
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ workflow SCRNASEQ {
if (meta.feature_type.toString() == 'gex') {
parsed_meta.options['create-bam'] = params.save_align_intermeds // force bam creation -- param required by cellranger multi
if (meta.expected_cells) { parsed_meta.options['expected-cells'] = meta.expected_cells }
parsed_meta.options['chemistry'] = protocol_config['protocol']
}

[ parsed_meta.id , parsed_meta ]
Expand Down
Loading