File: MatchPos.cpp

package info (click to toggle)
pbseqlib 5.3.1%2Bdfsg-2.1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,136 kB
  • sloc: cpp: 77,246; python: 570; makefile: 312; sh: 111; ansic: 9
file content (52 lines) | stat: -rw-r--r-- 1,139 bytes parent folder | download | duplicates (4)
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
#include <alignment/datastructures/anchoring/MatchPos.hpp>

MatchPos::MatchPos(const MatchPos &rhs) { (*this) = rhs; }

int MatchPos::GetMultiplicity() const { return m; }

MatchWeight MatchPos::GetWeight() const
{
    if (m > 0) {
        return (1.0 * l) / m;
    } else {
        return 0;
    }
}

UInt MatchPos::GetT() { return t; }

UInt MatchPos::GetQ() { return (UInt)q; }

UInt MatchPos::GetW() { return w; }

std::ostream &operator<<(std::ostream &out, MatchPos &p)
{
    out << p.q << "\t" << p.t << "\t" << p.l << "\t" << p.m;
    return out;
}

ChainedMatchPos::ChainedMatchPos(DNALength pt, DNALength pq, DNALength pl, int pm)
    : MatchPos(pt, pq, pl, pm)
{
    score = 0;
    chainPrev = NULL;
}

ChainedMatchPos::ChainedMatchPos() : MatchPos()
{
    score = 0;
    chainPrev = NULL;
}

int ChainedMatchPos::SetScore(int _score) { return (score = _score); }

ChainedMatchPos *ChainedMatchPos::SetChainPrev(ChainedMatchPos *_chainPrev)
{
    return (chainPrev = _chainPrev);
}

std::ostream &operator<<(std::ostream &out, ChainedMatchPos &p)
{
    out << p.q << "\t" << p.t << "\t" << p.l << "\t" << p.m;
    return out;
}