]> git.donarmstrong.com Git - mothur.git/blobdiff - screenseqscommand.h
fixed bug with trim.flows that was adding flow files names to the .flow.files file...
[mothur.git] / screenseqscommand.h
index 602326c42e2ff75afbeb8050479cf7e188b8b634..87c8beef870b82a95f79bfddcdacba8ab2a1d47e 100644 (file)
@@ -23,7 +23,9 @@ public:
        string getCommandName()                 { return "screen.seqs";                         }
        string getCommandCategory()             { return "Sequence Processing";         }
        string getHelpString(); 
-       
+       string getCitation() { return "http://www.mothur.org/wiki/Screen.seqs"; }
+       string getDescription()         { return "enables you to keep sequences that fulfill certain user defined criteria"; }
+
        int execute(); 
        void help() { m->mothurOut(getHelpString()); }  
        
@@ -31,9 +33,9 @@ public:
 private:
 
        struct linePair {
-               unsigned long int start;
-               unsigned long int end;
-               linePair(unsigned long int i, unsigned long int j) : start(i), end(j) {}
+               unsigned long long start;
+               unsigned long long end;
+               linePair(unsigned long long i, unsigned long long j) : start(i), end(j) {}
        };
 
        vector<int> processIDS;   //processid
@@ -48,7 +50,7 @@ private:
        int createProcesses(string, string, string, set<string>&);
        
        #ifdef USE_MPI
-       int driverMPI(int, int, MPI_File&, MPI_File&, MPI_File&, vector<unsigned long int>&, set<string>&);
+       int driverMPI(int, int, MPI_File&, MPI_File&, MPI_File&, vector<unsigned long long>&, set<string>&);
        #endif
 
        bool abort;
@@ -59,7 +61,7 @@ private:
        map<string, int> nameMap;
        int readNames();
        
-       int getSummary(vector<unsigned long int>&);
+       int getSummary(vector<unsigned long long>&);
        int createProcessesCreateSummary(vector<int>&, vector<int>&, vector<int>&, vector<int>&, vector<int>&, string);
        int driverCreateSummary(vector<int>&, vector<int>&, vector<int>&, vector<int>&, vector<int>&, string, linePair*);       
 };