-
Notifications
You must be signed in to change notification settings - Fork 20
Description
Good day,
First of all, thank you for making this incredible resource! And also for making it accessible already. I have downloaded the loom file and have tried to load and convert it into AnnData using sc.read_loom
. However, I have not succeeded yet. Since the function will load the file into memory, I am running into memory issues (the last attempt was in an HPC with 512GB RAM).
I am not familiar with working with loom files. I have had a look at the documentation and trying to subset the loom file to extract the gene x cell matrix and the associated metadata to later work with it in Scanpy or Suerat, but I am not sure I am doing it correctly.
Thus far I am trying to get the matrix first (which at this moment is still running and do not know what the outcome is)
counts = ds[:, (ds.ca.ROIGroupCoarse == "Hypothalamus") |
(ds.ca.ROIGroupCoarse == "Amygdala")]
But I am not sure how I can subset later only the metadata associated with this subset (clusters, subclusters, cell IDs, etc). Could you please tell me what would be the best way to do it?
Thank you in advance!