Hi!
I've had your tool random jungle on my ToDo list for a long time, and today I wanted to try it out. Unfortunately, it always ends with an error and the documentation isn't that helpful.
Situation:
I have GWAS SNP dataset and want to have random jungle help me select the relevant features/SNPs. The data contains missing values and I don't wont to impute them, because I want to be comparable with other approaches I used.
I used PLINK to convert my data set to the .raw format and even tried replacing all occurences of "NA" with "3".
I'm running Ubuntu 9.10 on an Intel Core2 Duo on 32bit and have 4GB of RAM.
This is my output:
./rjunglesparse -f plink.raw -p -v -o study_DE_filtered
Start: Tue Mar 23 12:17:22 2010
+---------------------+-----------------+-------------------+
| RandomJungle | 0.8.6.333 | 2010 |
+---------------------+-----------------+-------------------+
| (C) 2008-2010 Daniel F Schwarz et al., GNU GPL, v2 |
| dan...@randomjungle.com |
+-----------------------------------------------------------+
Output to: study_DE_filtered.*
Loading data...
Read 1652 row(s) and 452871 column(s).
ERROR:
Missings in Data
terminate called after throwing an instance of 'Exception'
Aborted
=====
So I tried letting rjungle impute it, and this was the result:
rjungle -f plink.raw -p -v -U 2 -M 2 -x 3 -I 100 -o study_DE_filtered
Output to: study_DE_filtered.*
Loading data...
Read 1652 row(s) and 452871 column(s).
Use 1652 row(s) and 452867 column(s).
Dependent variable name: PHENOTYPE
Growing jungle...
Number of variables: 452867 (mtry = 672)
ERROR:
RJungleCtrl::make:std::bad_alloc
terminate called after throwing an instance of 'Exception'
Aborted
Any help is appreciated ;)