Description Details Author(s) References Examples
Using pre-calculated files to calculate the functional associations between a single gene and a gene set. Also implement down stream CSEA functions to facilitate pathway analysis.
The package include two major functions:
cal_uniConSig(trList,preCal=preCal.data)
CSEA(result.uniConSig,posList,nPermu=1000)
The input of uniConSig is trList, which is a vector containing the entrez gene IDs of interest. The output of cal_uniConSig can be directly put into the second function "CSEA" as the first argument. The second and the third argument specify the pathway gene set. Currently only c2cp and hallmark pathways from MSigdb are compiled.
Xu Chi
Maintainer: Xu Chi <wangxlab2018@gmail.com>
https://github.com/wangxlab/uniConSigPreCal
1 2 3 4 5 6 7 | #See vignettes for full calculation of uniConSig scores.
trList.call<-1:100
result<-cal_uniConSig(trList.call)
pathway.my<-list()
pathway.my[[1]]<-1:10
pathway.my[[2]]<-5:15
result.csea<-CSEA(result,pathway.my)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.