Warning message for reference SCT model counts correction#10329
Open
mccormickceci wants to merge 1 commit intomainfrom
Open
Warning message for reference SCT model counts correction#10329mccormickceci wants to merge 1 commit intomainfrom
mccormickceci wants to merge 1 commit intomainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds user-facing notification in SCTransform.Assay when a reference.SCT.model is supplied, clarifying that UMI count correction is disabled in that mode.
Changes:
- Emit a note when
reference.SCT.modelis provided anddo.correct.umiis forced toFALSE. - Preserve existing behavior of disabling centering/count correction under reference-model usage.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+4163
to
+4165
| message( | ||
| "NOTE:A reference SCT model was provided, therefore counts are NOT corrected (Regardless of argument passed to do.correct.umi)" | ||
| ) |
| do.correct.umi <- FALSE | ||
| do.center <- FALSE | ||
| message( | ||
| "NOTE:A reference SCT model was provided, therefore counts are NOT corrected (Regardless of argument passed to do.correct.umi)" |
…r counts will not be corrected
424e3b5 to
cf00d76
Compare
anashen
requested changes
Mar 18, 2026
Member
anashen
left a comment
There was a problem hiding this comment.
@mccormickceci Thanks for the PR! Can you use warning instead of message? You can also remove the "NOTE:" prefix in the warning text.
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
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.
Adding a warning message so that users know if they use a reference SCT model we will hard set do.correct.umi to FALSE. We do this since count correction across models is not statistically sound, but we will send a message so that users know their counts will not be corrected.