-
Notifications
You must be signed in to change notification settings - Fork 9
/
nthll.cpp
260 lines (233 loc) · 7.24 KB
/
nthll.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
#include <iostream>
#include <string>
#include <fstream>
#include <sstream>
#include <vector>
#include <cstdlib>
#include <getopt.h>
#include <cassert>
#include <cmath>
#include "vendor/ntHash/ntHashIterator.hpp"
#include "Uncompress.h"
#ifdef _OPENMP
# include <omp.h>
#endif
#define PROGRAM "nthll"
static const char VERSION_MESSAGE[] =
PROGRAM " 1.2.2 \n"
"Written by Hamid Mohamadi.\n"
"Copyright 2018 Hamid Mohamadi, Licensed under MIT License\n";
static const char USAGE_MESSAGE[] =
"Usage: " PROGRAM " [OPTION]... FILE(S)...\n"
"Estimates distinct number of k-mers in FILE(S).\n\n"
"Acceptable file formats: fastq, fasta, sam, bam and in compressed formats gz, bz, zip, xz.\n"
"Accepts a list of files by adding @ at the beginning of the list name.\n"
"\n"
" Options:\n"
"\n"
" -t, --threads=N use N parallel threads [1] (N>=2 should be used when input files are >=2)\n"
" -k, --kmer=N the length of kmer [64]\n"
" --help display this help and exit\n"
" --version output version information and exit\n"
"\n"
"Report bugs to https://github.com/bcgsc/ntCard/issues\n";
using namespace std;
namespace opt {
unsigned nThrd=1;
unsigned nHash=7;
unsigned kmLen=64;
unsigned nBuck=65536;
unsigned nBits=16;
unsigned sBuck=4194304;
unsigned sBits=22;
size_t totKmer=0;
bool canon=true;
bool samH=true;
}
static const char shortopts[] = "t:k:b:s:hc";
enum { OPT_HELP = 1, OPT_VERSION };
static const struct option longopts[] = {
{ "threads", required_argument, NULL, 't' },
{ "kmer", required_argument, NULL, 'k' },
{ "bit", required_argument, NULL, 'b' },
{ "sit", required_argument, NULL, 's' },
{ "hash", required_argument, NULL, 'h' },
{ "help", no_argument, NULL, OPT_HELP },
{ "version", no_argument, NULL, OPT_VERSION },
{ NULL, 0, NULL, 0 }
};
unsigned getftype(std::ifstream &in, std::string &samSeq) {
std::string hseq;
getline(in,hseq);
if(hseq[0]=='>') {
return 1;
}
if(hseq[0]=='@') {
if( (hseq[1]=='H'&& hseq[2]=='D') ||
(hseq[1]=='S'&& hseq[2]=='Q') ||
(hseq[1]=='R'&& hseq[2]=='G') ||
(hseq[1]=='P'&& hseq[2]=='G') ||
(hseq[1]=='C'&& hseq[2]=='O') ) {
return 2;
}
else
return 0;
}
opt::samH=false;
samSeq=hseq;
return 2;
}
inline void ntComp(const uint64_t hVal, uint8_t *mVec) {
if(hVal&(~((uint64_t)opt::nBuck-1))) {
uint8_t run0 = __builtin_clzll(hVal&(~((uint64_t)opt::nBuck-1)));
if(run0 > mVec[hVal&(opt::nBuck-1)]) mVec[hVal&(opt::nBuck-1)]=run0;
}
}
inline void ntRead(const string &seq, uint8_t *mVec) {
ntHashIterator itr(seq, 1, opt::kmLen);
while (itr != itr.end()) {
ntComp((*itr)[0], mVec);
++itr;
}
}
void getEfq(uint8_t *mVec, std::ifstream &in) {
bool good = true;
for(string seq, hseq; good;) {
good = static_cast<bool>(getline(in, seq));
good = static_cast<bool>(getline(in, hseq));
good = static_cast<bool>(getline(in, hseq));
if(good && seq.length()>=opt::kmLen)
ntRead(seq, mVec);
good = static_cast<bool>(getline(in, hseq));
}
}
void getEfa(uint8_t *mVec, std::ifstream &in) {
bool good = true;
for(string seq, hseq; good;) {
string line;
good = static_cast<bool>(getline(in, seq));
while(good&&seq[0]!='>') {
line+=seq;
good = static_cast<bool>(getline(in, seq));
}
if(line.length()>=opt::kmLen)
ntRead(line, mVec);
}
}
void getEsm(uint8_t *mVec, std::ifstream &in, const std::string &samSeq) {
std::string samLine,seq;
std::string s1,s2,s3,s4,s5,s6,s7,s8,s9,s11;
if(opt::samH) {
while(getline(in,samLine))
if (samLine[0]!='@') break;
}
else
samLine=samSeq;
do {
std::istringstream iss(samLine);
iss>>s1>>s2>>s3>>s4>>s5>>s6>>s7>>s8>>s9>>seq>>s11;
if(seq.length()>=opt::kmLen)
ntRead(seq, mVec);
} while(getline(in,samLine));
}
int main(int argc, char** argv) {
bool die = false;
for (int c; (c = getopt_long(argc, argv, shortopts, longopts, NULL)) != -1;) {
std::istringstream arg(optarg != NULL ? optarg : "");
switch (c) {
case '?':
die = true;
break;
case 't':
arg >> opt::nThrd;
break;
case 'b':
arg >> opt::nBits;
break;
case 's':
arg >> opt::sBits;
break;
case 'k':
arg >> opt::kmLen;
break;
case 'c':
opt::canon=true;
break;
case OPT_HELP:
std::cerr << USAGE_MESSAGE;
exit(EXIT_SUCCESS);
case OPT_VERSION:
std::cerr << VERSION_MESSAGE;
exit(EXIT_SUCCESS);
}
if (optarg != NULL && !arg.eof()) {
std::cerr << PROGRAM ": invalid option: `-"
<< (char)c << optarg << "'\n";
exit(EXIT_FAILURE);
}
}
if (argc - optind < 1) {
std::cerr << PROGRAM ": missing arguments\n";
die = true;
}
if (die) {
std::cerr << "Try `" << PROGRAM << " --help' for more information.\n";
exit(EXIT_FAILURE);
}
vector<string> inFiles;
for (int i = optind; i < argc; ++i) {
string file(argv[i]);
if(file[0]=='@') {
string inName;
ifstream inList(file.substr(1,file.length()).c_str());
while(getline(inList,inName))
inFiles.push_back(inName);
}
else
inFiles.push_back(file);
}
opt::nBuck = ((unsigned)1) << opt::nBits;
opt::sBuck = ((unsigned)1) << opt::sBits;
uint8_t *tVec = new uint8_t [opt::nBuck];
for (unsigned j=0; j<opt::nBuck; j++) tVec[j]=0;
#ifdef _OPENMP
omp_set_num_threads(opt::nThrd);
#endif
#pragma omp parallel
{
string fname;
uint8_t *mVec = new uint8_t [opt::nBuck];
for (unsigned j=0; j<opt::nBuck; j++) mVec[j]=0;
#pragma omp for schedule(dynamic) nowait
for (unsigned file_i = 0; file_i < inFiles.size(); ++file_i) {
fname = inFiles[inFiles.size()-file_i-1]; // verbose
std::ifstream in(inFiles[inFiles.size()-file_i-1].c_str());
std::string samSeq;
unsigned ftype = getftype(in,samSeq);
if(ftype==0)
getEfq(mVec, in);
else if (ftype==1)
getEfa(mVec, in);
else if (ftype==2)
getEsm(mVec, in, samSeq);
in.close();
}
#pragma omp critical(vmrg)
{
for (unsigned j=0; j<opt::nBuck; j++)
if(tVec[j]<mVec[j])
tVec[j]=mVec[j];
}
delete [] mVec;
}
double pEst = 0.0, zEst = 0.0, eEst = 0.0, alpha = 0.0;
alpha = 1.4426/(1 + 1.079/opt::nBuck);
if(opt::canon) alpha/=2;
for (unsigned j=0; j<opt::nBuck; j++)
pEst += 1.0/((uint64_t)1<<tVec[j]);
zEst = 1.0/pEst;
eEst = alpha * opt::nBuck * opt::nBuck * zEst;
delete [] tVec;
std::cout << "F0, Exp# of distnt kmers(k=" << opt::kmLen << "): " << (unsigned long long) eEst << "\n";
return 0;
}