]> git.donarmstrong.com Git - mothur.git/blob - clustersplitcommand.cpp
fixed phylip convert for cluster.split command
[mothur.git] / clustersplitcommand.cpp
1 /*
2  *  clustersplitcommand.cpp
3  *  Mothur
4  *
5  *  Created by westcott on 5/19/10.
6  *  Copyright 2010 Schloss Lab. All rights reserved.
7  *
8  */
9
10 #include "clustersplitcommand.h"
11 #include "readcluster.h"
12 #include "splitmatrix.h"
13 #include "readphylip.h"
14 #include "readcolumn.h"
15 #include "readmatrix.hpp"
16 #include "inputdata.h"
17
18 //**********************************************************************************************************************
19 //This function checks to make sure the cluster command has no errors and then clusters based on the method chosen.
20 ClusterSplitCommand::ClusterSplitCommand(string option)  {
21         try{
22                 globaldata = GlobalData::getInstance();
23                 abort = false;
24                 
25                 //allow user to run help
26                 if(option == "help") { help(); abort = true; }
27                 
28                 else {
29                         //valid paramters for this command
30                         string Array[] =  {"phylip","column","name","cutoff","precision","method","showabund","timing","hard","processors","splitcutoff","outputdir","inputdir"};
31                         vector<string> myArray (Array, Array+(sizeof(Array)/sizeof(string)));
32                         
33                         OptionParser parser(option);
34                         map<string,string> parameters = parser.getParameters();
35                         
36                         ValidParameters validParameter;
37                 
38                         //check to make sure all parameters are valid for command
39                         map<string,string>::iterator it;
40                         for (it = parameters.begin(); it != parameters.end(); it++) { 
41                                 if (validParameter.isValidParameter(it->first, myArray, it->second) != true) {
42                                         abort = true;
43                                 }
44                         }
45                         
46                         globaldata->newRead();
47                         
48                         //if the user changes the output directory command factory will send this info to us in the output parameter 
49                         outputDir = validParameter.validFile(parameters, "outputdir", false);           if (outputDir == "not found"){  outputDir = "";         }
50                         
51                                 //if the user changes the input directory command factory will send this info to us in the output parameter 
52                         string inputDir = validParameter.validFile(parameters, "inputdir", false);              
53                         if (inputDir == "not found"){   inputDir = "";          }
54                         else {
55                                 string path;
56                                 it = parameters.find("phylip");
57                                 //user has given a template file
58                                 if(it != parameters.end()){ 
59                                         path = hasPath(it->second);
60                                         //if the user has not given a path then, add inputdir. else leave path alone.
61                                         if (path == "") {       parameters["phylip"] = inputDir + it->second;           }
62                                 }
63                                 
64                                 it = parameters.find("column");
65                                 //user has given a template file
66                                 if(it != parameters.end()){ 
67                                         path = hasPath(it->second);
68                                         //if the user has not given a path then, add inputdir. else leave path alone.
69                                         if (path == "") {       parameters["column"] = inputDir + it->second;           }
70                                 }
71                                 
72                                 it = parameters.find("name");
73                                 //user has given a template file
74                                 if(it != parameters.end()){ 
75                                         path = hasPath(it->second);
76                                         //if the user has not given a path then, add inputdir. else leave path alone.
77                                         if (path == "") {       parameters["name"] = inputDir + it->second;             }
78                                 }
79                         }
80                         
81                         //check for required parameters
82                         phylipfile = validParameter.validFile(parameters, "phylip", true);
83                         if (phylipfile == "not open") { abort = true; }
84                         else if (phylipfile == "not found") { phylipfile = ""; }        
85                         else {  distfile = phylipfile;  format = "phylip";      }
86                         
87                         columnfile = validParameter.validFile(parameters, "column", true);
88                         if (columnfile == "not open") { abort = true; } 
89                         else if (columnfile == "not found") { columnfile = ""; }
90                         else {  distfile = columnfile; format = "column";       }
91                         
92                         namefile = validParameter.validFile(parameters, "name", true);
93                         if (namefile == "not open") { abort = true; }   
94                         else if (namefile == "not found") { namefile = ""; }
95                         
96                         if ((phylipfile == "") && (columnfile == "")) { m->mothurOut("When executing a hcluster command you must enter a phylip or a column."); m->mothurOutEndLine(); abort = true; }
97                         else if ((phylipfile != "") && (columnfile != "")) { m->mothurOut("When executing a hcluster command you must enter ONLY ONE of the following: phylip or column."); m->mothurOutEndLine(); abort = true; }
98                 
99                         if (columnfile != "") {
100                                 if (namefile == "") {  cout << "You need to provide a namefile if you are going to use the column format." << endl; abort = true; }
101                         }
102                                         
103                         //check for optional parameter and set defaults
104                         // ...at some point should added some additional type checking...
105                         //get user cutoff and precision or use defaults
106                         string temp;
107                         temp = validParameter.validFile(parameters, "precision", false);
108                         if (temp == "not found") { temp = "100"; }
109                         //saves precision legnth for formatting below
110                         length = temp.length();
111                         convert(temp, precision); 
112                         
113                         temp = validParameter.validFile(parameters, "hard", false);                     if (temp == "not found") { temp = "F"; }
114                         hard = isTrue(temp);
115                         
116                         temp = validParameter.validFile(parameters, "processors", false);       if (temp == "not found"){       temp = "1";                             }
117                         convert(temp, processors); 
118                         
119                         temp = validParameter.validFile(parameters, "cutoff", false);
120                         if (temp == "not found") { temp = "10"; }
121                         convert(temp, cutoff); 
122                         if (!hard) {    cutoff += (5 / (precision * 10.0));  }
123                         
124                         temp = validParameter.validFile(parameters, "splitcutoff", false);
125                         if (temp == "not found") { temp = "0.10"; }
126                         convert(temp, splitcutoff); 
127                         if (!hard) {    splitcutoff += (5 / (precision * 10.0));  }
128                         
129                         method = validParameter.validFile(parameters, "method", false);
130                         if (method == "not found") { method = "furthest"; }
131                         
132                         if ((method == "furthest") || (method == "nearest") || (method == "average")) { }
133                         else { m->mothurOut("Not a valid clustering method.  Valid clustering algorithms are furthest, nearest or average."); m->mothurOutEndLine(); abort = true; }
134
135                         showabund = validParameter.validFile(parameters, "showabund", false);
136                         if (showabund == "not found") { showabund = "T"; }
137
138                         timing = validParameter.validFile(parameters, "timing", false);
139                         if (timing == "not found") { timing = "F"; }
140                         
141                 }
142         }
143         catch(exception& e) {
144                 m->errorOut(e, "ClusterSplitCommand", "ClusterSplitCommand");
145                 exit(1);
146         }
147 }
148
149 //**********************************************************************************************************************
150
151 void ClusterSplitCommand::help(){
152         try {
153                 m->mothurOut("The cluster command can only be executed after a successful read.dist command.\n");
154                 m->mothurOut("The cluster command parameter options are method, cuttoff, hard, precision, showabund and timing. No parameters are required.\n");
155                 m->mothurOut("The cluster command should be in the following format: \n");
156                 m->mothurOut("cluster(method=yourMethod, cutoff=yourCutoff, precision=yourPrecision) \n");
157                 m->mothurOut("The acceptable cluster methods are furthest, nearest and average.  If no method is provided then furthest is assumed.\n\n");      
158         }
159         catch(exception& e) {
160                 m->errorOut(e, "ClusterSplitCommand", "help");
161                 exit(1);
162         }
163 }
164
165 //**********************************************************************************************************************
166
167 ClusterSplitCommand::~ClusterSplitCommand(){}
168
169 //**********************************************************************************************************************
170
171 int ClusterSplitCommand::execute(){
172         try {
173         
174                 if (abort == true) {    return 0;       }
175                 
176                 //****************** file prep work ******************************//
177                 
178                 //if user gave a phylip file convert to column file
179                 if (format == "phylip") {
180         
181                         ReadCluster* convert = new ReadCluster(distfile, cutoff, outputDir, false);
182                         
183                         NameAssignment* nameMap = NULL;
184                         convert->setFormat("phylip");
185                         convert->read(nameMap);
186                         
187                         if (m->control_pressed) {  delete convert;  return 0;  }
188                         
189                         distfile = convert->getOutputFile();
190                 
191                         //if no names file given with phylip file, create it
192                         ListVector* listToMakeNameFile =  convert->getListVector();
193                         if (namefile == "") {  //you need to make a namefile for split matrix
194                                 ofstream out;
195                                 namefile = phylipfile + ".names";
196                                 openOutputFile(namefile, out);
197                                 for (int i = 0; i < listToMakeNameFile->getNumBins(); i++) {
198                                         string bin = listToMakeNameFile->get(i);
199                                         out << bin << '\t' << bin << endl;
200                                 }
201                                 out.close();
202                         }
203                         delete listToMakeNameFile;
204                         delete convert;
205                 }
206                 if (m->control_pressed) { return 0; }
207                 
208                 time_t estart = time(NULL);
209                 
210                 //split matrix into non-overlapping groups
211                 SplitMatrix* split = new SplitMatrix(distfile, namefile, splitcutoff);
212                 split->split();
213                 
214                 if (m->control_pressed) { delete split; return 0; }
215                 
216                 string singletonName = split->getSingletonNames();
217                 vector< map<string, string> > distName = split->getDistanceFiles();  //returns map of distance files -> namefile sorted by distance file size
218                 delete split;
219                 
220                 m->mothurOut("It took " + toString(time(NULL) - estart) + " seconds to split the distance file."); m->mothurOutEndLine();
221                 estart = time(NULL);
222                 
223                 if (m->control_pressed) { return 0; }
224                 
225                 //****************** break up files between processes and cluster each file set ******************************//
226                 vector<string> listFileNames;
227                 set<string> labels;
228                 #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
229                                 if(processors == 1){
230                                         listFileNames = cluster(distName, labels); //clusters individual files and returns names of list files
231                                 }else{
232                                         vector < vector < map<string, string> > > dividedNames; //distNames[1] = vector of filenames for process 1...
233                                         dividedNames.resize(processors);
234                                         
235                                         //for each file group figure out which process will complete it
236                                         //want to divide the load intelligently so the big files are spread between processes
237                                         int count = 1;
238                                         for (int i = 0; i < distName.size(); i++) { 
239                                                 int processToAssign = (i+1) % processors; 
240                                                 if (processToAssign == 0) { processToAssign = processors; }
241                                                 
242                                                 dividedNames[(processToAssign-1)].push_back(distName[i]);
243                                         }
244                                         
245                                         createProcesses(dividedNames);
246                                                         
247                                         if (m->control_pressed) { return 0; }
248
249                                         //get list of list file names from each process
250                                         for(int i=0;i<processors;i++){
251                                                 string filename = toString(processIDS[i]) + ".temp";
252                                                 ifstream in;
253                                                 openInputFile(filename, in);
254                                                 
255                                                 while(!in.eof()) {
256                                                         string tempName;
257                                                         in >> tempName; gobble(in);
258                                                         listFileNames.push_back(tempName);
259                                                 }
260                                                 in.close();
261                                                 remove((toString(processIDS[i]) + ".temp").c_str());
262                                                 
263                                                 //get labels
264                                                 filename = toString(processIDS[i]) + ".temp.labels";
265                                                 ifstream in2;
266                                                 openInputFile(filename, in2);
267                                                 
268                                                 while(!in2.eof()) {
269                                                         string tempName;
270                                                         in2 >> tempName; gobble(in);
271                                                         if (labels.count(tempName) == 0) { labels.insert(tempName); }
272                                                 }
273                                                 in2.close();
274                                                 remove((toString(processIDS[i]) + ".temp.labels").c_str());
275                                         }
276                                 }
277                 #else
278                                 listFileNames = cluster(distName, labels); //clusters individual files and returns names of list files
279                 #endif
280                 
281                 if (m->control_pressed) { for (int i = 0; i < listFileNames.size(); i++) { remove(listFileNames[i].c_str()); } return 0; }
282                 
283                 //****************** merge list file and create rabund and sabund files ******************************//
284                                 
285                 mergeLists(listFileNames, singletonName, labels);
286
287                 if (m->control_pressed) { for (int i = 0; i < outputNames.size(); i++) { remove(outputNames[i].c_str()); } return 0; }
288                 
289                 m->mothurOut("It took " + toString(time(NULL) - estart) + " seconds to cluster"); m->mothurOutEndLine();
290                 
291                 m->mothurOutEndLine();
292                 m->mothurOut("Output File Names: "); m->mothurOutEndLine();
293                 for (int i = 0; i < outputNames.size(); i++) {  m->mothurOut(outputNames[i]); m->mothurOutEndLine();    }
294                 m->mothurOutEndLine();
295
296                 return 0;
297         }
298         catch(exception& e) {
299                 m->errorOut(e, "ClusterSplitCommand", "execute");
300                 exit(1);
301         }
302 }
303 //**********************************************************************************************************************
304 int ClusterSplitCommand::mergeLists(vector<string> listNames, string singleton, set<string> userLabels){
305         try {
306                 if (outputDir == "") { outputDir += hasPath(distfile); }
307                 fileroot = outputDir + getRootName(getSimpleName(distfile));
308                 
309                 openOutputFile(fileroot+ tag + ".sabund",       outSabund);
310                 openOutputFile(fileroot+ tag + ".rabund",       outRabund);
311                 openOutputFile(fileroot+ tag + ".list",         outList);
312                                 
313                 outputNames.push_back(fileroot+ tag + ".sabund");
314                 outputNames.push_back(fileroot+ tag + ".rabund");
315                 outputNames.push_back(fileroot+ tag + ".list");
316                         
317                 //read in singletons
318                 ListVector* listSingle = NULL;
319                 if (singleton != "none") {
320                         ifstream in;
321                         openInputFile(singleton, in);
322                                 
323                         string firstCol, secondCol;
324                         listSingle = new ListVector();
325                         while (!in.eof()) {
326                                 in >> firstCol >> secondCol; gobble(in);
327                                 listSingle->push_back(secondCol);
328                         }
329                         in.close();
330                 }
331                 
332                 vector<float> orderFloat;
333         
334                 //go through users set and make them floats so we can sort them 
335                 for(set<string>::iterator it = userLabels.begin(); it != userLabels.end(); ++it) {
336                         float temp;
337
338                         if ((*it != "unique") && (convertTestFloat(*it, temp) == true)){
339                                 convert(*it, temp);
340                                 orderFloat.push_back(temp);
341                         }else if (*it == "unique") { orderFloat.push_back(-1.0); }
342                         else {
343                                 userLabels.erase(*it); 
344                                 it--;
345                         }
346                 }
347                 
348                 //sort order
349                 sort(orderFloat.begin(), orderFloat.end());
350
351                 vector<InputData*> inputs;
352                 vector<string> lastLabels;
353                 for (int i = 0; i < listNames.size(); i++) {
354                         InputData* input = new InputData(listNames[i], "list");
355                         inputs.push_back(input);
356                         
357                         ifstream in;
358                         openInputFile(listNames[i], in);
359                         ListVector tempList(in);
360                         lastLabels.push_back(tempList.getLabel());
361                         in.close();
362                 }
363                 
364                 ListVector* merged = NULL;
365                                 
366                 //for each label needed
367                 for(int l = 0; l < orderFloat.size(); l++){
368                         
369                         string thisLabel;
370                         if (orderFloat[l] == -1) { thisLabel = "unique"; }
371                         else { thisLabel = toString(orderFloat[l],  length-1);  } 
372         
373                         //get the list info from each file
374                         for (int k = 0; k < listNames.size(); k++) {
375         
376                                 if (m->control_pressed) {  
377                                         if (listSingle != NULL) { delete listSingle; remove(singleton.c_str());  }
378                                         for (int i = 0; i < listNames.size(); i++) {  delete inputs[i];  remove(listNames[i].c_str());  }
379                                         delete merged; merged = NULL;
380                                         return 0;
381                                 }
382                                 
383                                 ListVector* list = inputs[k]->getListVector();
384                                 
385                                 //this file has reached the end
386                                 if (list == NULL) { list = inputs[k]->getListVector(lastLabels[k], true); }     
387                                                 
388                                 float labelFloat;
389                                 if (list->getLabel() == "unique") {  labelFloat = -1.0;  }
390                                 else { convert(list->getLabel(), labelFloat); }
391
392                                 //check for missing labels
393                                 if (labelFloat > orderFloat[l]) { //you are missing the label, get the next smallest one
394                                         //if its bigger get last label, otherwise keep it
395                                         delete list;
396                                         list = inputs[k]->getListVector(lastLabels[k], true); //get last list vector to use, you actually want to move back in the file
397                                 }
398                                 lastLabels[k] = list->getLabel();
399
400                                 //is this the first file
401                                 if (merged == NULL) {  merged = new ListVector();  merged->setLabel(thisLabel); }
402                                 
403                                 for (int j = 0; j < list->getNumBins(); j++) {
404                                         merged->push_back(list->get(j));
405                                 }
406                                 
407                                 delete list;
408                         }
409                         
410                         //add in singletons
411                         for (int j = 0; j < listSingle->getNumBins(); j++) {
412                                 merged->push_back(listSingle->get(j));
413                         }
414
415                         //print to files
416                         printData(merged);
417                         
418                         delete merged; merged = NULL;
419                 }
420                 
421                 if (listSingle != NULL) { delete listSingle; remove(singleton.c_str());  }
422                 
423                 for (int i = 0; i < listNames.size(); i++) {  delete inputs[i];  remove(listNames[i].c_str());  }
424                 
425                 return 0;
426         }
427         catch(exception& e) {
428                 m->errorOut(e, "ClusterSplitCommand", "mergeLists");
429                 exit(1);
430         }
431 }
432 //**********************************************************************************************************************
433
434 void ClusterSplitCommand::printData(ListVector* oldList){
435         try {
436                 string label = oldList->getLabel();
437                 RAbundVector oldRAbund = oldList->getRAbundVector();
438                 
439                 oldRAbund.setLabel(label);
440                 if (isTrue(showabund)) {
441                         oldRAbund.getSAbundVector().print(cout);
442                 }
443                 oldRAbund.print(outRabund);
444                 oldRAbund.getSAbundVector().print(outSabund);
445         
446                 oldList->print(outList);
447         }
448         catch(exception& e) {
449                 m->errorOut(e, "ClusterSplitCommand", "printData");
450                 exit(1);
451         }
452 }
453 //**********************************************************************************************************************
454 int ClusterSplitCommand::createProcesses(vector < vector < map<string, string> > > dividedNames){
455         try {
456         
457         #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
458                 int process = 0;
459                 int exitCommand = 1;
460                 processIDS.clear();
461                 
462                 //loop through and create all the processes you want
463                 while (process != processors) {
464                         int pid = fork();
465                         
466                         if (pid > 0) {
467                                 processIDS.push_back(pid);  //create map from line number to pid so you can append files in correct order later
468                                 process++;
469                         }else if (pid == 0){
470                                 set<string> labels;
471                                 vector<string> listFileNames = cluster(dividedNames[process], labels);
472                                 
473                                 //write out names to file
474                                 string filename = toString(getpid()) + ".temp";
475                                 ofstream out;
476                                 openOutputFile(filename, out);
477                                 for (int j = 0; j < listFileNames.size(); j++) { out << listFileNames[j] << endl;  }
478                                 out.close();
479                                 
480                                 //print out labels
481                                 ofstream outLabels;
482                                 filename = toString(getpid()) + ".temp.labels";
483                                 openOutputFile(filename, outLabels);
484                 
485                                 for (set<string>::iterator it = labels.begin(); it != labels.end(); it++) {
486                                         outLabels << (*it) << endl;
487                                 }
488                                 outLabels.close();
489
490                                 exit(0);
491                         }else { m->mothurOut("unable to spawn the necessary processes."); m->mothurOutEndLine(); exit(0); }
492                 }
493                 
494                 //force parent to wait until all the processes are done
495                 for (int i=0;i<processors;i++) { 
496                         int temp = processIDS[i];
497                         wait(&temp);
498                 }
499                 
500                 return exitCommand;
501         #endif          
502         
503         }
504         catch(exception& e) {
505                 m->errorOut(e, "ClusterSplitCommand", "createProcesses");
506                 exit(1);
507         }
508 }
509 //**********************************************************************************************************************
510
511 vector<string> ClusterSplitCommand::cluster(vector< map<string, string> > distNames, set<string>& labels){
512         try {
513                 Cluster* cluster;
514                 SparseMatrix* matrix;
515                 ListVector* list;
516                 ListVector oldList;
517                 RAbundVector* rabund;
518                 
519                 vector<string> listFileNames;
520                 
521                 //cluster each distance file
522                 for (int i = 0; i < distNames.size(); i++) {
523                         
524                         string thisNamefile = distNames[i].begin()->second;
525                         string thisDistFile = distNames[i].begin()->first;
526                         
527                         //read in distance file
528                         globaldata->setNameFile(thisNamefile);
529                         globaldata->setColumnFile(thisDistFile); globaldata->setFormat("column");
530                         
531                         ReadMatrix* read = new ReadColumnMatrix(thisDistFile);  
532                         read->setCutoff(cutoff);
533
534                         NameAssignment* nameMap = new NameAssignment(thisNamefile);
535                         nameMap->readMap();
536                         read->read(nameMap);
537                         
538                         if (m->control_pressed) {  delete read; delete nameMap; return listFileNames; }
539                         
540                         list = read->getListVector();
541                         oldList = *list;
542                         matrix = read->getMatrix();
543                         
544                         delete read; 
545                         delete nameMap; 
546                         
547                         m->mothurOutEndLine(); m->mothurOut("Clustering " + thisDistFile); m->mothurOutEndLine();
548                 
549                         rabund = new RAbundVector(list->getRAbundVector());
550                         
551                         //create cluster
552                         if (method == "furthest")       {       cluster = new CompleteLinkage(rabund, list, matrix, cutoff, method); }
553                         else if(method == "nearest"){   cluster = new SingleLinkage(rabund, list, matrix, cutoff, method); }
554                         else if(method == "average"){   cluster = new AverageLinkage(rabund, list, matrix, cutoff, method);     }
555                         tag = cluster->getTag();
556                 
557                         if (outputDir == "") { outputDir += hasPath(thisDistFile); }
558                         fileroot = outputDir + getRootName(getSimpleName(thisDistFile));
559                         
560                         ofstream listFile;
561                         openOutputFile(fileroot+ tag + ".list", listFile);
562                 
563                         listFileNames.push_back(fileroot+ tag + ".list");
564                 
565                         time_t estart = time(NULL);
566                         
567                         float previousDist = 0.00000;
568                         float rndPreviousDist = 0.00000;
569                         
570                         oldList = *list;
571
572                         print_start = true;
573                         start = time(NULL);
574                         double saveCutoff = cutoff;
575                 
576                         while (matrix->getSmallDist() < cutoff && matrix->getNNodes() > 0){
577                 
578                                 if (m->control_pressed) { //clean up
579                                         delete matrix; delete list;     delete cluster; delete rabund;
580                                         listFile.close();
581                                         for (int i = 0; i < listFileNames.size(); i++) {        remove(listFileNames[i].c_str());       }
582                                         listFileNames.clear(); return listFileNames;
583                                 }
584                 
585                                 cluster->update(cutoff);
586         
587                                 float dist = matrix->getSmallDist();
588                                 float rndDist = roundDist(dist, precision);
589
590                                 if(previousDist <= 0.0000 && dist != previousDist){
591                                         oldList.setLabel("unique");
592                                         oldList.print(listFile);
593                                         if (labels.count("unique") == 0) {  labels.insert("unique");  }
594                                 }
595                                 else if(rndDist != rndPreviousDist){
596                                         oldList.setLabel(toString(rndPreviousDist,  length-1));
597                                         oldList.print(listFile);
598                                         if (labels.count(toString(rndPreviousDist,  length-1)) == 0) { labels.insert(toString(rndPreviousDist,  length-1)); }
599                                 }
600                 
601                                 previousDist = dist;
602                                 rndPreviousDist = rndDist;
603                                 oldList = *list;
604                         }
605
606                 
607                         if(previousDist <= 0.0000){
608                                 oldList.setLabel("unique");
609                                 oldList.print(listFile);
610                                 if (labels.count("unique") == 0) { labels.insert("unique"); }
611                         }
612                         else if(rndPreviousDist<cutoff){
613                                 oldList.setLabel(toString(rndPreviousDist,  length-1));
614                                 oldList.print(listFile);
615                                 if (labels.count(toString(rndPreviousDist,  length-1)) == 0) { labels.insert(toString(rndPreviousDist,  length-1)); }
616                         }
617                 
618                         delete matrix; delete list;     delete cluster; delete rabund; 
619                         listFile.close();
620                         
621                         if (m->control_pressed) { //clean up
622                                 for (int i = 0; i < listFileNames.size(); i++) {        remove(listFileNames[i].c_str());       }
623                                 listFileNames.clear(); return listFileNames;
624                         }
625                         
626                         remove(thisDistFile.c_str());
627                         remove(thisNamefile.c_str());
628                 }
629                 
630                                 
631                 return listFileNames;
632         
633         }
634         catch(exception& e) {
635                 m->errorOut(e, "ClusterSplitCommand", "cluster");
636                 exit(1);
637         }
638
639
640 }
641
642 //**********************************************************************************************************************