-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreadInputFiles.hpp
36 lines (32 loc) · 1.04 KB
/
readInputFiles.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include <math.h>
#include <cstdlib>
#include <random>
#include <iostream>
#include <ctime>
#include <iomanip>
#include <sstream>
#include <fstream>
#include <vector>
#include <string>
#include <map>
#include <set>
#include <boost/algorithm/string.hpp>
#include <boost/algorithm/string/replace.hpp>
#include <algorithm>
#include <boost/filesystem/operations.hpp>
//#include "boost/filesystem.hpp"
#include <sys/types.h>
#include <dirent.h>
//#include <boost/filesystem/fstream.hpp>
//#define BOOST_FILESYSTEM_NO_DEPRECATED
// include headers that implement a archive in simple text format
using namespace std;
using namespace boost;
using namespace boost::filesystem;
void read_SMUA_file(string, vector<vector<string> > &);
void read_PARTIScsv_file(string, vector<vector<string> > &);
void read_PARTISyaml_file(string, vector<vector<string> > &);
string cleanYAMLline(string);
void cleanSeqs(string &,string &);
void readIndividualFiles(string, string, vector<vector<string> > &);
void readIndividualFiles(string, string, string, vector<vector<string> > &);