]> git.donarmstrong.com Git - mothur.git/blobdiff - reversecommand.cpp
added set.dir command and modified commands to redirect input and output, removed...
[mothur.git] / reversecommand.cpp
index 37e95685430184760cd0919c18a1cfeea2ec4c42..274240158068655fcbbc501d81e335238966edfa 100644 (file)
@@ -22,24 +22,45 @@ ReverseSeqsCommand::ReverseSeqsCommand(string option){
                
                else {
                        //valid paramters for this command
-                       string Array[] =  {"fasta"};
+                       string Array[] =  {"fasta", "outputdir","inputdir"};
                        vector<string> myArray (Array, Array+(sizeof(Array)/sizeof(string)));
                        
                        OptionParser parser(option);
                        map<string,string> parameters = parser.getParameters();
                        
                        ValidParameters validParameter;
-               
+                       map<string,string>::iterator it;
+                       
                        //check to make sure all parameters are valid for command
-                       for (map<string,string>::iterator it = parameters.begin(); it != parameters.end(); it++) { 
+                       for (it = parameters.begin(); it != parameters.end(); it++) { 
                                if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {  abort = true;  }
                        }
                        
+                       //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 = "";          }
+                       else {
+                               string path;
+                               it = parameters.find("fasta");
+                               //user has given a template file
+                               if(it != parameters.end()){ 
+                                       path = hasPath(it->second);
+                                       //if the user has not given a path then, add inputdir. else leave path alone.
+                                       if (path == "") {       parameters["fasta"] = inputDir + it->second;            }
+                               }
+                       }
+
                        //check for required parameters
                        fasta = validParameter.validFile(parameters, "fasta", true);
                        if (fasta == "not open") { abort = true; }
                        else if (fasta == "not found") { fasta = ""; mothurOut("fasta is a required parameter for the reverse.seqs command."); mothurOutEndLine(); abort = true;  }     
                        
+                       //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 = ""; 
+                               outputDir += hasPath(fasta); //if user entered a file with a path then preserve it      
+                       }
+
                }
        }
        catch(exception& e) {
@@ -78,7 +99,7 @@ int ReverseSeqsCommand::execute(){
                openInputFile(fasta, inFASTA);
                
                ofstream outFASTA;
-               string reverseFile = getRootName(fasta) + "rc" + getExtension(fasta);
+               string reverseFile = outputDir + getRootName(getSimpleName(fasta)) + "rc" + getExtension(fasta);
                openOutputFile(reverseFile, outFASTA);
                
                while(!inFASTA.eof()){