Extracting Spliced/unspliced ratio per cell #847
Unanswered
JoshuaCumming
asked this question in
Q&A
Replies: 1 comment
-
There is no dedicated function, but if you have unspliced and spliced counts, you can simply calculate it yourself. Should (at least in case of dense arrays) be something along the lines of adata.layers['unspliced'].sum(axis=1) / (adata.layers['unspliced'] + adata.layers['spliced']).sum(axis=1) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
Is it possible to extract a spliced/unspliced ratio per cell from the Anndata object?
Thanks for any help!
Beta Was this translation helpful? Give feedback.
All reactions