File: ReadInBitsSet.cpp

package info (click to toggle)
perm 0.4.0-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 976 kB
  • sloc: cpp: 13,499; makefile: 98; sh: 12
file content (348 lines) | stat: -rw-r--r-- 11,703 bytes parent folder | download | duplicates (5)
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
/*
 * CReadsSet.cpp
 *
 *  Created on: Jan 18, 2009
 *      Author: yanghoch
 * This class reads and store DNA short reads with fixed length
 * It will firstly get reads from a file (fasta, quality score or txt format),
 * by the extended name of the input files.
 */

#include "ReadInBitsSet.h"

#ifndef MAX_PATH
const int MAX_PATH = 2048;
#endif

CReadInBitsSet::CReadInBitsSet()
{
    this->initialization();
}

CReadInBitsSet::~CReadInBitsSet()
{
    delete this->pReadsSet;
    delete this->pReadsID;
    delete this->pMismatchScores;
    delete this->pQualScores;
}

CReadInBitsSet::CReadInBitsSet(unsigned int Capacity, unsigned int uiReadLength, unsigned int allowedNumOfNinRead)
{
    this->initialization();
    this->uiRead_Length = uiReadLength;
    this->allowedNumOfNinRead = allowedNumOfNinRead;
    this->bDiscardReadWithN = (allowedNumOfNinRead == 0);
    CReadInBits::iReadLength = (int)uiReadLength; // Set the Kmer has length
    this->pReadsSet = new vector<CReadInBits>();
    this->pReadsSet->reserve(Capacity);
    this->pReadsID = new vector<CReadID>();
    this->pReadsID->reserve(Capacity);
    if (this->pReadsSet == NULL || this->pReadsID == NULL) {
        ERR; // Fail to new space storing read
    }
}

/*
 * Given a input filename and the length of the input read.
 * Get reads and save in the data structure of Vector <CKmer>
 */
CReadInBitsSet::CReadInBitsSet(const char* InputFile, const char* fileFormat,\
                               unsigned int uiReadStartIndex, unsigned int uiReadLength, unsigned int allowedNumOfNinRead)
{
    this->initialization();
    myStrCpy(this->InputFile, InputFile, FILENAME_MAX);
    this->uiRead_Length = uiReadLength;
    this->parser.caNextRead[uiReadLength] = '\0';
    this->allowedNumOfNinRead = allowedNumOfNinRead;
    this->bDiscardReadWithN = (allowedNumOfNinRead == 0);

    this->pReadsSet = new vector<CReadInBits>();
    this->pReadsID = new vector<CReadID>();
    if (this->pReadsSet == NULL || this->pReadsID == NULL) {
        ERR; // Fail to new space storing read
    }
    if (fileExist(InputFile) ) {
        this->openAFileReady2GetRead(InputFile, fileFormat, uiReadStartIndex);
    } else {
        LOG_INFO("Info %d: File %s is not available!\n", WARNING_LOG, InputFile);
    }
}

int CReadInBitsSet::initialization(void)
{
    this->InputFile[0] = '\0';
    this->uiRead_Length = 0;
    this->uiNo_of_Reads = 0;
    this->uiNo_of_Bad_Reads = 0; //Counting the reads with low quality score
    this->pReadsSet = NULL;
    this->pReadsID = NULL;
    this->pMismatchScores = NULL;
    this->pQualScores = NULL;
    this->bDiscardReadWithN = true;
    return(0);
}

// clear and reserve the capacity for read, readId and quality
int CReadInBitsSet::clear(int capacity)
{
    if (this->pReadsSet != NULL) {
        this->pReadsSet->clear();
        this->pReadsSet->reserve(capacity);
        if (this->pReadsID != NULL) {
            this->pReadsID->clear();
            this->pReadsID->reserve(capacity);
        }
        if (this->pQualScores != NULL) {
            this->pQualScores->clear();
            this->pQualScores->reserve(capacity);
        }
        return(0);
    }
    return(1);
}

void CReadInBitsSet::handleBadread(void)
{
    this->uiNo_of_Bad_Reads++;
    while (this->pReadsID->size() > this->pReadsSet->size()) {
        this->pReadsID->pop_back();
    }
}
void CReadInBitsSet::setBadReadOutputFile(FileOutputBuffer* pOut)
{
    this->parser.pOBuf = pOut;
}

// get reads from the file and store (append) in a vector. Return how many reads are read-in.
unsigned int CReadInBitsSet::openAFileReady2GetRead(const char* InputFile, const char* fileFormat,\
        unsigned int uiReadStartIndex)
{
    this->cFileType = this->parser.openAFileReady2GetRead
                      (InputFile, fileFormat, \
                       uiReadStartIndex, this->uiRead_Length, this->bDiscardReadWithN);
    bool bGetQScores = (this->cFileType == 'Q' || this->cFileType == 'q');
    if ( this->cFileType == 'N') {
        return(0);
    }
    if (bGetQScores) {
        this->pQualScores = new CReadsQualScores(this->uiRead_Length, BUFFERED_READS_SIZE);
    } else if (this->cFileType == 'S') {
        // check if the quality score with the same basename exist or not
        this->openAFileReady2GetReadQSinQUAL(InputFile, this->uiRead_Length);
    }
    this->clear(BUFFERED_READS_SIZE);
    return(BUFFERED_READS_SIZE);
}

unsigned int CReadInBitsSet::get_next_capacity_reads(int capacity, char sep)
{
    if (this->uiNo_of_Reads > 0) {
        printf("Deal read no. %u in %s.\r", this->uiNo_of_Reads, this->InputFile);
    }
    fflush(stdout);
    bool bGetQScoresinQUAL = (this->pQualScores != NULL && this->cFileType == 'S');
    bool bGetQScoresInFastq = (this->pQualScores != NULL) && \
                              (this->cFileType == 'Q' || this->cFileType == 'q');
    bool bSOLiDReadFormat = (this->cFileType == 'Q' || this->cFileType == 'S');

    this->clear(capacity);

    do {
        parser.get_Next_Read(); // the next read are in this->parser.caNextRead
		bool isABadRead = isBadRead(bSOLiDReadFormat, this->parser.caNextRead, this->parser.uiRead_Length);
        if (this->parser.caNextRead[0] == '\0') {
            this->parser.pBuf->fflush();
            break; // End of the file
        } else if (!isABadRead && this->save_next_read(this->parser.caNextRead, bSOLiDReadFormat)) {
            this->save_next_read_id(this->parser.caNextReadTag, sep);
            if (bGetQScoresInFastq) {
                this->pQualScores->addQSs(this->parser.caNextReadQSs);
            }
        } else {
            this->parser.print_Next_Read();
            this->handleBadread();
        }
    } while (this->pReadsSet->size() < this->pReadsSet->capacity());
    for (unsigned int i = (unsigned int)this->pReadsID->size(); \
            i > this->pReadsSet->size(); i--) {
        this->pReadsID->pop_back(); // remove extra tags
    }
    if (bGetQScoresinQUAL) {
        this->pQualScores->getQualityScoresFromQUAL(this->pReadsID);
    }
    return((unsigned int)this->pReadsSet->size());
}

void CReadInBitsSet::ignoreQScores(void)
{
    if (this->pQualScores != NULL) {
        delete this->pQualScores;
        this->pQualScores = NULL;
    }
}

inline void makeFakeReadId(char* readIdBuf, unsigned int readIdNo)
{
    printf("\r%uth read has no tag.",  readIdNo);
    sprintf(readIdBuf, "fakeTag%u", readIdNo);
}

void getReadIdFromTagLine(char* readIdStr, const char* tagLine, unsigned int readIdNo, char sep = ',')
{
    int trimStart;
    for (trimStart = 1; tagLine[trimStart]!= '\0'; trimStart++) {
        if (!(isspace(tagLine[trimStart]) || tagLine[trimStart] == sep)) {
            break;
        }
    }
    if ( tagLine[trimStart] == '\0') {
        makeFakeReadId(readIdStr, readIdNo);
    } else {
        strncpy(readIdStr, &tagLine[trimStart], READ_ID_LENGTH - 1);
        readIdStr[READ_ID_LENGTH - 1] = '\0';
        formatReadId(readIdStr, sep);
    }
}

void CReadInBitsSet::get_read_id(int no, char* readId)
{
    if ((int)this->pReadsID->size() > no) {
        strcpy(readId, this->pReadsID->at(no).id);
    } else {
        sprintf(readId, "Fake_Read_%d", no + 1);
    }
}

inline bool isReadHasNlessThan(const char* read, int threshold)
{
    int counter = 0;
    for (int i = 0; read[i] != '\0'; i++) {
        if (read[i] == '.' || read[i] == 'N') {
            counter ++;
            if (counter > threshold) {
                return(false);
            }
        }
    }
    return(true);
}

bool CReadInBitsSet::save_next_read(const char* readSeq, bool bSOLiDReadFormat)
{
    bool goodRead;
    CReadInBits r;
    if (bSOLiDReadFormat) {
        if (this->bDiscardReadWithN) {
            goodRead = encodeColors(readSeq, r);
        } else {
            if (isReadHasNlessThan(readSeq, this->allowedNumOfNinRead)) {
                goodRead = encodeColorsNas3(readSeq, r);
            } else {
                goodRead = false;
            }
        }
        if (goodRead) {
            this->uiNo_of_Reads++;
            this->pReadsSet->push_back(r);
            return(true);
        }
    } else {
        if (this->bDiscardReadWithN) {
            goodRead = (r.encode(readSeq, this->uiRead_Length) == 0);
        } else {
            if (isReadHasNlessThan(readSeq, this->allowedNumOfNinRead)) {
                goodRead = (r.encodeRead_NasA(readSeq, this->uiRead_Length) == 0);
            } else {
                goodRead = false;
            }
        }
        if (goodRead) {
            this->uiNo_of_Reads++; // No of newly read-in reads
            this->pReadsSet->push_back(r);
            return(true);
        }
    }
    return(false);
}

void CReadInBitsSet::save_next_read_id(const char* tagLine, char sep)
{
    CReadID tag; // Save the read ID in the vector
    unsigned int readIdNo = (unsigned int)this->pReadsID->size();
    if ((readIdNo + 1) == this->pReadsSet->size()) {
        getReadIdFromTagLine(tag.id, tagLine, readIdNo, sep);
        this->pReadsID->push_back(tag);
    } else if (readIdNo >= this->pReadsSet->size()) {
        printf("\r%uth read has more than one tag.",  readIdNo - 1);
        getReadIdFromTagLine(tag.id, tagLine, readIdNo, sep);
        this->pReadsID->pop_back();
        this->pReadsID->push_back(tag);
    } else { // Make fake read Id tags
        for (int readID = readIdNo + 1; readID < (int)this->pReadsSet->size(); readID++) {
            makeFakeReadId(tag.id, readID);
            this->pReadsID->push_back(tag);
        }
        getReadIdFromTagLine(tag.id, tagLine, readIdNo, sep);
        this->pReadsID->push_back(tag);
    }
}

int printMissReads(const char* outputfile, CReadInBitsSet& readsSet, int missMatchScoreT)
{
    if (readsSet.uiNo_of_Reads > 0 && readsSet.pMismatchScores != NULL) {
        ofstream ofile(outputfile);
        int missReadsNo = 0;
        for (unsigned int i = 0; i < readsSet.pReadsSet->size(); i++) {
            char caRead[wordSize + 1];
            if ((int)readsSet.pMismatchScores->mismatchScore[i] >= missMatchScoreT) {
                if (readsSet.cFileType == 'S') { // csfasta format for solid read
                    decodeColors(caRead, readsSet.pReadsSet->at(i));
                } else {
                    readsSet.pReadsSet->at(i).decode(caRead);
                }
                ofile << i << ',' << caRead << endl;
                missReadsNo++;
            }
        }
        ofile.close();
        return(missReadsNo);
    } else {
        LOG_INFO("Info %d: Reads set is empty or haven't been mapped!\n", INFO_LOG);
    }
    return(-1);
}

unsigned int CReadInBitsSet::openAFileReady2GetReadQSinQUAL(const char* InputFile, unsigned int readQsLength)
{
    char qualFile[MAX_LINE];
    strcpy(qualFile, InputFile);
    chExtName(qualFile, ".QUAL");
    if (!fileExist(qualFile)) {
        chExtName(qualFile, ".qual");
        if (!fileExist(qualFile)) {
            chExtName(qualFile, "_QV.QUAL");
            if (!fileExist(qualFile)) {
                chExtName(qualFile, ".qual");
            }
        }
    }

    if (fileExist(qualFile)) {
        LOG_INFO("Info %d: Get quality scores from %s!\n", INFO_LOG, qualFile);
        if (this->pQualScores != NULL) {
            delete this->pQualScores;
            this->pQualScores = NULL;
        }
        if (this->pQualScores == NULL) {
            this->pQualScores = new CReadsQualScores(readQsLength, BUFFERED_READS_SIZE);
            this->pQualScores->openQUALfile(qualFile);
        }
        return(BUFFERED_READS_SIZE);
    } else {
        LOG_INFO("Info %d: Quality score file %s is not available!\n", INFO_LOG, qualFile);
    }
    return(0);
}