ORICC2 {ORIClust} | R Documentation |
Two-stage ORICC
Description
It is a computationally efficient two-stage algorithm by adding a pre-screening stage. It first screens out genes that show no significant changes over time, and then applies the one-stage algorithm to a much smaller set of remained genes.
Usage
ORICC2(data,data.col,id.col,n.rep,n.top,transform,
name.profile,cyclical.profile,
onefile,plot.format)
Arguments
data |
A matrix containing the gene expressions. |
data.col |
Column indices of the gene expression data. |
id.col |
Column index of the gene ID. Defaults to 1. |
n.rep |
A vector consisting of the number of replicate arrays at time points (1, 2,... ,T), where T is the total number of time points. |
n.top |
The number of genes kept for the final clustering result. Genes are ranked based on expression variation across time or dose levels. Defaults to all genes ORICC2 selects |
transform |
Transformation of the original data: 0=None, 1=natural log, 2=square root, 3=cubic root. Defaults to 0. |
name.profile |
A character string specifying the collection of candidate profiles. This option only supports monotone, up-down and down-up profiles specified as by
If If One can also specify several up-down or down-up profiles together as follows.
then up-down profile with maxima at 2 and 4 as well as down-up profile with minima at 3 and 5 will be included. |
cyclical.profile |
A matrix with 2 columns. Each element of the matrix must be a number in the set {2,3,...,T-1 }. Each row of the matrix represents a cyclical profile with minima at the first entry of the row and maxima at the 2nd entry. As a result, two elements in the same row must be different. For example, if
If |
onefile |
logical: if true (the default) multiple figures for different clusters are output in one file. If FALSE, each cluster is plotted in a seperate file. Defaults to TRUE. |
plot.format |
The format of the output file containing plots of gene clusters.Users can choose between ‘eps’ and ‘jpg’. Defaults to ‘eps’. |
Details
The gene expression dataset should be in a tab-delimited txt file, in which the first two columns contain the gene names and their
accession numbers or descriptions, and the remaining columns, in their orders, are the geneexpression data (contain multiple columns, i.e. data.col
).The dataset is assumed to have been processed so that each row contains the expressions of only one gene.
Value
The results are displayed in a graphical form. The graphics can be stored in a JPG or EPS format. Both the raw gene expression values and the estimated mean expressions are output to external files ‘cluster of raw data.txt’ and ‘cluster of fitted mean data.txt’, respectively.
Author(s)
Tianqing Liu, Nan Lin, Ningzhong Shi and Baoxue Zhang
Maintainer: Tianqing Liu <tianqingliu@gmail.com>
References
Liu, T., Lin, N., Shi, N. and Zhang, B. (2009), Information criterion-based clustering with order-restricted candidate profiles in short time-course microarray experiments. BMC Bioinformatics, 10: 146.
Examples
data(Breast)
ORICC2(Breast,data.col=3:50,id.col=1,n.rep=rep(8,6),
n.top=50,transform=1,name.profile="all",plot.format="eps")