Skip to content

Commit

Permalink
Merge pull request #412 from nf-core/star-index-channel-structure
Browse files Browse the repository at this point in the history
Fix problematic star index channel structure if params.star_index is provided
  • Loading branch information
nictru authored Dec 29, 2024
2 parents 1fc15e9 + 1aaac5f commit 8d2615f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflows/scrnaseq.nf
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ workflow SCRNASEQ {

//star params
star_index = star_index ? file(star_index, checkIfExists: true) : null
ch_star_index = star_index ? Channel.of( [[id: star_index.baseName], star_index] ) : []
ch_star_index = star_index ? Channel.value( [[id: star_index.baseName], star_index] ) : []
star_feature = params.star_feature

//cellranger params
Expand Down

0 comments on commit 8d2615f

Please sign in to comment.