-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcluster.hpp
71 lines (55 loc) · 1.19 KB
/
cluster.hpp
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
#ifndef CLUSTER_HPP
#define CLUSTER_HPP
#include <string>
#include <vector>
#include <fstream>
#include <iostream>
#include <algorithm>
#include "abpoa.h"
#include "sfs.hpp"
struct Cluster {
std::string chrom ;
int s ;
int e ;
int cov ;
std::vector<std::string> seqs ;
Cluster(const std::string &chrom_, uint s_, uint e_, uint cov_ = 0) {
chrom = chrom_ ;
s = s_ ;
e = e_ ;
cov = cov_ ;
}
void set_cov(uint cov_) {
cov = cov_ ;
}
void add(const std::string &seq) {
seqs.push_back(seq);
}
int get_len() const {
uint l = 0;
uint n = 0;
for (const std::string &seq : seqs) {
++n;
l += seq.size();
}
return l / n;
}
std::vector<std::string> get_seqs() const {
return seqs ;
}
uint size() const {
return seqs.size() ;
}
void dump(std::ofstream &o) const ;
std::string poa() ;
};
struct ExtCluster {
std::string chrom ;
std::vector<ExtSFS> seqs ;
ExtCluster() {} ;
ExtCluster(const std::vector<ExtSFS>& _seqs) {
seqs = _seqs ;
chrom = seqs[0].chrom ;
}
};
#endif