Skip to content

Commit 6531da0

Browse files
committed
replaced argvparser with clipp
1 parent 79272cd commit 6531da0

4 files changed

Lines changed: 7106 additions & 1309 deletions

File tree

src/cgi/core_genome_identity.cpp

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,27 +19,18 @@
1919
#include "map/include/commonFunc.hpp"
2020
#include "cgi/include/computeCoreIdentity.hpp"
2121

22-
//External includes
23-
#include "common/argvparser.hpp"
24-
2522
int main(int argc, char** argv)
2623
{
2724
/*
2825
* Make sure env variable MALLOC_ARENA_MAX is unset
2926
* for efficient multi-threaded execution
3027
*/
3128
unsetenv((char *)"MALLOC_ARENA_MAX");
32-
33-
CommandLineProcessing::ArgvParser cmd;
3429
using namespace std::placeholders; // for _1, _2, _3...
3530

36-
//Setup command line options
37-
skch::initCmdParser(cmd);
38-
3931
//Parse command line arguements
4032
skch::Parameters parameters; //sketching and mapping parameters
41-
42-
skch::parseandSave(argc, argv, cmd, parameters);
33+
skch::parseandSave(argc, argv, parameters);
4334

4435
std::string fileName = parameters.outFileName;
4536

0 commit comments

Comments
 (0)