Diff of /man/getPINSPlus.Rd [000000] .. [494cbf]

Switch to unified view

a b/man/getPINSPlus.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/getPINSPlus.R
3
\name{getPINSPlus}
4
\alias{getPINSPlus}
5
\title{Get subtypes from PINSPlus}
6
\usage{
7
getPINSPlus(
8
  data = NULL,
9
  N.clust = NULL,
10
  type = rep("gaussian", length(data)),
11
  norMethod = "none",
12
  clusteringMethod = "kmeans",
13
  iterMin = 50,
14
  iterMax = 500
15
)
16
}
17
\arguments{
18
\item{data}{List of matrices.}
19
20
\item{N.clust}{Number of clusters}
21
22
\item{type}{Data type corresponding to the list of matrics, which can be gaussian, binomial or possion.}
23
24
\item{norMethod}{A string vector indicate the normalization method for consensus clustering.}
25
26
\item{clusteringMethod}{The name of built-in clustering algorithm that PerturbationClustering will use. Currently supported algorithm are kmeans, pam and hclust. Default value is "kmeans".}
27
28
\item{iterMin}{The minimum number of iterations. Default value is 50}
29
30
\item{iterMax}{The maximum number of iterations. Default value is 500.}
31
}
32
\value{
33
A list with the following components:
34
35
        \code{fit}       an object returned by \link[PINSPlus]{PerturbationClustering}.
36
37
        \code{clust.res} a data.frame storing sample ID and corresponding clusters.
38
39
        \code{mo.method} a string value indicating the method used for multi-omics integrative clustering.
40
}
41
\description{
42
This function wraps the PINSPlus (Perturbation Clustering for data INtegration and disease Subtyping) algorithm and provides standard output for `getMoHeatmap()` and `getConsensusMOIC()`.
43
}
44
\examples{
45
# There is no example and please refer to vignette.
46
}
47
\references{
48
Nguyen H, Shrestha S, Draghici S, Nguyen T (2019). PINSPlus: a tool for tumor subtype discovery in integrated genomic data. Bioinformatics, 35(16):2843-2846.
49
}