1 #ifndef READPHYLIPVECTOR_H
2 #define READPHYLIPVECTOR_H
8 * Created by westcott on 1/11/11.
9 * Copyright 2011 Schloss Lab. All rights reserved.
15 #include "mothurout.h"
17 /******************************************************/
19 class ReadPhylipVector {
22 ReadPhylipVector(string); //phylipfile - lt or square
23 ~ReadPhylipVector() {}
24 vector<string> read(vector< vector<double> >&); //pass in matrix to fill with values, returns vector of strings containing names in phylipfile
25 vector<string> read(vector<seqDist>&); //pass in matrix to fill with values, returns vector of strings containing names in phylipfile
32 /******************************************************/