Human long-read sequencing data of retinal organoids, 2D retinal ganglion cell cultures, and flow-through from EP1 and H9 cell lines.
This data package accompanies the study available here. Our research explores:
- Gene and isoform diversity across developmental time points of Retinal Organoid (RO) differentiation
- Gene and isoform expression in Retinal Ganglion Cells (RGCs) compared to other cell types (flow-through)
- Haplotype-resolved gene expression differences between RO stages, RGCs, and flow-through samples
# Install from Bioconductor (if applicable)
if (!require("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("HumanRetinaLRSData")Access gene-level and isoform-level data across RO developmental stages:
library(HumanRetinaLRSData)
# Gene-level expression data
ro_genes <- ROGeneLevelData()
# Isoform-level expression data
ro_isoforms <- ROIsoformLevelData()Access gene-level and isoform-level data for RGCs and flow-through samples:
# Gene-level expression data
ftrgc_genes <- FTRGCGeneLevelData()
# Isoform-level expression data
ftrgc_isoforms <- FTRGCIsoformLevelData()Access haplotype-resolved gene counts:
# Haplotype-resolved gene counts matrix
ase_counts <- ASEGeneCounts()All data are provided as SummarizedExperiment objects (except ASE data, which is a counts matrix), making them compatible with standard Bioconductor workflows for analysis and visualization.
If you use this data package, please cite our associated study:
[Citation information to be added]
For questions or issues, please open an issue on the GitHub repository.