-
Notifications
You must be signed in to change notification settings - Fork 3
/
gss.h
96 lines (75 loc) · 3.28 KB
/
gss.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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/***************************************************************************
* Copyright (C) 2009 by BUI Quang Minh *
* minh.bui@univie.ac.at *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
/*
Geneset selection (GSS) for Roland
*/
#ifndef GSS_H
#define GSS_H
#include "tools.h"
#include "pdnetwork.h"
class GSSNetwork : public PDNetwork {
public:
/**
construct PD network from a NEXUS or NEWICK file, e.g. produced by SplitsTree
@param params program parameters
*/
GSSNetwork(Params ¶ms);
/**
transform the problem into an Integer Linear Programming and write to .lp file
@param params program parameters
@param outfile name of output file in LP format
@param total_size k for PD_k or total budget
@param make_bin TRUE if creating binary programming
*/
void transformLP_GSS(Params ¶ms, const char *outfile, int total_size, bool make_bin);
/**
main function to search for maximal phylogenetic diversity
@param params program parameters
@param taxa_set (OUT) the vector of set of taxa in the maximal PD set
@param taxa_order (OUT) order of inserted taxa
*/
virtual void findPD(Params ¶ms, vector<SplitSet> &taxa_set, vector<int> &taxa_order);
/**
@return TRUE if we are doing PD area optimization
*/
virtual bool isPDArea();
void readGenePValues(Params ¶ms);
protected:
/**
names of the genes
*/
StrVector genes;
map<string, int> gene_index;
/**
p-values of the genes
*/
DoubleVector gene_pvalues;
/**
z variables for genes in the LP formulation, check if it can be dropped or equals some x variable.
@param total_size k for PD_k or total budget
@param z_value (OUT): vector of: -1 if cannot reduce, 1 if equals 1, or id+2 where id is the trivial split id
*/
void checkZValue(int total_size, vector<int> &z_value);
void lpObjectiveGSS(ostream &out, Params ¶ms, IntVector &y_value, IntVector &z_value, int total_size);
void lpVariableBound(ostream &out, Params ¶ms, Split &included_vars, IntVector &y_value, IntVector &z_value);
void lpGeneConstraint(ostream &out, Params ¶ms, IntVector &z_value);
};
void runGSSAnalysis(Params ¶ms);
#endif