-
Notifications
You must be signed in to change notification settings - Fork 91
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
updated / repo being maintained #256
Comments
Hi @kenneditodd, glad to hear this repo is useful to you! Unfortunately, I am no longer @czbiohub-sf and don't have permission to make any changes. Can you specify more what you're trying to do with the annotation? At this point, the publication is >5 years old, and doesn't use current state-of-the art tools. Could you use the Tabula Muris Senis dataset hosted on CELLxGENE? Tabula Muris Senis is a superset of Tabula Muris -- it includes all the 3 month old mice from Tabula Muris, plus 1-month, 18-month, 21-month, 24-month, and 30-month old mice. The data "should" also be available on AWS here: https://registry.opendata.aws/tabula-muris-senis/ Hope that helps! |
Hi, I have found a solution. The objects from the 2018 paper are in seurat v2 form and this is not compatible with v4 or v5 format. This code below worked for me: load seuratlibrary("Seurat") first load the old objectload("pathtodatafromfigshare_exampleforspleen/facs_Spleen_seurat_tiss.Robj") Step 1: Extract data from Seurat v2 objectraw_counts <- [email protected] Step 2: Create a new Seurat v4/v5 objecttiss_v4 <- CreateSeuratObject(counts = raw_counts, meta.data = metadata) Step 3: Add the normalized and scaled datatiss_v4 <- SetAssayData(tiss_v4, slot = "data", new.data = normalized_counts) Step 4: Transfer dimensionality reductions (if applicable)if (!is.null(tiss@dr$pca)) { if (!is.null(tiss@dr$tsne)) { |
Hello,
I would love to use this repo to help with my single cell annotation. It seems it is no longer being maintained. I have tried to run some things manually but all the data download links are broken. @olgabot is there any hope to see updates?
The text was updated successfully, but these errors were encountered: