Description Usage Arguments Value Examples
Calculate p-value and adjust p-value of KEGG pathway on input sample
1 | getPValue(thispathwayID_DF, thisKEGGSpecies, thisInputSampleKEGG, N, n)
|
thispathwayID_DF |
KEGG pathway ID |
thisKEGGSpecies |
species in KEGG format |
thisInputSampleKEGG |
input sample with in KEGG gene ID |
N |
the number of all genes with KEGG gene ID |
n |
the number of sample genes with KEGG gene ID |
vector in dataframe class containing p-value, adjust p-value, N:the number of all genes with KEGG gene ID, n the number of sample genes with KEGG gene ID, M:the number of all genes in specific KEGG pathway, m: the number of sample genes in specific KEGG pathway
1 2 3 4 5 6 7 | data(inputSample)
inputSample<-as.data.frame(inputSample)
allGeneInPathwayDF<-getAllGeneInPathwayDF("mmu")
N<-getN(allGeneInPathwayDF)
n<-get_n(inputSample,allGeneInPathwayDF)
getPValue("mmu00053","mmu",inputSample,N,n)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.