]> git.donarmstrong.com Git - mothur.git/blob - libshuffcommand.cpp
fixed bug in read.tree
[mothur.git] / libshuffcommand.cpp
1 /*
2  *  libshuffcommand.cpp
3  *  Mothur
4  *
5  *  Created by Sarah Westcott on 3/9/09.
6  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
7  *
8  */
9
10 #include "libshuffcommand.h"
11
12 //**********************************************************************************************************************
13
14
15 LibShuffCommand::LibShuffCommand(){
16         try {
17                 //globaldata = GlobalData::getInstance();
18                 
19         }
20         catch(exception& e) {
21                 cout << "Standard Error: " << e.what() << " has occurred in the LibShuffCommand class Function LibShuffCommand. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
22                 exit(1);
23         }
24         catch(...) {
25                 cout << "An unknown error has occurred in the LibShuffCommand class function LibShuffCommand. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
26                 exit(1);
27         }       
28                         
29 }
30
31 //**********************************************************************************************************************
32
33 LibShuffCommand::~LibShuffCommand(){
34         
35 }
36
37 //**********************************************************************************************************************
38
39 int LibShuffCommand::execute(){
40         try {
41                 return 0;
42         }
43         catch(exception& e) {
44                 cout << "Standard Error: " << e.what() << " has occurred in the LibShuffCommand class Function execute. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
45                 exit(1);
46         }
47         catch(...) {
48                 cout << "An unknown error has occurred in the LibShuffCommand class function execute. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
49                 exit(1);
50         }       
51 }
52
53 //**********************************************************************************************************************