Description Usage Arguments Value Author(s) References Examples
Differently Expression Analysis for genomic data. We apply limma package to conduct the analysis.
1 2 3 4 5 6 7 8 9 | DiffExp.limma(
Tumor_Data,
Normal_Data,
group = NULL,
topk = NULL,
sort.by = "p",
adjust.method = "BH",
RNAseq = FALSE
)
|
Tumor_Data |
A matrix representing the genomic data of cancer samples such as gene expression data, miRNA expression data. |
Normal_Data |
A matrix representing the genomic data of Normal samples. |
group |
A vector representing the subtype of each tumor sample in the Tumor_Data. The length of group is equal to the column number of Tumor_Data. |
topk |
The top number of different expression features that we want to extract in the return result. |
sort.by |
This is a parmeter of "topTable() in limma pacakge". "Character string specifying statistic to rank genes by. Possible values for topTable and toptable are "logFC", "AveExpr", "t", "P", "p", "B" or "none". (Permitted synonyms are "M" for "logFC", "A" or "Amean" for "AveExpr", "T" for "t" and "p" for "P".) Possibilities for topTableF are "F" or "none". Possibilities for topTreat are as for topTable except for "B"." |
adjust.method |
This is a parmeter of "topTable() in limma pacakge". Refer to the "method used to adjust the p-values for multiple testing. Options, in increasing conservatism, include "none", "BH", "BY" and "holm". See p.adjust for the complete list of options. A NULL value will result in the default adjustment method, which is "BH"." |
RNAseq |
A bool type representing the input datatype is a RNASeq or not. Default is FALSE for microarray data. |
A list representing the differently expression for each subtype comparing to the Normal group.
Xu,Taosheng taosheng.x@gmail.com,Thuc Le Thuc.Le@unisa.edu.au
Smyth, Gordon K. "Limma: linear models for microarray data." Bioinformatics and computational biology solutions using R and Bioconductor. Springer New York, 2005. 397-420.
1 2 3 4 5 6 7 8 9 | data(GeneExp)
data(miRNAExp)
GBM=list(GeneExp=GeneExp,miRNAExp=miRNAExp)
result=ExecuteSNF(GBM, clusterNum=3, K=20, alpha=0.5, t=20)
group=result$group
######Fabricate a normal group by extracting some samples from the cancer dataset
######for demonstrating the examples.
Normal_Data=GeneExp[,sample(1:100,20)]
result=DiffExp.limma(Tumor_Data=GeneExp,Normal_Data=Normal_Data,group=group,topk=NULL,RNAseq=FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.