a b/man/getCOCA.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/getCOCA.R
3
\name{getCOCA}
4
\alias{getCOCA}
5
\title{Get subtypes from COCA}
6
\usage{
7
getCOCA(
8
  data = NULL,
9
  N.clust = NULL,
10
  type = rep("gaussian", length(data)),
11
  methods = "hclust",
12
  distances = "euclidean"
13
)
14
}
15
\arguments{
16
\item{data}{List of matrices.}
17
18
\item{N.clust}{Number of clusters.}
19
20
\item{type}{Data type corresponding to the list of matrics, which can be gaussian, binomial or possion.}
21
22
\item{methods}{A string vector storing the names of clustering methods to be used to cluster the observations in each subdataset.}
23
24
\item{distances}{A string vector storing the name of distances to be used in the clustering step for each subdataset.}
25
}
26
\value{
27
A list with the following components:
28
29
        \code{fit}        an object returned by \link[coca]{coca}.
30
31
        \code{clust.res}  a data.frame storing sample ID and corresponding clusters.
32
33
        \code{clust.dend} a dendrogram of sample clustering.
34
35
        \code{mo.method}  a string value indicating the method used for multi-omics integrative clustering.
36
}
37
\description{
38
This function wraps the COCA (Cluster-of-Clusters Analysis) algorithm and provides standard output for `getMoHeatmap()` and `getConsensusMOIC()`.
39
}
40
\examples{
41
# There is no example and please refer to vignette.
42
}
43
\references{
44
Hoadley KA, Yau C, Wolf DM, et al (2014). Multiplatform analysis of 12 cancer types reveals molecular classification within and across tissues of origin. Cell, 158(4):929-944.
45
}