X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=pintail.cpp;h=b7e5b5fb137fa45b977766c713efafb9bee03cef;hb=db2df3a6a0e6354a666472ede1de74642cfeb06b;hp=a204294f515ee17f4e8e62f0045d8c67dfe6e406;hpb=dbd5da8043df1cb9f5ff7c6ddb5f550ea49b52c2;p=mothur.git diff --git a/pintail.cpp b/pintail.cpp index a204294..b7e5b5f 100644 --- a/pintail.cpp +++ b/pintail.cpp @@ -19,6 +19,8 @@ Pintail::~Pintail() { try { for (int i = 0; i < querySeqs.size(); i++) { delete querySeqs[i]; } for (int i = 0; i < templateSeqs.size(); i++) { delete templateSeqs[i]; } + + if (processors != 1) { for (int i = 0; i < bestfit.size(); i++) { delete bestfit[i]; } } } catch(exception& e) { errorOut(e, "Pintail", "~Pintail"); @@ -39,6 +41,9 @@ void Pintail::print(ostream& out) { else { chimera = "No"; } out << querySeqs[i]->getName() << '\t' << "div: " << deviation[i] << "\tstDev: " << DE[i] << "\tchimera flag: " << chimera << endl; + if (chimera == "Yes") { + mothurOut(querySeqs[i]->getName() + "\tdiv: " + toString(deviation[i]) + "\tstDev: " + toString(DE[i]) + "\tchimera flag: " + chimera); mothurOutEndLine(); + } out << "Observed\t"; for (int j = 0; j < obsDistance[i].size(); j++) { out << obsDistance[i][j] << '\t'; } @@ -80,10 +85,11 @@ void Pintail::getChimeras() { windowSizes.resize(numSeqs, window); windowSizesTemplate.resize(templateSeqs.size(), window); windowsForeachQuery.resize(numSeqs); + h.resize(numSeqs); quantiles.resize(100); //one for every percent mismatch //break up file if needed - int linesPerProcess = processors / numSeqs; + int linesPerProcess = numSeqs / processors ; #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux) //find breakup of sequences for all times we will Parallelize @@ -113,71 +119,93 @@ void Pintail::getChimeras() { #endif distcalculator = new ignoreGaps(); - - + decalc = new DeCalculator(); + + decalc->setMask(seqMask); + + //find pairs if (processors == 1) { mothurOut("Finding closest sequence in template to each sequence... "); cout.flush(); bestfit = findPairs(lines[0]->start, lines[0]->end); - - //ex.align matches from wigeon -/*for (int m = 0; m < templateSeqs.size(); m++) { - if (templateSeqs[m]->getName() == "159481") { bestfit[17] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "100137") { bestfit[16] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "112956") { bestfit[15] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "102326") { bestfit[14] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "66229") { bestfit[13] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "206276") { bestfit[12] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "63607") { bestfit[11] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "7056") { bestfit[10] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "7088") { bestfit[9] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "17553") { bestfit[8] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "131723") { bestfit[7] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "69013") { bestfit[6] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "24543") { bestfit[5] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "27824") { bestfit[4] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "1456") { bestfit[3] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "1456") { bestfit[2] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "141312") { bestfit[1] = *(templateSeqs[m]); } - if (templateSeqs[m]->getName() == "141312") { bestfit[0] = *(templateSeqs[m]); } - - -}*/ - - for (int j = 0; j < bestfit.size(); j++) { + mothurOut("Done."); mothurOutEndLine(); + }else { createProcessesPairs(); } + + + for (int j = 0; j < bestfit.size(); j++) { //chops off beginning and end of sequences so they both start and end with a base - trimSeqs(querySeqs[j], bestfit[j], trimmed[j]); - } + ofstream out; + string s = querySeqs[j]->getName(); + + openOutputFile(s, out); + out << ">" << querySeqs[j]->getName() << endl; + out << querySeqs[j]->getAligned() << endl; + out.close(); + + string t =querySeqs[j]->getName() + ".ref"; + openOutputFile(t, out); + out << ">" << bestfit[j]->getName() << endl; + out << bestfit[j]->getAligned() << endl; + out.close(); + } + + + //find P + mothurOut("Getting conservation... "); cout.flush(); + if (consfile == "") { + mothurOut("Calculating probability of conservation for your template sequences. This can take a while... I will output the frequency of the highest base in each position to a .freq file so that you can input them using the conservation parameter next time you run this command. Providing the .freq file will improve speed. "); cout.flush(); + probabilityProfile = decalc->calcFreq(templateSeqs, templateFile); mothurOut("Done."); mothurOutEndLine(); + }else { probabilityProfile = readFreq(); } + + //make P into Q + for (int i = 0; i < probabilityProfile.size(); i++) { probabilityProfile[i] = 1 - probabilityProfile[i]; cout << i << '\t' << probabilityProfile[i] << endl; } + mothurOut("Done."); mothurOutEndLine(); + + //mask querys + for (int i = 0; i < querySeqs.size(); i++) { + //cout << querySeqs[i]->getName() << " before mask = " << querySeqs[i]->getAligned() << endl << endl; + decalc->runMask(querySeqs[i]); + //cout << querySeqs[i]->getName() << " after mask = " << querySeqs[i]->getAligned() << endl << endl; + } + + //mask templates + for (int i = 0; i < templateSeqs.size(); i++) { + decalc->runMask(templateSeqs[i]); + } + +//for (int i = 0; i < lines.size(); i++) { cout << "line pair " << i << " = " << lines[i]->start << '\t' << lines[i]->end << endl; } + + if (processors == 1) { + + for (int j = 0; j < bestfit.size(); j++) { + cout << querySeqs[j]->getName() << " after mask = " << querySeqs[j]->getAligned() << endl << endl; + cout << bestfit[j]->getName() << " after mask = " << bestfit[j]->getAligned() << endl << endl; + decalc->trimSeqs(querySeqs[j], bestfit[j], trimmed[j]); + } mothurOut("Finding window breaks... "); cout.flush(); for (int i = lines[0]->start; i < lines[0]->end; i++) { it = trimmed[i].begin(); -cout << "trimmed = " << it->first << '\t' << it->second << endl; - vector win = findWindows(querySeqs[i], it->first, it->second, windowSizes[i]); +cout << i << '\t' << "trimmed = " << it->first << '\t' << it->second << endl; + vector win = decalc->findWindows(querySeqs[i], it->first, it->second, windowSizes[i], increment); windowsForeachQuery[i] = win; } mothurOut("Done."); mothurOutEndLine(); }else { createProcessesSpots(); } - //find P - mothurOut("Getting conservation... "); cout.flush(); - if (consfile == "") { - mothurOut("Calculating probability of conservation for your template sequences. This can take a while... I will output the quantiles to a .prob file so that you can input them using the conservation parameter next time you run this command. Providing the .prob file will dramatically improve speed. "); cout.flush(); - probabilityProfile = calcFreq(templateSeqs); - mothurOut("Done."); mothurOutEndLine(); - }else { probabilityProfile = readFreq(); } - - //make P into Q - for (int i = 0; i < probabilityProfile.size(); i++) { probabilityProfile[i] = 1 - probabilityProfile[i]; } - mothurOut("Done."); mothurOutEndLine(); if (processors == 1) { mothurOut("Calculating observed distance... "); cout.flush(); for (int i = lines[0]->start; i < lines[0]->end; i++) { - cout << querySeqs[i]->getName() << '\t' << bestfit[i].getName() << " windows = " << windowsForeachQuery[i].size() << " size = " << windowSizes[i] << endl; - vector obsi = calcObserved(querySeqs[i], bestfit[i], windowsForeachQuery[i], windowSizes[i]); + cout << querySeqs[i]->getName() << '\t' << bestfit[i]->getName() << " windows = " << windowsForeachQuery[i].size() << " size = " << windowSizes[i] << endl; + vector obsi = decalc->calcObserved(querySeqs[i], bestfit[i], windowsForeachQuery[i], windowSizes[i]); + + for (int j = 0; j < obsi.size(); j++) { + cout << obsi[j] << '\t'; + } + cout << endl; obsDistance[i] = obsi; } mothurOut("Done."); mothurOutEndLine(); @@ -185,23 +213,31 @@ cout << "trimmed = " << it->first << '\t' << it->second << endl; mothurOut("Finding variability... "); cout.flush(); for (int i = lines[0]->start; i < lines[0]->end; i++) { - vector q = findQav(windowsForeachQuery[i], windowSizes[i]); + vector q = decalc->findQav(windowsForeachQuery[i], windowSizes[i], probabilityProfile); + Qav[i] = q; +cout << i+1 << endl; +for (int j = 0; j < Qav[i].size(); j++) { + cout << Qav[i][j] << '\t'; +} +cout << endl << endl; + } mothurOut("Done."); mothurOutEndLine(); mothurOut("Calculating alpha... "); cout.flush(); for (int i = lines[0]->start; i < lines[0]->end; i++) { - float alpha = getCoef(obsDistance[i], Qav[i]); - seqCoef.push_back(alpha); + float alpha = decalc->getCoef(obsDistance[i], Qav[i]); +cout << i+1 << "\tcoef = " << alpha << endl; + seqCoef[i] = alpha; } mothurOut("Done."); mothurOutEndLine(); mothurOut("Calculating expected distance... "); cout.flush(); for (int i = lines[0]->start; i < lines[0]->end; i++) { - vector exp = calcExpected(Qav[i], seqCoef[i]); + vector exp = decalc->calcExpected(Qav[i], seqCoef[i]); expectedDistance[i] = exp; } mothurOut("Done."); mothurOutEndLine(); @@ -209,11 +245,12 @@ cout << "trimmed = " << it->first << '\t' << it->second << endl; mothurOut("Finding deviation... "); cout.flush(); for (int i = lines[0]->start; i < lines[0]->end; i++) { - float de = calcDE(obsDistance[i], expectedDistance[i]); + float de = decalc->calcDE(obsDistance[i], expectedDistance[i]); DE[i] = de; - +cout << querySeqs[i]->getName() << '\t' << "de value = " << de << endl; it = trimmed[i].begin(); - float dist = calcDist(querySeqs[i], bestfit[i], it->first, it->second); + float dist = decalc->calcDist(querySeqs[i], bestfit[i], it->first, it->second); +cout << querySeqs[i]->getName() << '\t' << "dist value = " << dist << endl; deviation[i] = dist; } mothurOut("Done."); mothurOutEndLine(); @@ -230,7 +267,7 @@ cout << "trimmed = " << it->first << '\t' << it->second << endl; mothurOut("Calculating quantiles for your template. This can take a while... I will output the quantiles to a .quan file that you can input them using the quantiles parameter next time you run this command. Providing the .quan file will dramatically improve speed. "); cout.flush(); if (processors == 1) { - quantiles = getQuantiles(0, templateSeqs.size()); + quantiles = decalc->getQuantiles(templateSeqs, windowSizesTemplate, window, probabilityProfile, increment, 0, templateSeqs.size()); }else { createProcessesQuan(); } ofstream out4; @@ -281,38 +318,13 @@ cout << "trimmed = " << it->first << '\t' << it->second << endl; for (int i = 0; i < templateLines.size(); i++) { delete templateLines[i]; } delete distcalculator; + delete decalc; } catch(exception& e) { errorOut(e, "Pintail", "getChimeras"); exit(1); } } -//*************************************************************************************************************** -//num is query's spot in querySeqs -void Pintail::trimSeqs(Sequence* query, Sequence subject, map& trim) { - try { - - string q = query->getAligned(); - string s = subject.getAligned(); - - int front = 0; - for (int i = 0; i < q.length(); i++) { - if (isalpha(q[i]) && isalpha(s[i])) { front = i; break; } - } - - int back = 0; - for (int i = q.length(); i >= 0; i--) { - if (isalpha(q[i]) && isalpha(s[i])) { back = i; break; } - } - - trim[front] = back; - - } - catch(exception& e) { - errorOut(e, "Pintail", "trimSeqs"); - exit(1); - } -} //*************************************************************************************************************** @@ -323,6 +335,7 @@ vector Pintail::readFreq() { openInputFile(consfile, in); vector prob; + set h = decalc->getPos(); //positions of bases in masking sequence //read in probabilities and store in vector int pos; float num; @@ -331,8 +344,16 @@ vector Pintail::readFreq() { in >> pos >> num; - //do you want this spot - prob.push_back(num); + if (h.count(pos-1) > 0) { + float Pi; + Pi = (num - 0.25) / 0.75; + + //cannot have probability less than 0. + if (Pi < 0) { Pi = 0.0; } + + //do you want this spot + prob.push_back(Pi); + } gobble(in); } @@ -388,16 +409,17 @@ vector< vector > Pintail::readQuantiles() { } //*************************************************************************************************************** //calculate the distances from each query sequence to all sequences in the template to find the closest sequence -vector Pintail::findPairs(int start, int end) { +vector Pintail::findPairs(int start, int end) { try { - vector seqsMatches; seqsMatches.resize(end-start); + vector seqsMatches; for(int i = start; i < end; i++){ float smallest = 10000.0; Sequence query = *(querySeqs[i]); - + Sequence* match; + for(int j = 0; j < templateSeqs.size(); j++){ Sequence temp = *(templateSeqs[j]); @@ -406,10 +428,12 @@ vector Pintail::findPairs(int start, int end) { float dist = distcalculator->getDist(); if (dist < smallest) { - seqsMatches[i] = *(templateSeqs[j]); + match = templateSeqs[j]; smallest = dist; } } + + seqsMatches.push_back(match); } return seqsMatches; @@ -421,337 +445,160 @@ vector Pintail::findPairs(int start, int end) { } } -//*************************************************************************************************************** -//find the window breaks for each sequence - this is so you can move ahead by bases. -vector Pintail::findWindows(Sequence* query, int front, int back, int& size) { +/**************************************************************************************************/ + +void Pintail::createProcessesSpots() { try { +#if defined (__APPLE__) || (__MACH__) || (linux) || (__linux) + int process = 0; + vector processIDS; - vector win; - - int cutoff = back - front; //back - front - - //if window is set to default - if (size == 0) { if (cutoff > 1200) { size = 300; } - else{ size = (cutoff / 4); } } - else if (size > (cutoff / 4)) { - mothurOut("You have selected to large a window size for sequence " + query->getName() + ". I will choose an appropriate window size."); mothurOutEndLine(); - size = (cutoff / 4); - } - - string seq = query->getAligned().substr(front, cutoff); - - //count bases - int numBases = 0; - for (int l = 0; l < seq.length(); l++) { if (isalpha(seq[l])) { numBases++; } } - - //save start of seq - win.push_back(front); - - //move ahead increment bases at a time until all bases are in a window - int countBases = 0; - int totalBases = 0; //used to eliminate window of blanks at end of sequence + //loop through and create all the processes you want + while (process != processors) { + int pid = fork(); - seq = query->getAligned(); - for (int m = front; m < (back - size) ; m++) { - - //count number of bases you see - if (isalpha(seq[m])) { countBases++; totalBases++; } + if (pid > 0) { + processIDS.push_back(pid); + process++; + }else if (pid == 0){ - //if you have seen enough bases to make a new window - if (countBases >= increment) { - win.push_back(m); //save spot in alignment - countBases = 0; //reset bases you've seen in this window - } + for (int j = lines[process]->start; j < lines[process]->end; j++) { - //no need to continue if all your bases are in a window - if (totalBases == numBases) { break; } - } - - return win; - - } - catch(exception& e) { - errorOut(e, "Pintail", "findWindows"); - exit(1); - } -} + //chops off beginning and end of sequences so they both start and end with a base + map trim; + decalc->trimSeqs(querySeqs[j], bestfit[j], trim); + trimmed[j] = trim; + + } -//*************************************************************************************************************** -vector Pintail::calcObserved(Sequence* query, Sequence subject, vector window, int size) { - try { - - vector temp; -//cout << "query length = " << query->getAligned().length() << '\t' << " subject length = " << subject.getAligned().length() << endl; - for (int m = 0; m < window.size(); m++) { - - string seqFrag = query->getAligned().substr(window[m], size); - string seqFragsub = subject.getAligned().substr(window[m], size); - //cout << "start point = " << window[m] << " end point = " << window[m]+size << endl; - int diff = 0; - for (int b = 0; b < seqFrag.length(); b++) { - if (seqFrag[b] != seqFragsub[b]) { diff++; } - } - - //percentage of mismatched bases - float dist; - dist = diff / (float) seqFrag.length() * 100; + mothurOut("Finding window breaks for sequences " + toString(lines[process]->start) + " to " + toString(lines[process]->end)); mothurOutEndLine(); + for (int i = lines[process]->start; i < lines[process]->end; i++) { + it = trimmed[i].begin(); + windowsForeachQuery[i] = decalc->findWindows(querySeqs[i], it->first, it->second, windowSizes[i], increment); + } + mothurOut("Done finding window breaks for sequences " + toString(lines[process]->start) + " to " + toString(lines[process]->end)); mothurOutEndLine(); - temp.push_back(dist); - } - - return temp; - } - catch(exception& e) { - errorOut(e, "Pintail", "calcObserved"); - exit(1); - } -} -//*************************************************************************************************************** -float Pintail::calcDist(Sequence* query, Sequence subject, int front, int back) { - try { - - //so you only look at the trimmed part of the sequence - int cutoff = back - front; - - //from first startpoint with length back-front - string seqFrag = query->getAligned().substr(front, cutoff); - string seqFragsub = subject.getAligned().substr(front, cutoff); - - int diff = 0; - for (int b = 0; b < seqFrag.length(); b++) { - if (seqFrag[b] != seqFragsub[b]) { diff++; } - } - - //percentage of mismatched bases - float dist = diff / (float) seqFrag.length() * 100; + //write out data to file so parent can read it + ofstream out; + string s = toString(getpid()) + ".temp"; + openOutputFile(s, out); - return dist; - } - catch(exception& e) { - errorOut(e, "Pintail", "calcDist"); - exit(1); - } -} - -//*************************************************************************************************************** -vector Pintail::calcExpected(vector qav, float coef) { - try { - - //for each window - vector queryExpected; + //output windowsForeachQuery + for (int i = lines[process]->start; i < lines[process]->end; i++) { + out << windowsForeachQuery[i].size() << '\t'; + for (int j = 0; j < windowsForeachQuery[i].size(); j++) { + out << windowsForeachQuery[i][j] << '\t'; + } + out << endl; + } - for (int m = 0; m < qav.size(); m++) { + //output windowSizes + for (int i = lines[process]->start; i < lines[process]->end; i++) { + out << windowSizes[i] << '\t'; + } + out << endl; - float expected = qav[m] * coef; + //output trimmed values + for (int i = lines[process]->start; i < lines[process]->end; i++) { + it = trimmed[i].begin(); + + out << it->first << '\t' << it->second << endl; + } + out.close(); - queryExpected.push_back(expected); + exit(0); + }else { mothurOut("unable to spawn the necessary processes."); mothurOutEndLine(); exit(0); } } - - return queryExpected; - - } - catch(exception& e) { - errorOut(e, "Pintail", "calcExpected"); - exit(1); - } -} -//*************************************************************************************************************** -float Pintail::calcDE(vector obs, vector exp) { - try { - //for each window - float sum = 0.0; //sum = sum from 1 to m of (oi-ei)^2 - for (int m = 0; m < obs.size(); m++) { sum += ((obs[m] - exp[m]) * (obs[m] - exp[m])); } - - float de = sqrt((sum / (obs.size() - 1))); - - return de; - } - catch(exception& e) { - errorOut(e, "Pintail", "calcDE"); - exit(1); - } -} - -//*************************************************************************************************************** - -vector Pintail::calcFreq(vector seqs) { - try { - - vector prob; - string freqfile = getRootName(templateFile) + "prob"; - ofstream outFreq; - - openOutputFile(freqfile, outFreq); + //force parent to wait until all the processes are done + for (int i=0;igetAligned().length(); i++) { + //get data created by processes + for (int i=0;i freq; freq.resize(4,0); - int gaps = 0; + int size = lines[i]->end - lines[i]->start; + + int count = lines[i]->start; + for (int m = 0; m < size; m++) { + int num; + in >> num; + + vector win; int w; + for (int j = 0; j < num; j++) { + in >> w; + win.push_back(w); + } - //find the frequency of each nucleotide - for (int j = 0; j < seqs.size(); j++) { - - char value = seqs[j]->getAligned()[i]; + windowsForeachQuery[count] = win; + count++; + gobble(in); + } + + gobble(in); + count = lines[i]->start; + for (int m = 0; m < size; m++) { + int num; + in >> num; - if(toupper(value) == 'A') { freq[0]++; } - else if(toupper(value) == 'T' || toupper(value) == 'U') { freq[1]++; } - else if(toupper(value) == 'G') { freq[2]++; } - else if(toupper(value) == 'C') { freq[3]++; } - else { gaps++; } + windowSizes[count] = num; + count++; } - //find base with highest frequency - int highest = 0; - for (int m = 0; m < freq.size(); m++) { if (freq[m] > highest) { highest = freq[m]; } } - - float highFreq; - //subtract gaps to "ignore them" - if ( (seqs.size() - gaps) == 0 ) { highFreq = 1.0; } - else { highFreq = highest / (float) (seqs.size() - gaps); } - - float Pi; - Pi = (highFreq - 0.25) / 0.75; - - //cannot have probability less than 0. - if (Pi < 0) { Pi = 0.0; } - - //saves this for later - outFreq << i+1 << '\t' << Pi << endl; + gobble(in); - prob.push_back(Pi); - } - - outFreq.close(); - - return prob; - - } - catch(exception& e) { - errorOut(e, "Pintail", "calcFreq"); - exit(1); - } -} -//*************************************************************************************************************** -vector Pintail::findQav(vector window, int size) { - try { - vector averages; + count = lines[i]->start; + for (int m = 0; m < size; m++) { + int front, back; + in >> front >> back; - //for each window find average - for (int m = 0; m < window.size(); m++) { + map t; - float average = 0.0; + t[front] = back; - //while you are in the window for this sequence - for (int j = window[m]; j < (window[m]+size); j++) { average += probabilityProfile[j]; } + trimmed[count] = t; + count++; - average = average / size; - - //save this windows average - averages.push_back(average); - } - - return averages; - } - catch(exception& e) { - errorOut(e, "Pintail", "findQav"); - exit(1); - } -} + gobble(in); + } -//*************************************************************************************************************** -vector< vector > Pintail::getQuantiles(int start, int end) { - try { - vector< vector > quan; - - //percentage of mismatched pairs 1 to 100 - quan.resize(100); - - - //for each sequence - for(int i = start; i < end; i++){ - - mothurOut("Processing template sequence " + toString(i)); mothurOutEndLine(); - Sequence* query = templateSeqs[i]; - //compare to every other sequence in template - for(int j = 0; j < i; j++){ - - Sequence subject = *(templateSeqs[j]); - - map trim; - trimSeqs(query, subject, trim); - - it = trim.begin(); - int front = it->first; int back = it->second; - - //reset window for each new comparison - windowSizesTemplate[i] = window; - - vector win = findWindows(query, front, back, windowSizesTemplate[i]); - - vector obsi = calcObserved(query, subject, win, windowSizesTemplate[i]); - - vector q = findQav(win, windowSizesTemplate[i]); - - float alpha = getCoef(obsi, q); - - vector exp = calcExpected(q, alpha); - - float de = calcDE(obsi, exp); - - float dist = calcDist(query, subject, front, back); - - dist = ceil(dist); - - //dist-1 because vector indexes start at 0. - quan[dist-1].push_back(de); - - } + in.close(); + remove(s.c_str()); } - - return quan; - - } - catch(exception& e) { - errorOut(e, "Pintail", "findQav"); - exit(1); - } -} - -//*************************************************************************************************************** -float Pintail::getCoef(vector obs, vector qav) { - try { + - //find average prob for this seqs windows - float probAverage = 0.0; - for (int j = 0; j < qav.size(); j++) { probAverage += qav[j]; } - probAverage = probAverage / (float) qav.size(); - - //find observed average - float obsAverage = 0.0; - for (int j = 0; j < obs.size(); j++) { obsAverage += obs[j]; } - obsAverage = obsAverage / (float) obs.size(); - +#else + for (int j = 0; j < bestfit.size(); j++) { + //chops off beginning and end of sequences so they both start and end with a base + decalc->trimSeqs(querySeqs[j], bestfit[j], trimmed[j]); + } - float coef = obsAverage / probAverage; - - return coef; + for (int i = lines[0]->start; i < lines[0]->end; i++) { + it = trimmed[i].begin(); + map win = decalc->findWindows(querySeqs[i], it->first, it->second, windowSizes[i], increment); + windows[i] = win; + } + +#endif } catch(exception& e) { - errorOut(e, "Pintail", "getCoef"); + errorOut(e, "Pintail", "createProcessesSpots"); exit(1); } } /**************************************************************************************************/ -void Pintail::createProcessesSpots() { +void Pintail::createProcessesPairs() { try { #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux) int process = 0; vector processIDS; - vector< vector > win; win.resize(querySeqs.size()); //loop through and create all the processes you want while (process != processors) { @@ -763,24 +610,22 @@ void Pintail::createProcessesSpots() { }else if (pid == 0){ mothurOut("Finding pairs for sequences " + toString(lines[process]->start) + " to " + toString(lines[process]->end)); mothurOutEndLine(); - vector tempbest; - tempbest = findPairs(lines[process]->start, lines[process]->end); - int count = 0; - for (int i = lines[process]->start; i < lines[process]->end; i++) { - bestfit[i] = tempbest[count]; - - //chops off beginning and end of sequences so they both start and end with a base - trimSeqs(querySeqs[i], bestfit[i], trimmed[i]); - count++; - } + bestfit = findPairs(lines[process]->start, lines[process]->end); mothurOut("Done finding pairs for sequences " + toString(lines[process]->start) + " to " + toString(lines[process]->end)); mothurOutEndLine(); - mothurOut("Finding window breaks for sequences " + toString(lines[process]->start) + " to " + toString(lines[process]->end)); mothurOutEndLine(); - for (int i = lines[process]->start; i < lines[process]->end; i++) { - vector temp = findWindows(querySeqs[i], it->first, it->second, windowSizes[i]); - win[i] = temp; + //write out data to file so parent can read it + ofstream out; + string s = toString(getpid()) + ".temp"; + openOutputFile(s, out); + + //output range and size + out << bestfit.size() << endl; + + //output pairs + for (int i = 0; i < bestfit.size(); i++) { + out << ">" << bestfit[i]->getName() << endl << bestfit[i]->getAligned() << endl; } - mothurOut("Done finding window breaks for sequences " + toString(lines[process]->start) + " to " + toString(lines[process]->end)); mothurOutEndLine(); + out.close(); exit(0); }else { mothurOut("unable to spawn the necessary processes."); mothurOutEndLine(); exit(0); } @@ -792,29 +637,39 @@ void Pintail::createProcessesSpots() { wait(&temp); } - windowsForeachQuery = win; + //get data created by processes + for (int i=0;i> size; gobble(in); + + //get pairs + int count = lines[i]->start; + for (int m = 0; m < size; m++) { + Sequence* temp = new Sequence(in); + bestfit[count] = temp; + + count++; + gobble(in); + } + + in.close(); + remove(s.c_str()); + } + + #else bestfit = findPairs(lines[0]->start, lines[0]->end); - for (int j = 0; j < bestfit.size(); j++) { - //chops off beginning and end of sequences so they both start and end with a base - trimSeqs(querySeqs[j], bestfit[j], j); - } - - for (int i = lines[0]->start; i < lines[0]->end; i++) { - it = trimmed[i].begin(); - map win = findWindows(querySeqs[i], it->first, it->second, windowSizes[i]); - windows[i] = win; - } - #endif } catch(exception& e) { - errorOut(e, "Pintail", "createProcessesSpots"); + errorOut(e, "Pintail", "createProcessesPairs"); exit(1); } } - - /**************************************************************************************************/ void Pintail::createProcesses() { @@ -823,12 +678,6 @@ void Pintail::createProcesses() { int process = 0; vector processIDS; - vector< vector > exp; exp.resize(querySeqs.size()); - vector de; de.resize(querySeqs.size()); - vector< vector > obs; obs.resize(querySeqs.size()); - vector dev; dev.resize(querySeqs.size()); - - //loop through and create all the processes you want while (process != processors) { int pid = fork(); @@ -841,29 +690,71 @@ void Pintail::createProcesses() { mothurOut("Calculating observed, expected and de values for sequences " + toString(lines[process]->start) + " to " + toString(lines[process]->end)); mothurOutEndLine(); for (int i = lines[process]->start; i < lines[process]->end; i++) { - vector obsi = calcObserved(querySeqs[i], bestfit[i], windowsForeachQuery[i], windowSizes[i]); - obs[i] = obsi; + vector obsi = decalc->calcObserved(querySeqs[i], bestfit[i], windowsForeachQuery[i], windowSizes[i]); + obsDistance[i] = obsi; //calc Qav - vector q = findQav(windowsForeachQuery[i], windowSizes[i]); + vector q = decalc->findQav(windowsForeachQuery[i], windowSizes[i], probabilityProfile); //get alpha - float alpha = getCoef(obsDistance[i], q); + float alpha = decalc->getCoef(obsDistance[i], q); //find expected - vector exp = calcExpected(q, alpha); + vector exp = decalc->calcExpected(q, alpha); expectedDistance[i] = exp; //get de and deviation - float dei = calcDE(obsi, exp); - de[i] = dei; + float dei = decalc->calcDE(obsi, exp); + DE[i] = dei; it = trimmed[i].begin(); - float dist = calcDist(querySeqs[i], bestfit[i], it->first, it->second); - dev[i] = dist; + float dist = decalc->calcDist(querySeqs[i], bestfit[i], it->first, it->second); + deviation[i] = dist; } mothurOut("Done calculating observed, expected and de values for sequences " + toString(lines[process]->start) + " to " + toString(lines[process]->end)); mothurOutEndLine(); + //write out data to file so parent can read it + ofstream out; + string s = toString(getpid()) + ".temp"; + openOutputFile(s, out); + + int size = lines[process]->end - lines[process]->start; + out << size << endl; + + //output observed distances + for (int i = lines[process]->start; i < lines[process]->end; i++) { + out << obsDistance[i].size() << '\t'; + for (int j = 0; j < obsDistance[i].size(); j++) { + out << obsDistance[i][j] << '\t'; + } + out << endl; + } + + + //output expected distances + for (int i = lines[process]->start; i < lines[process]->end; i++) { + out << expectedDistance[i].size() << '\t'; + for (int j = 0; j < expectedDistance[i].size(); j++) { + out << expectedDistance[i][j] << '\t'; + } + out << endl; + } + + + //output de values + for (int i = lines[process]->start; i < lines[process]->end; i++) { + out << DE[i] << '\t'; + } + out << endl; + + //output de values + for (int i = lines[process]->start; i < lines[process]->end; i++) { + out << deviation[i] << '\t'; + } + out << endl; + + out.close(); + exit(0); }else { mothurOut("unable to spawn the necessary processes."); mothurOutEndLine(); exit(0); } } @@ -874,15 +765,82 @@ void Pintail::createProcesses() { wait(&temp); } - obsDistance = obs; - expectedDistance = exp; - DE = de; - deviation = dev; - + //get data created by processes + for (int i=0;i> size; gobble(in); + + //get observed distances + int count = lines[i]->start; + for (int m = 0; m < size; m++) { + int num; + in >> num; + + vector obs; float w; + for (int j = 0; j < num; j++) { + in >> w; + obs.push_back(w); + } + + obsDistance[count] = obs; + count++; + gobble(in); + } + + gobble(in); + + //get expected distances + count = lines[i]->start; + for (int m = 0; m < size; m++) { + int num; + in >> num; + + vector exp; float w; + for (int j = 0; j < num; j++) { + in >> w; + exp.push_back(w); + } + + expectedDistance[count] = exp; + count++; + gobble(in); + } + + gobble(in); + + count = lines[i]->start; + for (int m = 0; m < size; m++) { + float num; + in >> num; + + DE[count] = num; + count++; + } + + gobble(in); + + count = lines[i]->start; + for (int m = 0; m < size; m++) { + float num; + in >> num; + + deviation[count] = num; + count++; + } + + in.close(); + remove(s.c_str()); + } + + #else mothurOut("Calculating observed distance... "); cout.flush(); for (int i = lines[0]->start; i < lines[0]->end; i++) { - vector obsi = calcObserved(querySeqs[i], bestfit[i], windows[i], windowSizes[i]); + vector obsi = decalc->calcObserved(querySeqs[i], bestfit[i], windows[i], windowSizes[i]); obsDistance[i] = obsi; } mothurOut("Done."); mothurOutEndLine(); @@ -891,7 +849,7 @@ void Pintail::createProcesses() { mothurOut("Finding variability... "); cout.flush(); for (int i = lines[0]->start; i < lines[0]->end; i++) { - vector q = findQav(windows[i], windowSizes[i]); + vector q = decalc->findQav(windows[i], windowSizes[i], probabilityProfile, h[i]); Qav[i] = q; } mothurOut("Done."); mothurOutEndLine(); @@ -900,7 +858,7 @@ void Pintail::createProcesses() { mothurOut("Calculating alpha... "); cout.flush(); for (int i = lines[0]->start; i < lines[0]->end; i++) { - float alpha = getCoef(obsDistance[i], Qav[i]); + float alpha = decalc->getCoef(obsDistance[i], Qav[i]); seqCoef.push_back(alpha); } mothurOut("Done."); mothurOutEndLine(); @@ -909,7 +867,7 @@ void Pintail::createProcesses() { mothurOut("Calculating expected distance... "); cout.flush(); for (int i = lines[0]->start; i < lines[0]->end; i++) { - vector exp = calcExpected(Qav[i], seqCoef[i]); + vector exp = decalc->calcExpected(Qav[i], seqCoef[i]); expectedDistance[i] = exp; } mothurOut("Done."); mothurOutEndLine(); @@ -918,11 +876,11 @@ void Pintail::createProcesses() { mothurOut("Finding deviation... "); cout.flush(); for (int i = lines[0]->start; i < lines[0]->end; i++) { - float de = calcDE(obsDistance[i], expectedDistance[i]); + float de = decalc->calcDE(obsDistance[i], expectedDistance[i]); DE[i] = de; it = trimmed[i].begin(); - float dist = calcDist(querySeqs[i], bestfit[i], it->first, it->second); + float dist = decalc->calcDist(querySeqs[i], bestfit[i], it->first, it->second); deviation[i] = dist; } mothurOut("Done."); mothurOutEndLine(); @@ -943,7 +901,6 @@ void Pintail::createProcessesQuan() { #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux) int process = 0; vector processIDS; - vector< vector > quan; quan.resize(100); //loop through and create all the processes you want while (process != processors) { @@ -954,19 +911,25 @@ void Pintail::createProcessesQuan() { process++; }else if (pid == 0){ - vector< vector > q = getQuantiles(templateLines[process]->start, templateLines[process]->end); + quantiles = decalc->getQuantiles(templateSeqs, windowSizesTemplate, window, probabilityProfile, increment, templateLines[process]->start, templateLines[process]->end); - for (int i = 0; i < q.size(); i++) { - //put all values of q[i] into quan[i] - quan[i].insert(quan[i].begin(), q[i].begin(), q[i].end()); - } + //write out data to file so parent can read it + ofstream out; + string s = toString(getpid()) + ".temp"; + openOutputFile(s, out); - for (int i = 0; i < quan.size(); i++) { - cout << i+1 << '\t'; - for (int j = 0; j < quan[i].size(); j++) { cout << quan[i][j] << '\t'; } - cout << endl; + + //output observed distances + for (int i = 0; i < quantiles.size(); i++) { + out << quantiles[i].size() << '\t'; + for (int j = 0; j < quantiles[i].size(); j++) { + out << quantiles[i][j] << '\t'; + } + out << endl; } - + + out.close(); + exit(0); }else { mothurOut("unable to spawn the necessary processes."); mothurOutEndLine(); exit(0); } } @@ -977,9 +940,42 @@ void Pintail::createProcessesQuan() { wait(&temp); } - quantiles = quan; + //get data created by processes + for (int i=0;i > quan; quan.resize(100); + + //get quantiles + for (int m = 0; m < quan.size(); m++) { + int num; + in >> num; + + vector q; float w; + for (int j = 0; j < num; j++) { + in >> w; + q.push_back(w); + } + + quan[m] = q; + gobble(in); + } + + + //save quan in quantiles + for (int i = 0; i < quan.size(); i++) { + //put all values of q[i] into quan[i] + quantiles[i].insert(quantiles[i].begin(), quan[i].begin(), quan[i].end()); + } + + in.close(); + remove(s.c_str()); + } + #else - quantiles = getQuantiles(0, templateSeqs.size()); + quantiles = decalc->getQuantiles(templateSeqs, windowSizesTemplate, window, probabilityProfile, increment, 0, templateSeqs.size()); #endif } catch(exception& e) {