MAST for scRNA-seq
1
0
Entering edit mode
2.1 years ago
learner-MD ▴ 30

Hi all, is there an easier (read: dumbed-down) tutorial for someone wanting to use MAST to do scRNA-seq DEG analysis? I feel comfortable extracting the counts matrix from a Seurat object and converting the 'cell x gene' table into a 'sample x gene' table for pseudobulk approaches (e.g., DESeq2, edgeR, etc.).

However, I'm struggling with the Bioconductor tutorial for MAST as it doesn't start off with a subsetted cluster from a Seurat object (https://www.bioconductor.org/packages/release/bioc/vignettes/MAST/inst/doc/MAITAnalysis.html).

I'm still a beginner, but hoping to benchmark this strategy against the other ones I feel more comfortable with. I've searched through several journals (e.g., Nature) since they generally require authors to submit their code as well, but pretty much all the articles I've come across use MAST within Seurat itself (using FindMarkers) which is not what I want to do. Any advice/tips would be much appreciated!

seurat mast scrnaseq • 1.9k views
ADD COMMENT
0
Entering edit mode

I try to convert a Seurat object into a SingleCellExperiment object, followed by "SceToSingleCellAssay":

sce <- as.SingleCellExperiment(DietSeurat(seurat_obj))
sca <- MAST::SceToSingleCellAssay(sce, class = "SingleCellAssay")

But I get the following error:

Error in sanity_check_sca(obj) : Assay in position 2, with name logcounts is unlogged. Set `check_sanity = FALSE` to override and then proceed with caution.

I'm not sure what to do there. Any help would be appreciated. Thanks!

ADD REPLY
1
Entering edit mode
2.1 years ago
fracarb8 ★ 1.6k
DefaultAssay(seurat_obj) <- 'RNA'
Idents(seurat_obj)  <- "SampleID"   # set the Idents to the column you want to group by
counts <- AverageExpression(seurat_obj, slot = 'counts')

You can now use counts with FindMarkers and set test.use = "MAST", or extract the raw counts matrix with counts$RNA and run MAST like you would do with any counts matrix.

Note that your pseudobulk is the result of averaging, and not summing the counts.

--- Update

Looking at the code in github, it seems that PseudobulkExpression, which is called by AverageExpression, also supports aggregation (pb.method = "aggregate").

ADD COMMENT

Login before adding your answer.

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