isa biclustering algorithm
0
0
Entering edit mode
6.1 years ago
mannoulag1 ▴ 120

Hi, I need to do the isa biclustering algorithm on gene expression data matrix using ISA function of the Package ‘eisa’

library(eisa)
thr.gene <- 2.7 
 thr.cond <- 1.4 
 set.seed(1) # to get the same results, always 
 modules<- ISA(matrix, thr.gene=thr.gene, thr.cond=thr.cond)

but I have an error: impossible to find the ISA function ....

I do the isa biclustering from isa2 package and it is OK :

modules<-isa(normalized_matrix, thr.row=seq(1,3,by=0.5), thr.col=seq(1,3,by=0.5), no.seeds=100, direction=c("updown", "updown"))
    clusters<-isa.biclust(modules) # to convert the object with ISA modules to a Biclust object, so all the functions in the biclust package can be used on it.

But I read in the tutorial : If you analyze gene expression data, then we suggest using the interface provided in the eisa package. For other data, use the isa2 package directly.

how to obtain the modules using eisa package? thank you

isa biclustering gene expression data R eisa • 1.1k views
ADD COMMENT

Login before adding your answer.

Traffic: 2911 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