00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #ifndef OPENMS_FORMAT_LIBSVMENCODER_H
00036 #define OPENMS_FORMAT_LIBSVMENCODER_H
00037
00038 #include <OpenMS/DATASTRUCTURES/String.h>
00039 #include <OpenMS/CHEMISTRY/AASequence.h>
00040 #include <svm.h>
00041
00042 #include <vector>
00043 #include <utility>
00044
00045 namespace OpenMS
00046 {
00055 class OPENMS_DLLAPI LibSVMEncoder
00056 {
00057 public:
00059 LibSVMEncoder();
00061 ~LibSVMEncoder();
00062
00072 void encodeCompositionVector(const String & sequence, std::vector<std::pair<Int, DoubleReal> > & encoded_vector, const String & allowed_characters = "ACDEFGHIKLMNPQRSTVWY");
00073
00083 void encodeCompositionVectors(const std::vector<String> & sequences, const String & allowed_characters, std::vector<std::vector<std::pair<Int, DoubleReal> > > & composition_vectors);
00085 svm_node * encodeLibSVMVector(const std::vector<std::pair<Int, DoubleReal> > & feature_vector);
00086
00088 void encodeLibSVMVectors(const std::vector<std::vector<std::pair<Int, DoubleReal> > > & feature_vectors, std::vector<svm_node *> & libsvm_vectors);
00089
00091 svm_problem * encodeLibSVMProblem(const std::vector<svm_node *> & vectors,
00092 std::vector<DoubleReal> & labels);
00093
00095 svm_problem * encodeLibSVMProblemWithCompositionVectors(const std::vector<String> & sequences,
00096 std::vector<DoubleReal> & labels,
00097 const String & allowed_characters);
00098
00100 svm_problem * encodeLibSVMProblemWithCompositionAndLengthVectors(const std::vector<String> & sequences,
00101 std::vector<DoubleReal> & labels,
00102 const String & allowed_characters,
00103 UInt maximum_sequence_length);
00104
00106 svm_problem * encodeLibSVMProblemWithCompositionLengthAndWeightVectors(const std::vector<String> & sequences,
00107 std::vector<DoubleReal> & labels,
00108 const String & allowed_characters);
00109
00111 bool storeLibSVMProblem(const String & filename, const svm_problem * problem) const;
00112
00114 svm_problem * loadLibSVMProblem(const String & filename);
00115
00117 void encodeOligoBorders(String sequence,
00118 UInt k_mer_length,
00119 const String & allowed_characters,
00120 UInt border_length,
00121 std::vector<std::pair<Int, DoubleReal> > & libsvm_vector,
00122 bool strict = false,
00123 bool unpaired = false,
00124 bool length_encoding = false);
00125
00127 svm_problem * encodeLibSVMProblemWithOligoBorderVectors(const std::vector<String> & sequences,
00128 std::vector<DoubleReal> & labels,
00129 UInt k_mer_length,
00130 const String & allowed_characters,
00131 UInt border_length,
00132 bool strict = false,
00133 bool unpaired = false,
00134 bool length_encoding = false);
00135
00137 void encodeProblemWithOligoBorderVectors(const std::vector<AASequence> & sequences,
00138 UInt k_mer_length,
00139 const String & allowed_characters,
00140 UInt border_length,
00141 std::vector<std::vector<std::pair<Int, DoubleReal> > > & vectors);
00142
00149 void libSVMVectorToString(svm_node * vector, String & output);
00150
00157 void libSVMVectorsToString(svm_problem * vector, String & output);
00158
00165 void encodeOligo(const AASequence & sequence,
00166 UInt k_mer_length,
00167 const String & allowed_characters,
00168 std::vector<std::pair<Int, DoubleReal> > & values,
00169 bool is_right_border = false);
00170
00176 static void destroyProblem(svm_problem * problem);
00177
00178 private:
00180 static bool cmpOligos_(std::pair<Int, DoubleReal> a,
00181 std::pair<Int, DoubleReal> b);
00182
00183 };
00184
00185 }
00186
00187 #endif // OPENMS_FORMAT_LIBSVMENCODER_H