X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=kruskalwalliscommand.cpp;h=474e82ced7a31ed287a2ecce360bc618c5746827;hb=28bcfc4a41b8b82f66636587e0d4d355d07cbdd1;hp=f67fef89f65c53964a354023ed20a7bbc00f3c3f;hpb=f954b4d65ce86218f9f7262737f36d1e7faf58d6;p=mothur.git diff --git a/kruskalwalliscommand.cpp b/kruskalwalliscommand.cpp index f67fef8..474e82c 100644 --- a/kruskalwalliscommand.cpp +++ b/kruskalwalliscommand.cpp @@ -4,6 +4,7 @@ * * Created on June 26, 2012, 11:06 AM */ + #include "kruskalwalliscommand.h" //********************************************************************************************************************** @@ -11,6 +12,8 @@ vector KruskalWallisCommand::setParameters(){ try { CommandParameter pinputdir("inputdir", "String", "", "", "", "", "",false,false); parameters.push_back(pinputdir); CommandParameter poutputdir("outputdir", "String", "", "", "", "", "",false,false); parameters.push_back(poutputdir); + CommandParameter pgroups("groups", "String", "", "", "", "", "",false,false); parameters.push_back(pgroups); + CommandParameter pshared("shared", "InputTypes", "", "", "none", "none", "none",false,true); parameters.push_back(pshared); vector myArray; for (int i = 0; i < parameters.size(); i++) { myArray.push_back(parameters[i].name); } @@ -90,8 +93,27 @@ KruskalWallisCommand::KruskalWallisCommand(string option) { for (it = parameters.begin(); it != parameters.end(); it++) { if (validParameter.isValidParameter(it->first, myArray, it->second) != true) { abort = true; } } - - + + //get shared file + sharedfile = validParameter.validFile(parameters, "shared", true); + if (sharedfile == "not open") { sharedfile = ""; abort = true; } + else if (sharedfile == "not found") { + //if there is a current shared file, use it + sharedfile = m->getSharedFile(); + if (sharedfile != "") { m->mothurOut("Using " + sharedfile + " as input file for the shared parameter."); m->mothurOutEndLine(); } + else { m->mothurOut("You have no current sharedfile and the shared parameter is required."); m->mothurOutEndLine(); abort = true; } + }else { m->setSharedFile(sharedfile); } + + //if the user changes the output directory command factory will send this info to us in the output parameter + outputDir = validParameter.validFile(parameters, "outputdir", false); if (outputDir == "not found"){ outputDir = m->hasPath(sharedfile); } + + groups = validParameter.validFile(parameters, "groups", false); + if (groups == "not found") { groups = ""; } + else { + m->splitAtDash(groups, Groups); + } + m->setGroups(Groups); + //if the user changes the input directory command factory will send this info to us in the output parameter string inputDir = validParameter.validFile(parameters, "inputdir", false); if (inputDir == "not found"){ inputDir = ""; } @@ -123,17 +145,37 @@ int KruskalWallisCommand::execute(){ try { if (abort == true) { if (calledHelp) { return 0; } return 2; } + InputData* input = new InputData(sharedfile, "sharedfile"); + vector lookup = input->getSharedRAbundVectors(); + string lastLabel = lookup[0]->getLabel(); + + + //if the users enters label "0.06" and there is no "0.06" in their file use the next lowest label. + set processedLabels; + set userLabels = labels; + + ofstream out; + string outputFileName = outputDir + m->getRootName(m->getSimpleName(sharedfile)) + getOutputFileNameTag("summary"); + m->openOutputFile(outputFileName, out); + outputNames.push_back(outputFileName); outputTypes["summary"].push_back(outputFileName); + out.setf(ios::fixed, ios::floatfield); out.setf(ios::showpoint); + out << "H\tpvalue\n"; + //math goes here - int N; //= thisLookUp.size(); + int N = m->getNumGroups(); double H; double tmp = 0.0; vector vec; + vector groups = m->getGroups(); string group; int count; double sum; //merge all groups into a vector + + + //rank function here assignRank(vec); @@ -141,7 +183,7 @@ int KruskalWallisCommand::execute(){ for (int i=0;i &vec) { try { double rank = 1; - double numRanks, avgRank; + double numRanks, avgRank, j; vector::iterator it, oldit; sort (vec.begin(), vec.end(), comparevalue); @@ -186,22 +228,26 @@ void KruskalWallisCommand::assignRank(vector &vec) { while ( it != vec.end() ) { j = rank; oldit = it; - if (!equalvalue(*it, *it+1)) { *it->rank = rank; rank++; it++; } + if (!equalvalue(*it, *(it+1))) { + (*it).rank = rank; + rank = rank+1; + it++; } else { - while(equalrank(*it, *it+1)) { - j = j + (j+1.0); + while(equalrank(*it, *(it+1))) { + j = j + (j+1); rank++; it++; } numRanks = double (distance(oldit, it)); avgRank = j / numRanks; while(oldit != it) { - *oldit->rank = avgRank; + (*oldit).rank = avgRank; oldit++; } } } + } catch(exception& e) { @@ -211,7 +257,9 @@ void KruskalWallisCommand::assignRank(vector &vec) { } //********************************************************************************************************************** - +void KruskalWallisCommand::assignValue(vector &vec) { + +} //********************************************************************************************************************** //********************************************************************************************************************** //********************************************************************************************************************** \ No newline at end of file