Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/DongzeHE/scrnaseq into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
an-altosian committed Feb 11, 2025
2 parents ef240e2 + d212f43 commit bf8ee23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

- Add a checker so that `--fb_reference` does not break the pipeline in case `ab` files are not used in `cellranger multi` sub-workflow.
- Fix concatenation of multiple samples into the combined output AnnData ([416](https://github.com/nf-core/scrnaseq/pull/416))
- Make sure STARsolo velocity output is added to the combined output AnnData, if `star_feature = 'Gene Velocyto'` ([417](https://github.com/nf-core/scrnaseq/pull/417))
- Update cellbender module to latest nf-core version ([#419](https://github.com/nf-core/scrnaseq/pull/419/))
- Add profile for gpu processes ([#419](https://github.com/nf-core/scrnaseq/pull/419/))
- Update example usage command in README with valid reference genome parameter ([#339](https://github.com/nf-core/scrnaseq/issues/339))
- Removed `--kb_filter` parameter. Kallisto filtering is triggered by default and can be turned off with `ext.args` ([#421](https://github.com/nf-core/scrnaseq/issues/421))
- Document better that `cellbender` is used for empty drops calling and not the `emptydrops` method (([#420](https://github.com/nf-core/scrnaseq/issues/420)))
- Add `--limitBAMsortRAM` to STARsolo alignment, to make sure BAM sorting memory scales with the task memory ([#430](https://github.com/nf-core/scrnaseq/pull/430))
- Replace local modules for simpleaf, SIMPLEAF_INDEX and SIMPLEAF_QUANT, with their central modules from nf-core/modules, and update simpleaf subworkflows accordingly.
- Update documents related to `simpleaf`, `alevin`, `salmon`, and `alevin-fry` for consistency.
- Rename the default aligner from `alevin` to `simpleaf` for consistency.
Expand Down
2 changes: 1 addition & 1 deletion conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ if ( params.aligner == "simpleaf" ) {
if (params.aligner == "star") {
process {
withName: STAR_ALIGN {
ext.args = "--readFilesCommand zcat --runDirPerm All_RWX --outWigType bedGraph --twopassMode Basic --outSAMtype BAM SortedByCoordinate"
ext.args = { "--readFilesCommand zcat --runDirPerm All_RWX --outWigType bedGraph --twopassMode Basic --outSAMtype BAM SortedByCoordinate --limitBAMsortRAM ${task.memory.toBytes()}" }
}
withName: STAR_GENOMEGENERATE {
publishDir = [
Expand Down

0 comments on commit bf8ee23

Please sign in to comment.