-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfiguration.java
More file actions
282 lines (222 loc) · 6.29 KB
/
Configuration.java
File metadata and controls
282 lines (222 loc) · 6.29 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
package configuration;
import java.util.ArrayList;
import java.util.List;
import org.joda.time.LocalDate;
import org.xmappr.Element;
import org.xmappr.RootElement;
/**
* The Class Configuration.
* Elements from konfiguration.xml are loaded into here, into variables defined acc. to xml tag.
* Class for Tags konfiguration
*/
@RootElement
public class Configuration {
/** The model coeff ext. */
private String modelCoeffExt = ".coeff";
/** The model config ext. */
private String modelConfigExt = ".config";
/** The profilfile dense. */
private String profilfileDense = "profil_dense";
/** The profilfile sparse. */
private String profilfileSparse = "profil_mm";
/** The profilfile sparse col. */
private String profilfileSparseCol = "profil_mm_cols";
/** The profilfile sparse row. */
private String profilfileSparseRow = "profil_mm_rows";
private String profilfileSvmlight = "profil_svmlight";
private String profilfileSvmlightHeadExt = "_head";
/** The inputfiles. */
@Element
public Inputfiles inputfiles;
@Element
public Inputfilter inputfilter;
@Element
public DDIConfiguration ddiconfiguration;
/** The outputpath. */
@Element
public String outputpath;
/** The modelpath. */
@Element
public String modelpath;
/** The create profil dense. */
@Element(defaultValue="false")
public boolean createProfilDense;
/** The create profil sparse. */
@Element(defaultValue="false")
public boolean createProfilMatrixMarket;
@Element(defaultValue="false")
public boolean createProfilSvmlight;
/** The createScores. */
@Element(defaultValue="true")
public boolean createScores;
/** The outputfile. */
@Element(defaultValue="scores.csv")
public String outputfile;
@Element(defaultValue="INTERCEPT")
public static String interceptname;
/** The reference_date.
* days are counted starting here
* */
@Element(defaultValue="01JAN2006")
public static String reference_date;
/** The upcaser for all data fields. */
@Element(defaultValue="true")
public boolean upcase;
@Element
public String logfile;
/** The upcaser for all data fields. */
@Element(defaultValue="false")
public boolean addPidToSvm;
/**
* Gets the inputfiles.
*
* @return the inputfiles
*/
public List<Datafile> getInputfiles() {
return inputfiles.datafile;
}
/**
* Gets the outputfile.
*
* @return the outputfile
*/
public String getOutputfile() {
if (outputfile==null) outputfile = "scores.csv";
return outputpath + "\\" + outputfile;
}
/**
* Gets the modelpath.
*
* @return the modelpath
*/
public String getModelpath() {
return modelpath;
}
/**
* Gets the model coeff ext.
*
* @return the model coeff ext
*/
public String getModelCoeffExt() {
return modelCoeffExt;
}
/**
* Gets the model config ext.
*
* @return the model config ext
*/
public String getModelConfigExt() {
return modelConfigExt;
}
/**
* Gets the profilfile dense.
*
* @param model the model
* @return the profilfile dense
*/
public String getProfilfileDense(String model, boolean targets) {
if (targets)
return outputpath + "\\" + model + profilfileDense + "_targets.csv";
else
return outputpath + "\\" + model + profilfileDense + ".csv";
}
/**
* Gets the profilfile dense tmp.
*
* @param model the model
* @return the profilfile dense tmp
*/
public String getProfilfileDenseTmp(String model, boolean targets) {
if (targets)
return outputpath + "\\" + model + profilfileDense + "_targets.tmp";
else
return outputpath + "\\" + model + profilfileDense + ".tmp";
}
/**
* Gets the profilfile sparse.
*
* @param model the model
* @return the profilfile sparse
*/
public String getProfilfileSparse(String model, boolean targets) {
if (targets)
return outputpath + "\\" + model + profilfileSparse + "_targets.csv";
else
return outputpath + "\\" + model + profilfileSparse + ".csv";
}
/**
* Gets the profilfile sparse co ls.
*
* @param model the model
* @return the profilfile sparse co ls
*/
public String getProfilfileSparseCOLs(String model, boolean targets) {
if (targets)
return outputpath + "\\" + model + profilfileSparseCol + "_targets.csv";
else
return outputpath + "\\" + model + profilfileSparseCol + ".csv";
}
/**
* Gets the profilfile sparse ro ws.
*
* @param model the model
* @return the profilfile sparse ro ws
*/
public String getProfilfileSparseROWs(String model) {
return outputpath + "\\" + model + profilfileSparseRow + ".csv";
}
public String getProfilfileSvmlight(String model, boolean targets) {
if (targets)
return outputpath + "\\" + model + profilfileSvmlight + "_targets.svm";
else
return outputpath + "\\" + model + profilfileSvmlight + ".svm";
}
public String getProfilfileSvmlightHeader(String model, boolean targets) {
if (targets)
return outputpath + "\\" + model + profilfileSvmlight + "_targets"+profilfileSvmlightHeadExt+".svm";
else
return outputpath + "\\" + model + profilfileSvmlight + profilfileSvmlightHeadExt+".svm";
}
public boolean createProfilDense() {
return createProfilDense;
}
public boolean createProfilSparse() {
return createProfilMatrixMarket;
}
public boolean createProfilSvmlight() {
return createProfilSvmlight;
}
public boolean createScores() {
return createScores;
}
//temp path for db if sorting
/**
* Gets the tmp path.
*
* @return the tmp path
*/
public String getTmpPath() {
return this.getOutputPath();
}
public String getOutputPath() {
return outputpath;
}
public boolean upcase() {
return upcase;
}
public boolean addPidToSvm() {
return addPidToSvm;
}
public ArrayList<Filter> getFilters4File (String data_id) {
if (inputfilter==null) return null;
return inputfilter.getFilters4File(data_id);
}
public static LocalDate getReferenceDate() {
if (Configuration.reference_date == null)
return Utils.parseDate(Consts.reference_date);
else return Utils.parseDate(Configuration.reference_date);
}
public String getLogfile() {
return logfile;
}
}