a question about filtering and integrating data in Seurat3
0
0
Entering edit mode
4.2 years ago
Bogdan ★ 1.4k

Dear all,

I am following the analysis tutorials on Seurat 3 (on data integration and differential expression),

https://satijalab.org/seurat/v3.1/integration.html

https://satijalab.org/seurat/v3.1/immune_alignment.html

and i would have a question about the FILTERING STEP :

at which step shall I add the FILTERING (and if it makes a difference) ?

The R code that i could use is :

ctrl <- CreateSeuratObject(ctrl.data, project = CTRL)

(shall I add the Filtering at this point in the R code ?)

stim <- CreateSeuratObject(stim.data, project = STIM)

(shall I add the Filtering at this point in the R code ?)

and the next few steps :

samples.combined <- merge(x=ctrl, y = stim, project = NAME)

samples.combined.list <- SplitObject(samples.combined, split.by = "orig.ident")

samples.combined.list <- lapply(X = samples.combined.list, FUN = function(x) {

(shall I add the Filtering at this point in the R code ?)

    x <- NormalizeData(x)
    x <- FindVariableFeatures(x, selection.method = "vst", nfeatures = 2000)
})
SEURAT3 scRNA-seq • 1.2k views
ADD COMMENT
0
Entering edit mode

There is no information what you want to filter.

ADD REPLY
0
Entering edit mode

yes, will get back with an extended piece of R code ..

ADD REPLY

Login before adding your answer.

Traffic: 1987 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