Skip to content

Commit

Permalink
nf runDGEA
Browse files Browse the repository at this point in the history
  • Loading branch information
vertesy committed Jun 11, 2024
1 parent 4bbdaa7 commit 2580918
Showing 1 changed file with 3 additions and 14 deletions.
17 changes: 3 additions & 14 deletions R/Seurat.Utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -247,11 +247,12 @@ runDGEA <- function(obj,
message("cl.annotation: ", if(reorder.clusters) paste("ordered:", reorder.dimension) else "no")
message("test: ", param.list$"test")
message("only.pos: ", param.list$"only.pos")
message("---------------------------------")
message("return.thresh: ", param.list$"return.thresh")
message("logfc.threshold: ", param.list$"logfc.threshold")
message("min.pct: ", param.list$"min.pct")
message("min.diff.pct: ", param.list$"min.diff.pct")
message("min.cells.group: ", param.list$"min.cells.group")
message("logfc.threshold: ", param.list$"logfc.threshold")
message("max.cells.per.ident: ", param.list$"max.cells.per.ident")
}

Expand Down Expand Up @@ -330,19 +331,7 @@ runDGEA <- function(obj,
Idents(obj) <- Idents.for.DEG[[i]]

# Perform differential expression analysis
tic()
message(
'logfc.threshold: ', param.list$"logfc.threshold",
'max.p_adj (return.thresh): ', param.list$"return.thresh",
'min.pct: ', param.list$"min.pct",
'min.diff.pct: ', param.list$"min.diff.pct",
'min.cells.group: ', param.list$"min.cells.group",
'max.cells.per.ident: ', param.list$"max.cells.per.ident",
'test: ', param.list$"test",
'only.pos: ', param.list$"only.pos"
)

df.markers <- Seurat::FindAllMarkers(obj,
tic(); df.markers <- Seurat::FindAllMarkers(obj,
verbose = TRUE,
test.use = param.list$"test",

Expand Down

0 comments on commit 2580918

Please sign in to comment.