forked from satijalab/seurat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFindSubCluster.Rd
38 lines (33 loc) · 1.04 KB
/
FindSubCluster.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/clustering.R
\name{FindSubCluster}
\alias{FindSubCluster}
\title{Find subclusters under one cluster}
\usage{
FindSubCluster(
object,
cluster,
graph.name,
subcluster.name = "sub.cluster",
resolution = 0.5,
algorithm = 1
)
}
\arguments{
\item{object}{An object}
\item{cluster}{the cluster to be sub-clustered}
\item{graph.name}{Name of graph to use for the clustering algorithm}
\item{subcluster.name}{the name of sub cluster added in the meta.data}
\item{resolution}{Value of the resolution parameter, use a value above
(below) 1.0 if you want to obtain a larger (smaller) number of communities.}
\item{algorithm}{Algorithm for modularity optimization (1 = original Louvain
algorithm; 2 = Louvain algorithm with multilevel refinement; 3 = SLM
algorithm; 4 = Leiden algorithm). Leiden requires the leidenalg python.}
}
\value{
return a object with sub cluster labels in the sub-cluster.name variable
}
\description{
Find subclusters under one cluster
}
\concept{clustering}