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;
|
|
|
|
|
}
|