X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=globaldata.hpp;h=f97d98b311ff46f21d5479c15795eaa3e69fd892;hb=dc874a77f24b3808775e2ce7e39595c647a07f82;hp=3b688b43457d318c8f73471bb088d7ad5de1affb;hpb=c5c7502f435e1413c19e373dab1dfebcaa67588d;p=mothur.git diff --git a/globaldata.hpp b/globaldata.hpp index 3b688b4..f97d98b 100644 --- a/globaldata.hpp +++ b/globaldata.hpp @@ -23,6 +23,7 @@ class GroupMap; class TreeMap; class SAbundVector; class RAbundVector; +class SequenceDB; class GlobalData { public: @@ -35,10 +36,12 @@ public: vector gTree; SharedListVector* gSharedList; SAbundVector* sabund; + RAbundVector* rabund; GroupMap* gGroupmap; FullMatrix* gMatrix; TreeMap* gTreemap; - string inputFileName, helpRequest, commandName; + SequenceDB* gSequenceDB; + string inputFileName, helpRequest, commandName, vertical, argv; bool allLines; vector Estimators, Groups; //holds estimators to be used set lines; //hold lines to be used @@ -54,6 +57,8 @@ public: string getGroupFile(); string getOrderFile(); string getFastaFile(); + string getNexusFile(); + string getClustalFile(); string getTreeFile(); string getSharedFile(); string getCutOff(); @@ -70,18 +75,43 @@ public: string getStep(); string getForm(); string getSorted(); - string getScaler(); + string getCountEnds(); + string getProcessors(); + string getSize(); + string getCandidateFile(); + string getSearch(); + string getKSize(); + string getAlign(); + string getMatch(); + string getMismatch(); + string getGapopen(); + string getGapextend(); + string getVertical(); + string getTrump(); + string getSoft(); + string getHard(); + string getScale(); + string getStartPos(); + string getEndPos(); + string getMaxAmbig(); + string getMaxHomoPolymer(); + string getMinLength(); + string getMaxLength(); void setListFile(string); + void setGroupFile(string file); void setPhylipFile(string); void setColumnFile(string); void setNameFile(string); void setRabundFile(string); void setSabundFile(string); + void setSharedFile(string); void setFormat(string); void setRandomTree(string); void setGroups(string); void setCalc(string); + void setCountEnds(string); + void setProcessors(string); void clear(); void clearLabels(); @@ -89,15 +119,16 @@ public: void parseGlobalData(string, string); - void parseTreeFile(); //parses through tree file to find names of nodes and number of them + void parseTreeFile(); //parses through tree file to find names of nodes and number of them //this is required in case user has sequences in the names file that are //not included in the tree. //only takes names from the first tree in the tree file and assumes that all trees use the same names. private: - string phylipfile, columnfile, listfile, rabundfile, sabundfile, namefile, groupfile, orderfile, fastafile, treefile, sharedfile, line, label, randomtree, groups; - string cutoff, format, precision, method, fileroot, iters, jumble, freq, calc, abund, step, form, sorted, scaler; + + string phylipfile, columnfile, listfile, rabundfile, sabundfile, namefile, groupfile, orderfile, fastafile, nexusfile, clustalfile, treefile, sharedfile, line, label, randomtree, groups, cutoff, format, precision, method, fileroot, iters, jumble, freq, calc, abund, step, form, sorted, trump, soft, hard, scale, countends, processors, candidatefile, search, ksize, align, match, size, mismatch, gapopen, gapextend, minLength, maxLength, startPos, endPos, maxAmbig, maxHomoPolymer; + static GlobalData* _uniqueInstance; GlobalData( const GlobalData& ); // Disable copy constructor