Skip to content

Commit

Permalink
Merge pull request #350 from nf-core/fix-star-index
Browse files Browse the repository at this point in the history
Fix star index issues
  • Loading branch information
grst authored Aug 12, 2024
2 parents 66221f6 + ed25fd5 commit 23fcbdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

- Add support for 10XV4 chemistry ([#348](https://github.com/nf-core/scrnaseq/pull/348))
- Fix issues with predefined STAR index ([#350](https://github.com/nf-core/scrnaseq/pull/350))
- Update modules ([#351](https://github.com/nf-core/scrnaseq/pull/351))

## v2.7.0 - 2024-06-03
Expand Down
3 changes: 2 additions & 1 deletion workflows/scrnaseq.nf
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ workflow SCRNASEQ {
ch_salmon_index = params.salmon_index ? file(params.salmon_index) : []

//star params
ch_star_index = params.star_index ? file(params.star_index) : []
star_index = params.star ? file(params.star_index, checkIfExists: true) : ( params.genome ? file( getGenomeAttribute('star'), checkIfExists: true ) : [] )
ch_star_index = [[id: star_index.baseName], star_index]
star_feature = params.star_feature

//cellranger params
Expand Down

0 comments on commit 23fcbdb

Please sign in to comment.