-
Notifications
You must be signed in to change notification settings - Fork 2
/
runanalysis.h
31 lines (25 loc) · 910 Bytes
/
runanalysis.h
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
#ifndef RUNANALYSIS_H
#define RUNANALYSIS_H
#include <iostream>
#include <vector>
#include <string>
#include "anafunctors.h"
#include "sample.h"
#include "pairsample.h"
#include "setup.h"
using namespace std;
void analyse(ostream & abcstatfile, int dataset,
vector<vector<StrSample> > & sequences,
const vector<bool> & show_pops, const vector<vector<bool> > & show_pairs,
const vector<SingleStats*> & single_stats,
const vector<PairStats*> & pair_stats,
const vector<GroupStats*> & group_stats,
const vector<vector<size_t> > & groups);
void analyse_aggr(ostream & abcstatfile, int dataset,
vector<vector<StrSample> > & sequences,
const vector<bool> & show_pops, const vector<vector<bool> > & show_pairs,
const vector<SingleStats*> & single_stats,
const vector<PairStats*> & pair_stats,
const vector<GroupStats*> & group_stats,
const vector<vector<size_t> > & groups);
#endif // RUNANALYSIS_H