]> ruin.nu Git - germs.git/blob - src/modelidentifier.h
1ed4809ff72319836c798cbdfd14c1c231183c86
[germs.git] / src / modelidentifier.h
1 /***************************************************************************
2  *   Copyright (C) 2006 by Michael Andreen                                 *
3  *   andreen@student.chalmers.se                                           *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA          *
19  ***************************************************************************/
20
21 #ifndef __MODELIDENTIFIER_H__
22 #define __MODELIDENTIFIER_H__
23
24 #include "geneorder.h"
25
26 #include <map>
27 #include <string>
28 #include <stdexcept>
29
30 struct fann;
31
32 /**
33  * Identifies the model this gene order belongs to
34  * \author Michael Andreen
35  */
36 class ModelIdentifier{
37         public:
38                 enum Model{Whirl,X,FatX,Zipper,Cloud};
39
40                 /**
41                  * Creates a new identifier given an artificial neural network
42                  *
43                  * \param ann filename, including path, to the neural network
44                  *
45                  * \throws std::invalid_argument exception if the ann could not be
46                  * opened
47                  */
48                 ModelIdentifier(std::string ann);
49
50                 /**
51                  * Identifies the model for a given gene order.
52                  *
53                  * \returns a map with the model as key and the score between -1 and 1
54                  */
55                 std::map<Model,double> identify(const GeneOrder& go);
56
57                 ~ModelIdentifier();
58         private:
59                 fann* _ann;
60
61                 //disable for the moment
62                 void operator=(const ModelIdentifier&){}
63
64 };
65
66 #endif
67