Mercurial > repos > yufei-luo > s_mart
annotate SMART/Java/Python/Cpp/findOverlaps.cpp @ 18:94ab73e8a190
Uploaded
author | m-zytnicki |
---|---|
date | Mon, 29 Apr 2013 03:20:15 -0400 |
parents | |
children |
rev | line source |
---|---|
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 |