picard_cpp/src/sam/markdups/markdups.cpp

26 lines
392 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 <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;
return 0;
}