Hi! this tool has gotten a major facelift since I last used it.
I'm running the below code (as is with the vignette), but it seems plotting in DotPlot does not plot the enrichment values in the new assay created by runEscape(), any thoughts?
GS.hallmark <- getGeneSets(library = "H") #add the species = "Mus musculus" option here for mouse
enrichment.scores <- escape.matrix(deb.sct,
gene.sets = GS.hallmark,
groups = 5000,
min.size = 5)
deb.sct <- runEscape(deb.sct,
method = "ssGSEA",
gene.sets = GS.hallmark,
groups = 5000,
min.size = 0,
new.assay.name = "escape.ssGSEA")
Seurat::DotPlot(deb.sct, features = c("HALLMARK-GLYCOLYSIS"), assay = "escape.ssGSEA") #seems not working

Is this an expected result or should I specify some other parameter for DotPlot()?