]> git.donarmstrong.com Git - mothur.git/blobdiff - pcoacommand.cpp
indicator command
[mothur.git] / pcoacommand.cpp
index 6ebf6536e70042941fe4d4ec401f7035949da66c..20e8e1be712765513c1f581b4e94536207f4f773 100644 (file)
@@ -37,7 +37,7 @@ string PCOACommand::getHelpString(){
                helpString += "The phylip parameter allows you to enter your distance file.";
                helpString += "The metric parameter allows indicate you if would like the pearson correlation coefficient calculated. Default=True"; 
                helpString += "Example pcoa(phylip=yourDistanceFile).\n";
-               helpString += "Note: No spaces between parameter labels (i.e. phylip), '=' and parameters (i.e.yourDistanceFile).\n\n";
+               helpString += "Note: No spaces between parameter labels (i.e. phylip), '=' and parameters (i.e.yourDistanceFile).\n";
                return helpString;
        }
        catch(exception& e) {
@@ -69,6 +69,7 @@ PCOACommand::PCOACommand(string option)  {
                
                //allow user to run help
                if(option == "help") { help(); abort = true; calledHelp = true; }
+               else if(option == "citation") { citation(); abort = true; calledHelp = true;}
                
                else {
                        vector<string> myArray = setParameters();
@@ -110,7 +111,7 @@ PCOACommand::PCOACommand(string option)  {
                                phylipfile = m->getPhylipFile(); 
                                if (phylipfile != "") { m->mothurOut("Using " + phylipfile + " as input file for the phylip parameter."); m->mothurOutEndLine(); }
                                else {  m->mothurOut("You have no current phylip file and the phylip parameter is required."); m->mothurOutEndLine(); abort = true; }
-                       }       
+                       }else { m->setPhylipFile(phylipfile); } 
                        
                        filename = phylipfile;  
                        
@@ -157,7 +158,7 @@ int PCOACommand::execute(){
                vector<vector<double> > G = D;
                //vector<vector<double> > copy_G;
                                
-               m->mothurOut("\nProcessing...\n\n");
+               m->mothurOut("\nProcessing...\n");
                
                for(int count=0;count<2;count++){
                        linearCalc.recenter(offset, D, G);              if (m->control_pressed) { return 0; }