Description Usage Arguments Value Examples
View source: R/getCNADEscore.R
The function getCNADEscore used calculate the CNA-DEscore.we use Student’s t-test method to compute the gene differentially expressed level between CNA labels. To compare the genes regulated by CNAs at a common level, we convert the t-test p-value of each gene to z-score.
1 | getCNADEscore(inexpData, CNALabel)
|
inexpData |
Gene Expression profile(GEP) |
CNALabel |
The CNA label (the result of function getCNAlabel) |
A matrix of the Student’s t-test result and CNA-DEscore
1 2 3 4 5 6 7 8 | # obtain GEP data
GEP<-GetExampleData("GEP")
# obtain the result of getCNAlabel function
CNAlabelresult<-GetExampleData("CNAlabelresult")
# Calculate the CNA-DEscore
CNADEscore<-getCNADEscore(GEP,CNAlabelresult)
# view first the ten gene CNA-DEscore
head(CNADEscore[1:10,])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.