-
Notifications
You must be signed in to change notification settings - Fork 8
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
readVizgen, multiple z-planes #60
Comments
Hi, could you please install this package using |
Thank you for your response. I will try the version you mentioned. However, I’d like to ask which function can be used to visualize molecules across all planes, similar to Seurat's function: |
Yes, that is in Voyager, take a look at these recent workflows: |
I can reproduce this error on an example dataset from Vizgen. I think I found the culprit. It has nothing to do with z-planes. It's from matching integer64 cell IDs. The subscript is out of bound when when we get a wrong match using integer64; base R can only handle integer32. I edited the code to match using a string ID and it eliminated that error. See if it works for you. |
Hi, I am using readVizgen to read merfish data. The input files are as follows:
The cell_boundaries.parquet file has multiple z-planes.
When I used the readVizgen function to read the MERFISH data, an error occurred.
sfe_mer <- readVizgen(dir_use, z = "all", image = "DAPI", add_molecules = TRUE,flip = "geometry", BPPARAM=BiocParallel::MulticoreParam(14, tasks = 80L,force.GC = FALSE, progressbar = TRUE))
sfe_mer <- readVizgen(dir_use, z = 3L, image = "DAPI", add_molecules = TRUE,flip = "geometry", BPPARAM=BiocParallel::MulticoreParam(14, tasks = 80L,force.GC = FALSE, progressbar = TRUE))
The error is:
Sanity checks on cell segmentation polygons:
How can I resolve this issue? Thanks in advances!
The text was updated successfully, but these errors were encountered: