Mercurial > repos > yufei-luo > s_mart
diff SMART/Java/Python/Cpp/findOverlaps.cpp @ 18:94ab73e8a190
Uploaded
author | m-zytnicki |
---|---|
date | Mon, 29 Apr 2013 03:20:15 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SMART/Java/Python/Cpp/findOverlaps.cpp Mon Apr 29 03:20:15 2013 -0400 @@ -0,0 +1,19 @@ +#include <string> +#include "inputFileParser.hpp" +#include "ncListCreator.hpp" +using namespace std; + +int main (int argc, char* argv[]) { + if (argc < 4) { + cout << "Usage: findOverlaps input1 output\n"; + exit(0); + } + string inputFileName1 = string(argv[1]); + string inputFileName2 = string(argv[2]); + string outputFileName = string(argv[3]); + NCListCreator creator = NCListCreator(inputFileName1); +// InputFileParser ifp(inputFileName1, outputFileName); +// ifp.parse(); + return 0; +} +