For troubleshooting help, see this page
Checkout the following for more spatial-omics data:
Use getSpatialDataset()
from GiottoData:
# Ensure Giotto Suite is installed
if(!"Giotto" %in% installed.packages()) {
pak::pkg_install("drieslab/Giotto")
}
library(Giotto)
# Ensure Giotto Data is installed
if(!"GiottoData" %in% installed.packages()) {
pak::pkg_install("drieslab/GiottoData")
}
library(GiottoData)
# choose your directory
my_working_dir = getwd()
# merFISH example:
# standard download data to working directory
getSpatialDataset(dataset = 'merfish_preoptic',
directory = my_working_dir)
# use wget to download data to working directory (much faster)
getSpatialDataset(dataset = 'merfish_preoptic',
directory = my_working_dir,
method = 'wget')
# avoid certification issues with wget
getSpatialDataset(dataset = 'merfish_preoptic',
directory = my_working_dir,
method = 'wget',
extra = '--no-check-certificate')