Usage Instructions
MINE’s parameters
The following is a non-comprehensive list of MINE’s input parameters and their default values. The complete list is available as a pdf.
- To determine which variables MINE compares to each other, one of the following flags is required immediately following the name of the input file: ‘-allPairs’ compares all pairs of variables against each other, ‘-adjacentPairs’ compares consecutive pairs of variables only; ‘-masterVariable i’ or just a number i compares all variables only against the i-th variable; ‘-onePair i j’ or just the pair i j compares only the i-th variable against the j-th variable; ‘-pairsBetween i’ will compare each of the first i variables against each of the rest of the variables. Variables are indexed from 0.
- cv : A floating point number indicating which percentage of the records need to have data in them for both variables before those two variables are compared. This parameter is optional, and its default value is 0.
- exp : The exponent that determines how many cells are allowed in the grids considered by the algorithm. This parameter controls the value of α in the equation B(n) = nα. It is optional, and its default value is 0.6.
- c: Determines by what factor clumps may outnumber columns when OptimizeXAxis is called. When trying to partition the x-axis into x columns, the algorithm will start with at most cx clumps. This number can be made smaller to increase speed, and it can be made larger to make the approximation of the characteristic matrix closer to optimal. This parameter is optional, and its default value is 15.
Example
java -jar MINE.jar Spellman.csv 0 cv=0.7
will run the Java version of MINE on the file 'Spellman.csv'. The only variable pairs that will be analyzed are the first variable against the rest of the variables. A variable pair will be ignored if fewer than 70% of the records have values for both the variables in question. Try executing this line after dowloading the gene expression data set available on our site and saving it with the name 'Spellman.csv' into the same folder as MINE.jar.