R package to perform functional enrichment of clustered human gene data
1
0
Entering edit mode
5.8 years ago

I want to perform functional enrichment for my clustered data. Please suggest me R package so that i can implement it on my clustered data

R • 1.9k views
ADD COMMENT
0
Entering edit mode

Gene data means RNA-seq?

ADD REPLY
0
Entering edit mode

You can have a look at ChIPpeakAnno. All you need is just gene location i.e. bed file containing chromosome genestart geneend.

ADD REPLY
1
Entering edit mode
5.8 years ago

have a look on clusterProfiler

ADD COMMENT
0
Entering edit mode

I performed fuzzy c means using Mfuzz & now i'm confused with the compareCluster function of clusterProfiler package. How to input my Mfuzz result to compareCluster? i performed fuzzy c means using Mfuzz for my expression of 91 uniprot accession numbers across three time points.

ADD REPLY
0
Entering edit mode
datanew<-read.csv("C:/Users/sony/Downloads/new for clust.txt",as.is = TRUE,header = TRUE,sep = "\t",row.names = 1)
logData<-log2(datanew)
eset<- new("ExpressionSet", exprs=as.matrix(logData))
esetS <- standardise(eset)
cl <- mfuzz(esetS,c=4,m=2)
mfuzz.plot(esetS,cl=cl,mfrow=c(2,2))
ADD REPLY
0
Entering edit mode

"gcSample" for geneCluster(from guide) used here is of different type(list) having entrezid's along with their cluster whereas i have accession numbers along with their cluster(cl$cluster).How to make my clustered data suitable for input?

ck <- compareCluster(geneCluster = gcSample, fun = "enrichKEGG")
ADD REPLY

Login before adding your answer.

Traffic: 2024 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6