File: LISPValue.hpp

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 (20 lines) | stat: -rw-r--r-- 743 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
#ifndef _BLASR_LISPVALUE_HPP_
#define _BLASR_LISPVALUE_HPP_

#include <cmath>

#include <alignment/algorithms/anchoring/ScoreAnchors.hpp>
#include <alignment/datastructures/anchoring/MatchPos.hpp>
#include <alignment/tuples/TupleCountTable.hpp>

template <typename T_MatchPos>
void StoreNonOverlappingIndices(std::vector<T_MatchPos> &lis, std::vector<T_MatchPos> &noOvpLis);

template <typename T_TextSequence, typename T_Sequence, typename T_MatchPos, typename T_Tuple>
float ComputeLISPValue(std::vector<T_MatchPos> &lis, T_TextSequence &text, T_Sequence &read,
                       TupleMetrics &tm, TupleCountTable<T_TextSequence, T_Tuple> &ct,
                       int &lisNBases, int &lisSize);

#include "LISPValueImpl.hpp"

#endif