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
|
/**
* Algorithms for a de Bruijn Graph using a Bloom filter
* Copyright 2014 Canada's Michael Smith Genome Science Centre
*/
#ifndef DBGBLOOMALGORITHMS_H
#define DBGBLOOMALGORITHMS_H 1
#include "Common/Kmer.h"
#include "Common/KmerIterator.h"
#include "DBGBloom.h"
#include "Common/StringUtil.h"
#include "Common/Sequence.h"
#include "DataLayer/FastaReader.h"
#include "Graph/Path.h"
#include <climits>
#include <string>
#include <algorithm> // for std::max
#define NO_MATCH UINT_MAX
static inline Sequence pathToSeq(Path<Kmer> path)
{
Sequence seq;
assert(path.size() > 0);
seq.append(path[0].str());
for (unsigned i = 1; i < path.size(); i++)
seq.append(1, path[i].getLastBaseChar());
return seq;
}
/**
* Choose a suitable starting kmer for a path search and
* return its position. More specifically, find the kmer
* closest to the end of the given sequence that is followed by
* at least (numMatchesThreshold - 1) consecutive kmers that
* are also present in the Bloom filter de Bruijn graph. If there
* is no sequence of matches of length numMatchesThreshold,
* use the longest sequence of matching kmers instead.
*
* @param seq sequence in which to find start kmer
* @param k kmer size
* @param g de Bruijn graph
* @param numMatchesThreshold if we encounter a sequence
* of numMatchesThreshold consecutive kmers in the Bloom filter,
* choose the kmer at the beginning of that sequence
* @param anchorToEnd if true, all k-mers from end of sequence
* up to the chosen k-mer must be matches. (This option is used when
* we wish to preserve the original sequences of the reads.)
* @return position of chosen start kmer
*/
template<typename Graph>
static inline unsigned getStartKmerPos(const Sequence& seq,
unsigned k, Direction dir, const Graph& g,
unsigned numMatchesThreshold=1, bool anchorToEnd=false)
{
assert(numMatchesThreshold > 0);
if (seq.size() < k)
return NO_MATCH;
int inc, startPos, endPos;
if (dir == FORWARD) {
inc = -1;
startPos = seq.length() - k;
endPos = -1;
} else {
assert(dir == REVERSE);
inc = 1;
startPos = 0;
endPos = seq.length() - k + 1;
}
unsigned matchCount = 0;
unsigned maxMatchLen = 0;
unsigned maxMatchPos = 0;
int i;
for (i = startPos; i != endPos; i += inc) {
assert(i >= 0 && i <= (int)(seq.length() - k + 1));
std::string kmerStr = seq.substr(i, k);
if (kmerStr.find_first_not_of("AGCTagct")
!= std::string::npos ||
!vertex_exists(Kmer(kmerStr), g)) {
if (matchCount > maxMatchLen) {
assert(i - inc >= 0 &&
i - inc < (int)(seq.length() - k + 1));
maxMatchPos = i - inc;
maxMatchLen = matchCount;
}
if (anchorToEnd)
break;
matchCount = 0;
} else {
matchCount++;
if (matchCount >= numMatchesThreshold)
return i;
}
}
/* handle case where first/last kmer in seq is a match */
if (matchCount > maxMatchLen) {
assert(i - inc >= 0 &&
i - inc < (int)(seq.length() - k + 1));
maxMatchPos = i - inc;
maxMatchLen = matchCount;
}
if (maxMatchLen == 0)
return NO_MATCH;
else
return maxMatchPos;
}
struct BaseChangeScore {
size_t m_pos;
char m_base;
unsigned m_score;
public:
BaseChangeScore() :
m_pos(0), m_base('N'), m_score(0){}
BaseChangeScore(size_t pos, char base, unsigned score) :
m_pos(pos), m_base(base), m_score(score){}
};
template<typename Graph>
static inline bool correctSingleBaseError(const Graph& g, unsigned k,
FastaRecord& read, size_t& correctedPos, bool rc = false)
{
if (read.seq.length() < k)
return false;
const std::string bases = "AGCT";
const size_t minScore = 3;
std::vector<BaseChangeScore> scores;
for (size_t i = 0; i < read.seq.length(); i++) {
size_t overlapStart = std::max((int) (i - k + 1), 0);
size_t overlapEnd = std::min(i + k - 1, read.seq.length() - 1);
assert(overlapStart < overlapEnd);
Sequence overlapStr = read.seq.substr(overlapStart,
overlapEnd - overlapStart + 1);
size_t changePos = i - overlapStart;
for (size_t j = 0; j < bases.size(); j++) {
if (read.seq[i] == bases[j])
continue;
overlapStr[changePos] = bases[j];
size_t score = 0;
for (KmerIterator it(overlapStr, k, rc); it != KmerIterator::end();
it++)
{
if (vertex_exists(*it, g))
score++;
}
if (score > minScore)
scores.push_back(BaseChangeScore(i, bases[j], score));
}
}
if (scores.size() == 0)
return false;
BaseChangeScore bestScore;
bool bestScoreSet = false;
for (size_t i = 0; i < scores.size(); i++) {
if (!bestScoreSet || scores[i].m_score > bestScore.m_score) {
bestScore = scores[i];
bestScoreSet = true;
}
}
correctedPos = bestScore.m_pos;
read.seq[correctedPos] = bestScore.m_base;
return true;
}
/** Uppercase only bases that are present in original reads.
* @return number of mis-matching bases. */
static inline unsigned maskNew(const FastaRecord& read1,
const FastaRecord& read2, FastaRecord& merged, int mask = 0)
{
Sequence r1 = read1.seq, r2 = reverseComplement(read2.seq);
if (mask) {
transform(r1.begin(), r1.end(), r1.begin(), ::tolower);
transform(r2.begin(), r2.end(), r2.begin(), ::tolower);
transform(merged.seq.begin(), merged.seq.end(), merged.seq.begin(),
::tolower);
}
unsigned mismatches = 0;
for (unsigned i = 0; i < r1.size(); i++) {
assert(i < merged.seq.size());
if (r1[i] == merged.seq[i])
merged.seq[i] = toupper(r1[i]);
else
mismatches++;
}
for (unsigned i = 0; i < r2.size(); i++) {
assert(r2.size() <= merged.seq.size());
unsigned merged_loc = i + merged.seq.size() - r2.size();
if (r2[i] == merged.seq[merged_loc])
merged.seq[merged_loc] = toupper(r2[i]);
else
mismatches++;
}
return mismatches;
}
#endif
|