cell type identification
lvweiming opened this issue · 3 comments
Hello, there are two solutions you can try.
(1) Adjust the parameters in findmarkergenes()
by setting a lower cell_min_pct
and logfc
, e.g., cell_min_pct = 0.1
, logfc = 0.1
, and run scCATCH()
again.
clu_markers <- findmarkergenes(Seurat_object,cell_min_pct = 0.1, logfc = 0.1)
clu_ann <- scCATCH(clu_markers)
(2) Use FindAllMarkers()
of Seurat, and run scCATCH()
again.
clu_markers <- FindAllMarkers(Seurat_object)
clu_ann <- scCATCH(clu_markers)
Hello, there are two solutions you can try.
(1) Adjust the parameters in
findmarkergenes()
by setting a lowercell_min_pct
andlogfc
, e.g.,cell_min_pct = 0.1
,logfc = 0.1
, and runscCATCH()
again.clu_markers <- findmarkergenes(Seurat_object,cell_min_pct = 0.1, logfc = 0.1) clu_ann <- scCATCH(clu_markers)
(2) Use
FindAllMarkers()
of Seurat, and runscCATCH()
again.clu_markers <- FindAllMarkers(Seurat_object) clu_ann <- scCATCH(clu_markers)
Hello, there are two solutions you can try.
(1) Adjust the parameters in
findmarkergenes()
by setting a lowercell_min_pct
andlogfc
, e.g.,cell_min_pct = 0.1
,logfc = 0.1
, and runscCATCH()
again.clu_markers <- findmarkergenes(Seurat_object,cell_min_pct = 0.1, logfc = 0.1) clu_ann <- scCATCH(clu_markers)
(2) Use
FindAllMarkers()
of Seurat, and runscCATCH()
again.clu_markers <- FindAllMarkers(Seurat_object) clu_ann <- scCATCH(clu_markers)
Thank you for answer my question. the second method solves my problem.