Single cell searching
Mtx files
poss= getGEOSuppFiles('GSE248214', fetch_files = FALSE)
poss
Multiple h5ad files
library(GEOquery)
s = getGEOSuppFiles('GSE161228', fetch_files = FALSE)
s
Single h5ad file
SAMPLES
mtx file
s = getGEOSuppFiles('GSM7908437')
s
sample_prefix = sub('barcodes.tsv.gz','', grep('barcodes.tsv.gz', s$filepath, value = TRUE))
gsm_sce <- DropletUtils::read10xCounts(samples = sample_prefix, type = 'prefix')
gsm_sce
head(colData(gsm_sce))
Tar of mtx files from Series record
s = getGEOSuppFiles('GSE248214')
s
From here, untar and then wrap to get prefixes
Mix of types in a single GSE
getGEOSeriesFileListing('GSE288770')
10x h5 file
s = getGEOSuppFiles('GSM8775062')
sce = DropletUtils::read10xCounts(s$filepath)
sce
10x matrix mtx files
s = getGEOSuppFiles('GSM8775066')
sce2 = DropletUtils::read10xCounts(samples = '/Users/davsean/Documents/git/GEOquery/vignettes/GSM8775066/GSM8775066_vivo_day7_1_', type='prefix')
sce2