Skip to content

Instantly share code, notes, and snippets.

@metamaden
Last active February 22, 2024 16:51
Show Gist options
  • Save metamaden/62cdc2ca211f3835ba1d2182a29a6817 to your computer and use it in GitHub Desktop.
Save metamaden/62cdc2ca211f3835ba1d2182a29a6817 to your computer and use it in GitHub Desktop.
Load cellScaleFactors data table (tibble file)
#!/usr/bin/env R
# Author: Sean Maden
#
# Query and load the cellScaleFactors data table from Bioconductor's ExperimentHub.
#
# ExperimentHub/GH repo for cellScaleFactors: https://github.com/metamaden/cellScaleFactors
#
library(ExperimentHub)
eh <- ExperimentHub()
csfData <- query(eh, c("cellScaleFactors"))
path <- csfData[["EH8419"]]
csfData <- get(load(path))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment