Diff of /man/identifyClusters.Rd [000000] .. [4a0329]

Switch to unified view

a b/man/identifyClusters.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/scAI_model.R
3
\name{identifyClusters}
4
\alias{identifyClusters}
5
\title{Identify cell clusters}
6
\usage{
7
identifyClusters(object, resolution = 1,
8
  partition.type = "RBConfigurationVertexPartition", seed.use = 42L,
9
  n.iter = 10L, initial.membership = NULL, weights = NULL,
10
  node.sizes = NULL, K = NULL)
11
}
12
\arguments{
13
\item{object}{scAI object}
14
15
\item{resolution}{A parameter controlling the coarseness of the clusters}
16
17
\item{partition.type}{Type of partition to use. Defaults to RBConfigurationVertexPartition. Options include: ModularityVertexPartition, RBERVertexPartition, CPMVertexPartition, MutableVertexPartition, SignificanceVertexPartition, SurpriseVertexPartition (see the Leiden python module documentation for more details)}
18
19
\item{seed.use}{set seed}
20
21
\item{n.iter}{number of iteration}
22
23
\item{initial.membership}{arameters to pass to the Python leidenalg function defaults initial_membership=None}
24
25
\item{weights}{defaults weights=None}
26
27
\item{node.sizes}{Parameters to pass to the Python leidenalg function}
28
29
\item{K}{Number of clusters if performing hierarchical clustering of the consensus matrix}
30
}
31
\description{
32
Identify cell clusters
33
}