We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When calling AggregateExpression on CITEseq protein data:
bulk.pro <- AggregateExpression(seu, group.by = c("patient"), return.seurat = TRUE, normalization.method = 'CLR', margin = 2, assays = "ADT")
I noticed an issue with the normalized data, in that it was CLR normalized with margin = 1 instead of 2:
bulk.pro1 <- AggregateExpression(seu, group.by = c("patient"), return.seurat = TRUE, normalization.method = 'CLR', margin = 1, assays = "ADT") bulk.pro2 <- AggregateExpression(seu, group.by = c("patient"), return.seurat = TRUE, normalization.method = 'CLR', margin = 2, assays = "ADT") all.equal(bulk.pro1[["ADT"]]['data'], bulk.pro2[["ADT"]]['data']) # return TRUE
Using Seurat_5.0.2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When calling AggregateExpression on CITEseq protein data:
I noticed an issue with the normalized data, in that it was CLR normalized with margin = 1 instead of 2:
Using Seurat_5.0.2
The text was updated successfully, but these errors were encountered: