-
Notifications
You must be signed in to change notification settings - Fork 827
Enable BAM input for RSEM #1604
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
- Restore salmon-specific BanSingleEnd/Singleend parameters that were accidentally removed - Fix CI test differences by ensuring star_salmon gets same parameters as dev branch - Maintain RSEM-compatible parameters for star_rsem mode - This resolves unintended changes to star_salmon quantification results
FloWuenne
approved these changes
Sep 16, 2025
FloWuenne
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FriederikeHanssen
approved these changes
Sep 16, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Enable BAM input support for RSEM workflows
This PR extends the existing BAM input functionality to support RSEM-based quantification workflows, building on the foundation of BAM input infrastructure already in place and the module work allowing us to use RSEM with premade alignments.
Note: RSEM output md5sums changed due to a logic fix. Previously, tests used a pre-made RSEM index that excluded additional FASTA sequences (Gfp). Switching to alignment input exposed this mismatch (RSEM requires consistent reference sequences between index and alignments), so the RSEM index is now generated on-the-fly with all sequences included.
Major changes:
RSEM architecture overhaul:
--alignmentsmodestar_rsempipeline runs for efficient reprocessingQuantifier-aware STAR configuration:
star_salmonvsstar_rsem)star_rsemmode replicates RSEM's internal STAR parameters for optimal compatibilitystar_salmonparameters to preserve backward compatibilityWorkflow simplification:
This enables users to efficiently reprocess data from previous RSEM runs using
--aligner star_rsem --skip_alignment, while providing much better maintainability through explicit control over the alignment process rather than relying on RSEM's internal alignment behavior.PR checklist
nf-core pipelines lint).nextflow run . -profile test,docker --outdir <OUTDIR>).nextflow run . -profile debug,test,docker --outdir <OUTDIR>).docs/usage.mdis updated.docs/output.mdis updated.CHANGELOG.mdis updated.README.mdis updated (including new tool citations and authors/contributors).