Hi,
Just wondering if there is a convenience function somewhere in the SCE/SFE/SPE/SE object that allows for pulling out feilds from metadata + expression + reduced dimension coordinates all in one command? ie. For when I want to plot a custom umap with gene expression split by sample group, but with more control than the plot_UMAP function typically allows.
Essentially the direct bioconductor equivalent of Seurat's FetchData() (I wasted ages doing that with custom functions before I realised that was inbuilt!)
I know how to build such a table myself, but since its a common pattern I'm wondering if there's a shortcut?
I imagine it would look like this?
get_table_of_data(sce,
from_metadata=c('timepoint','individual','cluster'),
from_reddim=list(UMAP='UMAP_1', 'UMAP_2'),
from_assay=list(counts=c('CD63','Hba1'))
)
I couldn't see anything in the reference docs, but I'm not sure I'm looking in the right place! Thanks.