Find predicted ID for entire cluster instead of each query cell #4596
Unanswered
danielcgingerich
asked this question in
Q&A
Replies: 1 comment 1 reply
-
This should be equivalent to averaging the prediction score for each cell type within a cluster |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have two datasets, 1 scATAC and 1 scRNA. Both come from the same tissue and same donor. I would like to know what clusters in ATAC to compare to what clusters in RNA.
I understand how the prediction scores for each cell are found by multiplying L*t(W)
where L is the binary label matrix, W is the anchor weight matrix. What this basically does is for each query cell, all of its anchors are partitioned by ident and their weights in each ident are summed. Highest sum is the predicted id.
If I wanted to do this for a cluster instead of individual query cells, could I simply take all anchors in the cluster, and sum the weights for each ident to find overall predicted cluster ID?
Beta Was this translation helpful? Give feedback.
All reactions