Description Usage Arguments Value Author(s) References See Also Examples
The function performs the Rank Product (or Rank Sum) method to identify differentially expressed genes. It is possible to do either a one-class or two-class analysis.
1 2 3 |
data |
the data set that should be analyzed. Every row of this dataset must correspond to a gene |
cl |
a vector containing the class labels of the samples. In the two class unpaired case, the label of a sample is either 0 (e.g., control group) or 1 (e.g., case group). For one class data, the label for each sample should be 1 |
logged |
if "TRUE" data have been previously log transformed. Otherwise it should be set as "FALSE" |
na.rm |
if "FALSE", the NA value will not be used in computing rank. If "TRUE" (default), the missing values will be replaced by the genewise median of the non-missing values. Gene with a number of missing values greater than "MinNumOfValidPairs" are still not considered in the analysis |
gene.names |
if "NULL", no gene name will be attached to the outputs, otherwise it contains the vector of gene names |
plot |
if "TRUE", plot the estimated pfp vs the rank of each gene |
rand |
if specified, the random number generator will be put in a reproducible state |
calculateProduct |
if calculateProduct="TRUE" (default) the rank product method is performed. Otherwise the rank sum method is performed |
MinNumOfValidPairs |
a parameter that indicates the minimum number of NAs accepted per each gene. If it is set to NA (default) the half of the number of replicates is used |
RandomPairs |
number of random pairs generated in the function, if set to NA (default), the odd integer closer to the square of the number of replicates is used |
huge |
if "TRUE" not all the outputs are evaluated in order to save space |
fast |
if "FALSE" the exact p-values for the Rank Sum are evaluated for any size of the dataset. Otherwise (default), if the size of the dataset is too big, only the p-values that can be computed in "tail.time" minutes (starting from the tail) are evaluated with the exact method. The others are estimated with the Gaussian approximation. If calculateProduct="TRUE" this parameter is ignored |
tail.time |
the time (default 0.05 min) dedicated to evaluate the exact p-values for the Rank Sum. If calculateProduct="TRUE" this parameter is ignored |
A summary of the results obtained by the Rank Product (or Rank Sum) method.
pfp |
Estimated percentage of false positive predictions (pfp), both considering upregulated an downregulated genes |
pval |
Estimated pvalues per each gene being up- and down-regulated |
RPs/RSs |
The rank-product/rank-sum statistics evaluated per each gene |
RPrank/RSrank |
rank of the Rank Product (or Rank Sum) of each gene in ascending order |
Orirank |
Ranks obtained when considering each possible pairing. In this version of the package, this is not used to compute Rank Product (or Rank Sum), but it is kept for backward compatibility |
AveFC |
Fold change of average expressions (class1/class2). log fold-change if data has been log transformed, original fold change otherwise |
allrank1 |
Fold change of class 1/class 2 under each origin. log fold-change if data has been log transformed, original fold change otherwise |
allrank2 |
Fold change of class 2/class 1 under each origin. log fold-change if data has been log transformed, original fold change otherwise |
nrep |
Total number of replicates |
groups |
Vector of labels (as cl) |
RandomPairs_ranks |
a matrix containing the ranks evaluated for each RandomPair |
Francesco Del Carratore,
francesco.delcarratore@postgrad.manchester.ac.uk
Andris Janckevics, andris.jankevics@gmail.com
Breitling, R., Armengaud, P., Amtmann, A., and Herzyk, P.(2004) Rank Products: A simple, yet powerful, new method to detect differentially regulated genes in replicated microarray experiments, FEBS Letter, 57383-92
topGene
RP
RPadvance
plotRP
RP.advance
RSadvance
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Load the data of Golub et al. (1999). data(golub)
# contains a 3051x38 gene expression
# matrix called golub, a vector of length called golub.cl
# that consists of the 38 class labels,
# and a matrix called golub.gnames whose third column
# contains the gene names.
data(golub)
#use a subset of data as example, apply the rank
#product method
subset <- c(1:4,28:30)
#Setting rand=123, to make the results reproducible,
RP.out <- RankProducts(golub[,subset],golub.cl[subset],rand=123)
# class 2: label =1, class 1: label = 0
#pfp for identifying genes that are up-regulated in class 2
#pfp for identifying genes that are down-regulated in class 2
head(RP.out$pfp)
#Rank Sum
RS.out <-RankProducts(golub[,subset],golub.cl[subset],rand=123,
calculateProduct=FALSE)
head(RS.out$pfp)
|
Loading required package: Rmpfr
Loading required package: gmp
Attaching package: 'gmp'
The following objects are masked from 'package:base':
%*%, apply, crossprod, matrix, tcrossprod
C code of R package 'Rmpfr': GMP using 64 bits per limb
Attaching package: 'Rmpfr'
The following objects are masked from 'package:stats':
dbinom, dnorm, dpois, pnorm
The following objects are masked from 'package:base':
cbind, pmax, pmin, rbind
Rank Product analysis for unpaired case
done class1 < class2 class1 > class2
[1,] 1.017396 1.06832283
[2,] 1.039144 0.98009986
[3,] 1.030740 1.00463854
[4,] 1.023304 0.05053535
[5,] 1.032176 0.05780496
[6,] 1.007577 0.02786279
Rank Sum analysis for unpaired case
done class1 < class2 class1 > class2
[1,] 0.7999761 1.0778738
[2,] 1.0351514 0.8503367
[3,] 1.0310858 0.8918856
[4,] 1.0172448 0.6914924
[5,] 1.0231262 0.7659135
[6,] 1.0090652 0.3224780
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.