Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a gene expression data for which I would like to do a biclustering analysis. The dimension of my data matrix is 288 *11,000 . I have tried MeV(http://www.tm4.org/mev/), but I am getting memory issues. It will be of great help if I get to know about the tools or algorithms which can be used for large scale biclustering.

share|improve this question
288 * 11000 * 8 bytes for a double is just 25 MB. This shouldn't be "large" yet. There must be a bug in MeV. – Anony-Mousse Jan 18 at 8:04
yes the file size is just 45 MB. But still , it creates problem . I am getting 'Java heap space' error. Further, MeV is bit slow . So, I would like to is there any tool which is robust in handling huge datasets. – satty Jan 18 at 10:37
Did you try increasing the Java memory limit? The default limit may be as low as 256 MB. See Java documentation for -Xmx. Biclustering algorithms mostly just seem to be very slow. – Anony-Mousse Jan 18 at 12:46
You could, additionally, see what happens when you cluster the domains independently. This is essentially what you see in heatmaps. Do you trust biclustering better? – micans Jan 18 at 13:32
I have increased the memory space for JAVA from 512 to 2084. But still, I have Java Heap memory error. – satty Jan 21 at 9:42
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.