-
Notifications
You must be signed in to change notification settings - Fork 2
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
Motif matching when using mouse data #18
Comments
Thanks for reporting this point. Indeed, we only tested the function using human data, where the gene names are all capitalized. Using biomatRt is absolutely better and I will add it to our TODO. Thanks, |
Dear @AmandaKedaigle I'm trying to make scMega works and I encounter the same problem as you did: the matrix names are not recognized. I would like to do the same modification you did (modifying the rownames(trajMM) code but I'm truly lost about how to do it, I can't find the file containing the selectTFs function in my ScMega R libs. Can you help me ? Best regards David |
Hi David! If you're using RStudio you can write |
Hi Amanda |
I was using Seurat, but was still on v4 - didn't run into that one! |
the V5 is a bit annoying with lots of incompatibility ! |
Hi! I was running into an issue when selecting TFs in my mouse data, because the motif names did not match many genes in the gene exp data. I ended up altering the SelectTFs and GetTFGeneCorrelation code to
rownames(trajMM) <- stringr::str_to_title(object@assays[[atac.assay]]@[email protected])
(although maybe a biomaRt matching or something would be more accurate) and am getting better results, so I thought I'd note it!
The text was updated successfully, but these errors were encountered: