File: parammr.h

package info (click to toggle)
clonalorigin 1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,724 kB
  • sloc: cpp: 10,489; perl: 349; xml: 130; makefile: 42; sh: 23
file content (32 lines) | stat: -rw-r--r-- 770 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
#ifndef PARAMMR_H
#define PARAMMR_H
//
#include "paramcons.h"
//
class ParamMR : public ParamQt
{

public:
	ParamMR();
	virtual ~ParamMR();
	void account();
	void consensus(int cutoff,int site=0);
	void consensusAllSites(int cutoff);
	void makeDensity(ParamCons*paramcons);
	void toCSV(QTextStream*out,int cutoff,int step);
	void toArtemis(QTextStream*out,int cutoff);
	QString toString();
    void correctForPrior();
protected:
	int its;
	int l;
	int coef;
	vector<vector<RecEdge> > edges;
	vector<RecEdge> means;
	bool sameEdge(RecEdge*,RecEdge*);
	double dist(int,double,int,double);
	RecEdge average(RecEdge*r1,RecEdge*r2,int coef);
	void gotowards(int e1,double a1,int e2,double a2,int*e3,double*a3,double dist);
    vector<vector<vector<int> > > states;
};
#endif