scRNA seq analysis
0
0
Entering edit mode
16 months ago

Hi,

I’m trying to perform scRNA seq analysis using data downloaded from this link.

https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM4952363

There are 3 filtered data files: matrix, barcodes and features.

The first step in the workflow I’m following is data loading which I have attached and the code is below.

library(TENxPBMCData)
all.sce <- list(
    pbmc3k=TENxPBMCData('pbmc3k'),
    pbmc4k=TENxPBMCData('pbmc4k'),
    pbmc8k=TENxPBMCData('pbmc8k')
)

However, I don’t understand the first package they have loaded. Since my data does not contain counts from PBMC cells.

Does anyone know how I might read in the data while still following this pipeline?

http://bioconductor.org/books/3.14/OSCA.multisample/human-pbmcs-10x-genomics.html#ref-zheng2017massively

scRNAseq • 692 views
ADD COMMENT
0
Entering edit mode

Start the OSCA tutorials from the beginning, learn to read data and do the basic processing. It's all in there. Don't start with the multi-sample advanced section.

ADD REPLY
0
Entering edit mode

Ok thankyou for this information. Do you know what the lines in this code below mean:

library(DropletTestFiles)
raw.path <- getTestFile("tenx-2.1.0-pbmc4k/1.0.0/raw.tar.gz")
out.path <- file.path(tempdir(), "pbmc4k")
untar(raw.path, exdir=out.path)

library(DropletUtils)
fname <- file.path(out.path, "raw_gene_bc_matrices/GRCh38")
sce.pbmc <- read10xCounts(fname, col.names=TRUE)
ADD REPLY

Login before adding your answer.

Traffic: 2174 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6