18
|
1 #include <string>
|
|
2 #include "inputFileParser.hpp"
|
|
3 #include "ncListCreator.hpp"
|
|
4 using namespace std;
|
|
5
|
|
6 int main (int argc, char* argv[]) {
|
|
7 if (argc < 4) {
|
|
8 cout << "Usage: findOverlaps input1 output\n";
|
|
9 exit(0);
|
|
10 }
|
|
11 string inputFileName1 = string(argv[1]);
|
|
12 string inputFileName2 = string(argv[2]);
|
|
13 string outputFileName = string(argv[3]);
|
|
14 NCListCreator creator = NCListCreator(inputFileName1);
|
|
15 // InputFileParser ifp(inputFileName1, outputFileName);
|
|
16 // ifp.parse();
|
|
17 return 0;
|
|
18 }
|
|
19
|