X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=cooccurrencecommand.cpp;h=75b87fae4303f161a1f75fb632e831672a80e29d;hb=a6cf29fa4dac0909c7582cb1094151d34093ee76;hp=e6c298e17e88a2c192765dce5b41e21c90db67c2;hpb=dec4333b64891e0b923c862446cf2e3befa7e3d3;p=mothur.git diff --git a/cooccurrencecommand.cpp b/cooccurrencecommand.cpp index e6c298e..75b87fa 100644 --- a/cooccurrencecommand.cpp +++ b/cooccurrencecommand.cpp @@ -270,27 +270,24 @@ int CooccurrenceCommand::execute(){ //********************************************************************************************************************** int CooccurrenceCommand::getCooccurrence(vector& thisLookUp, ofstream& out){ - try { + try { int numOTUS = thisLookUp[0]->getNumBins(); - vector< vector > initmatrix; initmatrix.resize(thisLookUp.size()); vector< vector > co_matrix; co_matrix.resize(thisLookUp[0]->getNumBins()); for (int i = 0; i < thisLookUp[0]->getNumBins(); i++) { co_matrix[i].resize((thisLookUp.size()), 0); } - for (int i = 0; i < thisLookUp.size(); i++) { initmatrix[i].resize((thisLookUp[i]->getNumBins()), 0); } vector columntotal; columntotal.resize(thisLookUp.size(), 0); vector rowtotal; rowtotal.resize(numOTUS, 0); - for (int i = 0; i < thisLookUp.size(); i++) { - for (int j = 0; j < thisLookUp[i]->getNumBins(); j++) { - if (m->control_pressed) { return 0; } - int abund = thisLookUp[i]->getAbundance(j); - - if(abund > 0) { - initmatrix[i][j] = 1; + for (int i = 0; i < thisLookUp.size(); i++) { //nrows in the shared file + for (int j = 0; j < thisLookUp[i]->getNumBins(); j++) { //cols of original shared file + if (m->control_pressed) { return 0; } + int abund = thisLookUp[i]->getAbundance(j); + + if(abund > 0) { co_matrix[j][i] = 1; rowtotal[j]++; columntotal[i]++; - } - } + } + } } //nrows is ncols of inital matrix. All the functions need this value. They assume the transposition has already taken place and nrows and ncols refer to that matrix. @@ -298,124 +295,254 @@ int CooccurrenceCommand::getCooccurrence(vector& thisLookUp int nrows = numOTUS;//rows of inital matrix int ncols = thisLookUp.size();//groups double initscore = 0.0; - - vector initcolumntotal; initcolumntotal.resize(ncols, 0); - vector initrowtotal; initrowtotal.resize(nrows, 0); + vector stats; - + double probabilityMatrix[ncols * nrows]; + vector > nullmatrix(nrows, vector(ncols, 0)); + TrialSwap2 trial; - initcolumntotal = rowtotal; - initrowtotal = columntotal; - trial.update_row_col_totals(co_matrix, rowtotal, columntotal); + int n = accumulate( columntotal.begin(), columntotal.end(), 0 ); - if (metric == "cscore") { initscore = trial.calc_c_score(co_matrix, rowtotal); } - else if (metric == "checker") { initscore = trial.calc_checker(co_matrix, rowtotal); } - else if (metric == "vratio") { initscore = trial.calc_vratio(rowtotal, columntotal); } - else if (metric == "combo") { initscore = trial.calc_combo(co_matrix); } - else { m->mothurOut("[ERROR]: No metric selected!\n"); m->control_pressed = true; return 1; } + //============================================================ - m->mothurOut("Initial c score: " + toString(initscore)); m->mothurOutEndLine(); + //generate a probability matrix. Only do this once. + float start = 0.0; - //nullmatrix burn in - for(int i=0;i<10000;i++) { - if (m->control_pressed) { return 0; } - if (matrix == "sim1") { - trial.sim1(co_matrix); - }else if (matrix == "sim2") { - trial.sim2(co_matrix); - }else if (matrix == "sim3") { - trial.sim3(initmatrix); - co_matrix = initmatrix; - }else if (matrix == "sim4") { - trial.sim4(columntotal, rowtotal, co_matrix); - }else if (matrix == "sim5") { - trial.sim5(initcolumntotal, initrowtotal, initmatrix); - trial.transpose_matrix(initmatrix,co_matrix); - }else if (matrix == "sim6") { - trial.sim6(columntotal, co_matrix); - }else if (matrix == "sim7") { - trial.sim7(initcolumntotal, initmatrix); - co_matrix = initmatrix; - }else if (matrix == "sim8") { - trial.sim8(columntotal, rowtotal, co_matrix); - }else if (matrix == "sim9") { - trial.swap_checkerboards (co_matrix); - }else{ - m->mothurOut("[ERROR]: No model selected! \n"); - m->control_pressed = true; + if (matrix == "sim1") { + for(int i=0;icontrol_pressed) { return 0; } - //calc metric of nullmatrix - if (matrix == "sim1") { - trial.sim1(co_matrix); - }else if (matrix == "sim2") { - trial.sim2(co_matrix); - }else if (matrix == "sim3") { - trial.sim3(initmatrix); - co_matrix = initmatrix; - }else if (matrix == "sim4") { - trial.sim4(columntotal, rowtotal, co_matrix); - }else if (matrix == "sim5") { - trial.sim5(initcolumntotal, initrowtotal, initmatrix); - trial.transpose_matrix(initmatrix,co_matrix); - }else if (matrix == "sim6") { - trial.sim6(columntotal, co_matrix); - }else if (matrix == "sim7") { - trial.sim7(initcolumntotal, initmatrix); - co_matrix = initmatrix; - }else if (matrix == "sim8") { - trial.sim8(columntotal, rowtotal, co_matrix); - }else if (matrix == "sim9") { - trial.swap_checkerboards (co_matrix); - }else{ - m->mothurOut("[ERROR]: No model selected! \n"); - m->control_pressed = true; + //don't need a prob matrix because we just shuffle the rows, may use this in the future + else if (matrix == "sim2") { } +// for(int i=0;imothurOut("[ERROR]: No model selected! \n"); + m->control_pressed = true; + } + + + //co_matrix is the transposed shared file, initmatrix is the original shared file + if (metric == "cscore") { initscore = trial.calc_c_score(co_matrix, rowtotal, ncols, nrows); } + else if (metric == "checker") { initscore = trial.calc_checker(co_matrix, rowtotal, ncols, nrows); } + else if (metric == "vratio") { initscore = trial.calc_vratio(nrows, ncols, rowtotal, columntotal); } + else if (metric == "combo") { initscore = trial.calc_combo(nrows, ncols, co_matrix); } + else { m->mothurOut("[ERROR]: No metric selected!\n"); m->control_pressed = true; return 1; } + + m->mothurOut("Initial c score: " + toString(initscore)); m->mothurOutEndLine(); + + double previous; + double current; + double randnum; + int count; + + //burn-in for sim9 + if(matrix == "sim9") { + for(int i=0;i<10000;i++) trial.swap_checkerboards (co_matrix, ncols, nrows); + } + + //populate null matrix from probability matrix, do this a lot. + for(int k=0;k(ncols, 0)); + + if(matrix == "sim1" || matrix == "sim6" || matrix == "sim8" || matrix == "sim7") { + count = 0; + while(count < n) { + if (m->control_pressed) { return 0; } + nextnum2: + previous = 0.0; + randnum = rand() / double(RAND_MAX); + for(int i=0;i previous) { + nullmatrix[i][j] = 1; + count++; + if (count > n) break; + else + goto nextnum2; + } + previous = current; + } + } + } + } + + else if (matrix == "sim2") { + for(int i=0;icontrol_pressed) { return 0; } + randnum = rand() / double(RAND_MAX); + for(int j=0;j previous && nullmatrix[i][j] != 1) { + nullmatrix[i][j] = 1; + count++; + previous = 0.0; + break; + } + previous = current; + } + } + } + } + + else if(matrix == "sim3" || matrix == "sim5") { + //columns + for(int j=0;jcontrol_pressed) { return 0; } + randnum = rand() / double(RAND_MAX); + for(int i=0;i previous && nullmatrix[i][j] != 1) { + nullmatrix[i][j] = 1; + count++; + previous = 0.0; + break; + } + previous = current; + } + } + } } - // - // - trial.update_row_col_totals(co_matrix, rowtotal, columntotal); - if (metric == "cscore") { - stats.push_back(trial.calc_c_score(co_matrix, rowtotal)); - }else if (metric == "checker") { - stats.push_back(trial.calc_checker(co_matrix, rowtotal)); - }else if (metric == "vratio") { - stats.push_back(trial.calc_vratio(rowtotal, columntotal)); - }else if (metric == "combo") { - stats.push_back(trial.calc_combo(co_matrix)); - }else { - m->mothurOut("[ERROR]: No metric selected!\n"); - m->control_pressed = true; + //swap_checkerboards takes the original matrix and swaps checkerboards + else if(matrix == "sim9") { + trial.swap_checkerboards (co_matrix, ncols, nrows); + nullmatrix = co_matrix; + } + else { + m->mothurOut("[ERROR]: No null model selected!\n\n"); m->control_pressed = true; + return 1; + } + + //run metric on null matrix and add score to the stats vector + if (metric == "cscore"){ + stats.push_back(trial.calc_c_score(nullmatrix, rowtotal, ncols, nrows)); + } + else if (metric == "checker") { + stats.push_back(trial.calc_checker(nullmatrix, rowtotal, ncols, nrows)); + } + else if (metric == "vratio") { + stats.push_back(trial.calc_vratio(nrows, ncols, rowtotal, columntotal)); + } + else if (metric == "combo") { + stats.push_back(trial.calc_combo(nrows, ncols, nullmatrix)); + } + else { + m->mothurOut("[ERROR]: No metric selected!\n\n"); m->control_pressed = true; return 1; } } - + + + double total = 0.0; - for (int i=0; imothurOutEndLine(); m->mothurOut("average metric score: " + toString(nullMean)); m->mothurOutEndLine(); double pvalue = 0.0; - if (metric == "cscore" || metric == "checker") { pvalue = trial.calc_pvalue_greaterthan (stats, initscore); } - else{ pvalue = trial.calc_pvalue_lessthan (stats, initscore); } + if (metric == "cscore" || metric == "checker") { pvalue = trial.calc_pvalue_greaterthan (stats, initscore); } + else{ pvalue = trial.calc_pvalue_lessthan (stats, initscore); } m->mothurOut("pvalue: " + toString(pvalue)); m->mothurOutEndLine(); out << metric << '\t' << thisLookUp[0]->getLabel() << '\t' << nullMean << '\t' << pvalue << endl; return 0; - } - catch(exception& e) { - m->errorOut(e, "CooccurrenceCommand", "Cooccurrence"); - exit(1); - } + } + catch(exception& e) { + m->errorOut(e, "CooccurrenceCommand", "Cooccurrence"); + exit(1); + } } //**********************************************************************************************************************