How to convert h5ad object to rds object without raw counts?
How to convert h5ad object to rds object without raw counts?
h5ad
• 1,364 views
•
link
updated
by
yura.grabovska •
•
written
by
hejenny792 •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
SeuratDisk: including "counts" dataset in conversion to AnnData
written by roussine •Hello all - as I can see, the `Convert` function of SeuratDisk (from `h5Seurat` to `h5ad`) will never touch the `counts` dataset (not-normalised matrix) of …
-
convert h5ad to rds
written by lucas.aleixoleal17 •Does anyone knows how to convert an h5ad file into an .rds file using a python script?
-
How to get raw mRNA count from Seurat converted anndata
written by gradstudent •I converted Seurat data into Ann data using- ```r SaveH5Seurat(object, filename = "object.h5Seurat") Convert("object.h5Seurat", dest = "h5ad") ``` Now I want to access the raw …
-
keep getting error while trying to convert Seurat object into a H5ad file
written by SaraI am trying to convert `rds` file (or `Seurat object`) to `h5ad` files using the following command in `R`: ```r library(scater) library(Seurat) library(cowplot) pbmc_ad <- …
-
In Scanpy, how to RDS file and merge it with other Scanpy objects.
written by Andy •I have an RDS file that includes several Seurat objects that I want to use. I want to read it into scanpy and merge it …
-
Converting rds file to h5ad and saving raw counts as X
written by sidrah.maryam •Hello Everyone! I have a rds file and want to convert it to h5ad such that the adata.X contains the raw counts of the rds …
-
Creating Seurat Object from DropViz metacells and annotations?
written by zor0 •Hi all, I am new to all this, and I was trying to create a Seurat Object from: http://dropviz.org/ I downloaded R Data: metacells.BrainCellAtlas_Saunders_version_2018.04.01.rds (15M) …
-
How to include spatial coordinate data into anndata within scanpy
written by Omics data miningHello I am working on 10X visium spatial transcriptome data which was processed in seurat pacakge with image data. For my downstream analysis, I am …
-
scRNAseq analysis - h5ad file conversion to Seurat format
written by isd1989 •Hi all. I have a single .h5ad file that contains scRNAseq data from several samples. I would like to convert it so that I can …
-
Best compression for single cell RNA-seq object
written by MutationalMeltdownI generated a scRNA-seq object (counts, PCA, UMAP embeddings, DEGs etc.) in Scanpy or Seurat. What is the best data structure to store this in …
Can you please give more information on what you'd like to do?
I downloaded both log2 and "raw" objects from Allen Institute (https://allen-brain-cell-atlas.s3.us-west-2.amazonaws.com/index.html#expression_matrices/WMB-10Xv3/20230630/) and tried to convert the h5ad object to rds to do reference mapping because I couldn't find a good package in Python (if you could recommend a good one in Python, I would appreciate that). The problem is that I can't find row counts from both h5ad files. I wondered if there was a way to convert it without raw counts. Any suggestions are appreciated. Thanks!
Hi, unless I am missing something, an RDS object in R is just a data storage format - it's an object from the R environment which is compressed and stored and can then be retrieved later.
Since you're working with 10x data I assume you want to convert h5ad to a format that can be read into Seurat?
In that case you can look at the example here