picard_cpp/src/sam/markdups/markdups.cpp

35 lines
735 B
C++
Raw Normal View History

2023-10-23 23:07:00 +08:00
/*
Description: bam
Copyright : All right reserved by ICT
Author : Zhang Zhonghai
Date : 2023/10/23
*/
#include "markdups_arg.h"
#include <common/global_arg.h>
2023-10-23 23:07:00 +08:00
#include <iostream>
using namespace std;
/*
* mark duplicate
*/
int MarkDuplicates(int argc, char *argv[])
{
// cout << argc << endl;
// for (int i = 0; i < argc; ++i) {
// cout << argv[i] << '\t';
// }
// cout << endl;
GlobalArg &gArg = GlobalArg::Instance();
MarkDupsArg mdArg;
vector<AuxVar> vAuxVar;
mdArg.parseArgument(argc, argv, &vAuxVar, &gArg);
// cout << ns_md::ValidationStringency::DEFAULT_STRINGENCY << '\t' << ns_md::ValidationStringency::SILENT << endl;
2023-10-23 23:07:00 +08:00
return 0;
}