#614 closed (fixed)
Feature table
Reported by: | Fredrik Levander | Owned by: | Fredrik Levander |
---|---|---|---|
Milestone: | Proteios SE 2.10 | Keywords: | |
Cc: |
Description
Try out if features should be in a table
Change History (26)
comment:1 Changed 14 years ago by
comment:6 Changed 14 years ago by
Milestone: | Proteios SE Future Release → Proteios SE 2.10 |
---|---|
Status: | new → assigned |
comment:7 Changed 14 years ago by
comment:8 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
It seems feasible to use a feature table, and initial implementations have been made already.
comment:10 Changed 13 years ago by
comment:12 Changed 13 years ago by
comment:14 Changed 13 years ago by
comment:15 Changed 13 years ago by
comment:16 Changed 13 years ago by
comment:18 Changed 13 years ago by
comment:19 Changed 13 years ago by
comment:20 Changed 13 years ago by
comment:22 Changed 13 years ago by
(In [4188]) Refs #752. Refs #668. Refs #614. Refs #287. Support for running msInspect feature detection from Proteios SE updated with option to import the created feature file directly:
- Class/file action/file/UseSpectrumFileForMsInspectSearchExtension.java in client/servlet/ updated with new check box for option to import created feature file. The check box is coupled to new valid parameter
VBoolean RunMsInspect.VMSINSPECTIMPORTRESULTS
. Default is to not import the feature file directly.
- Class/file action/msInspect/RunMsInspect.java in client/servlet/ updated:
a. New valid parameterVBoolean VMSINSPECTIMPORTRESULTS
added.
b. Protected methodvoid runMe()
updated to retrieve the value of valid parameterVBoolean VMSINSPECTIMPORTRESULTS
, and if the value istrue
create an import job after the feature detection job. The path of the feature file to be created is transferred to the import job as a string job parameter. Jobs are created by calling new private methodsJob createMsInspectJob(...)
andJob createMsInspectImportJob(...)
.
c. New private methodJob createMsInspectJob(DbControl dc, File spectrumFile, ... , Job blockerJob)
added. It creates an msInspect job.
d. New private methodJob createMsInspectImportJob(DbControl dc, String featureFilePathStr, String featureFileName, Job blockerJob)
added. It creates an msInspect import job.
- Class/file plugins/MsInspectFeatureImporter.java in plugin/ updated:{{BR]]a. Public method
void run(Request request, Response response, ProgressReporter progress)
updated to retrieve value of feature file path from a string job parameter and obtain the feature file from this, in case theFile
value retrieved from aFile
job parameter isnull
.
- English dictionary file locale/en/dictionary in client/servlet/ updated with new string keys.
comment:23 Changed 12 years ago by
(In [4206]) Refs #751. Refs #744. Refs #614. Refs #287. Support for running OpenMS feature detection from Proteios SE updated with option to import the created feature file directly:
- Class/file action/file/UseSpectrumFileForOpenMsSearchExtension.java in client/servlet/ updated with new check box for option to import created feature file. The check box is coupled to new valid parameter
VBoolean RunOpenMs.VOPENMSIMPORTRESULTS
. Default is to not import the feature file directly.
- Class/file action/openMs/RunOpenMs.java in client/servlet/ updated:
a. New valid parameterVBoolean VOPENMSIMPORTRESULTS
added.
b. Protected methodvoid runMe()
updated to retrieve the value of valid parameterVBoolean VOPENMSIMPORTRESULTS
, and if the value istrue
create an import job after the feature detection job. As import of features requires a preceding feature detection job, the code for running a single OpenMS job has been updated to clarify if the job instance is aPeakPicker
orFeatureFinder
job. The path of the feature file to be created is transferred to the import job as a string job parameter. Import jobs are created by calling new private methodJob createOpenMsImportJob(...)
.
c. New private methodJob createOpenMsImportJob(DbControl dc, String featureFilePathStr, String featureFileName, Job blockerJob)
added. It creates an OpenMS import job.
- English dictionary file locale/en/dictionary in client/servlet/ updated with new string keys.
comment:24 Changed 12 years ago by
comment:25 Changed 12 years ago by
comment:26 Changed 11 years ago by
Note: See
TracTickets for help on using
tickets.
(In [3422]) Refs #614. Initial addition of feature table.