]> git.donarmstrong.com Git - mothur.git/blobdiff - mothur.h
added paralellization for windows to dist.seqs and summary.seqs
[mothur.git] / mothur.h
index 97a104398fb584d2d8371e0f9bca440d4aea1f8b..f8ec32363516bcc6543569b57f313505796acef7 100644 (file)
--- a/mothur.h
+++ b/mothur.h
@@ -72,6 +72,8 @@
        #include <windows.h>
        #include <psapi.h>
        #include <direct.h>
+       #include <tchar.h>
+
 #endif
 
 using namespace std;
@@ -125,6 +127,15 @@ struct distlinePair {
        int end;
        
 };
+/************************************************************/
+struct seqPriorityNode {
+       int numIdentical;
+       string seq;
+       string name;
+       seqPriorityNode() {}
+       seqPriorityNode(int n, string s, string nm) : numIdentical(n), seq(s), name(nm) {}
+       ~seqPriorityNode() {}
+};
 /***************************************************************/
 struct spearmanRank {
        string name;
@@ -138,6 +149,11 @@ inline bool compareSpearman(spearmanRank left, spearmanRank right){
        return (left.score > right.score);      
 } 
 //********************************************************************************************************************
+//sorts highest to lowest
+inline bool compareSeqPriorityNodes(seqPriorityNode left, seqPriorityNode right){
+       return (left.numIdentical > right.numIdentical);        
+} 
+//********************************************************************************************************************
 //sorts lowest to highest
 inline bool compareSpearmanReverse(spearmanRank left, spearmanRank right){
        return (left.score < right.score);      
@@ -239,5 +255,15 @@ string toString(const T&x, int i){
 }
 //**********************************************************************************************************************
 
+template<class T>
+T fromString(const string& s){
+       istringstream stream (s);
+       T t;
+       stream >> t;
+       return t;
+}
+
+//**********************************************************************************************************************
+
 #endif