Changeset 3777
- Timestamp:
- Aug 18, 2010, 2:43:02 PM (13 years ago)
- Location:
- trunk/client/servlet/src
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/servlet/src/locale/en/dictionary
r3763 r3777 153 153 EndDate=End Date 154 154 Ended=Ended 155 EndTimeToleranceMinutes=End retention time tolerance (min) 155 156 EndRetentionTimeInMinutes=End retention time (min) 156 157 EnterContactData=Enter Contact Data … … 191 192 Extracts=Extracts 192 193 FastJobQueue=Fast 194 Feature=Feature 193 195 FeatureExternalId=Feature External ID 194 196 FeatureFile=Feature File … … 304 306 isNotADirectory=is not a directory 305 307 IsNotADirectory=is not a directory 308 isSecondary=Match related 306 309 itemDeleted=item deleted 307 310 ItemId=Item ID … … 391 394 MassToChargeRatio = m/z 392 395 MatchedPeaks=Matched Peaks 393 MatchFeature Hits=Match features and hits396 MatchFeaturesHits=Match features and hits 394 397 MaxNumMissedCleavages=Max Number of Missed Cleavages 395 398 Md5=MD5 … … 413 416 MzDataFile=mzData File 414 417 MzMLFile=mzML File 418 MzTolerance=m/z tolerance 415 419 Name=Name 416 420 NewDirectory=New directory … … 601 605 PoolExtracts=Pool Extracts 602 606 Precursor=Precursor 607 PrecursorQuantity=Precursor quantity 603 608 PreferencesMenuItem=Preferences... 604 609 Preferences=Preferences … … 707 712 ScoreType=Score Type 708 713 ScoreTypeSettings=Settings for score type 714 Search=Search 709 715 SearchDatabases=Search database(s) 710 716 SearchDate=Searched … … 800 806 StartHere=Start Here 801 807 StartRetentionTimeInMinutes=Start retention time (min) 808 StartTimeToleranceMinutes=Start retention time tolerance (min) 802 809 Start=Start 803 810 StatusMessage=Status Message -
trunk/client/servlet/src/org/proteios/action/ActionFactory.java
r3773 r3777 41 41 import org.proteios.action.execute.Login; 42 42 import org.proteios.action.extract.ViewExtract; 43 import org.proteios.action.feature.ViewFeatureHits; 43 44 import org.proteios.action.file.ViewFile; 44 45 import org.proteios.action.gel.ViewGelOrNewGel; … … 50 51 import org.proteios.action.hit.ViewHitSpectrumFile; 51 52 import org.proteios.action.hit.ViewHitSubHits; 53 import org.proteios.action.job.ViewJob; 52 54 import org.proteios.action.news.ViewNews; 53 import org.proteios.action.job.ViewJob;54 55 import org.proteios.action.plugin.ViewPluginDefinition; 55 56 import org.proteios.action.project.ViewProject; 56 import org.proteios.action.project.ViewProjectHome;57 57 import org.proteios.action.read.ViewHome; 58 58 import org.proteios.action.sample.ViewSample; … … 65 65 import org.proteios.core.ItemFactory; 66 66 import org.proteios.core.ItemNotFoundException; 67 import org.proteios.core.Job; 68 import org.proteios.core.News; 67 69 import org.proteios.core.PermissionDeniedException; 68 import org.proteios.core.Job;69 70 import org.proteios.core.PluginDefinition; 70 71 import org.proteios.core.Project; 71 72 import org.proteios.core.QueryFactory; 72 73 import org.proteios.core.Sample; 73 import org.proteios.core.News;74 74 import org.proteios.core.SessionControl; 75 75 import org.proteios.core.User; … … 645 645 } 646 646 } 647 if (describedClass.equals(org.proteios.core.Feature.class)) 648 { 649 if (key.equals("PeptideSequence")) 650 { 651 link = getActionLink(ViewFeatureHits.class, label); 652 } 653 } 647 654 if (describedClass.equals(Hit.class)) 648 655 { -
trunk/client/servlet/src/org/proteios/action/feature/FeatureHitMatchForm.java
r3765 r3777 35 35 ColumnContainer cc; 36 36 cc = new ColumnContainer(); 37 title = new Title(" FeatureHitsMatchForm");37 title = new Title("Settings for matching features and MS/MS identifications"); 38 38 Form form = new Form("FeatureHitsMatchForm"); 39 39 Fieldset properties = new Fieldset(); … … 43 43 CreateFeatureHitMatchJob.VTOLERANCE); 44 44 tolF.setValue(new Float(0.01)); 45 tolF.setLabel(" Tolerance");45 tolF.setLabel("MzTolerance"); 46 46 properties.add(tolF); 47 47 TextField<Float> tolStartF = new TextField<Float>( … … 49 49 tolStartF.setValue(new Float(0.5)); 50 50 tolStartF.setLabel("StartTimeToleranceMinutes"); 51 tolStartF.setHelp("MS/MS before feature start retention time."); 51 52 properties.add(tolStartF); 52 53 TextField<Float> tolEndF = new TextField<Float>( … … 54 55 tolEndF.setValue(new Float(0.5)); 55 56 tolEndF.setLabel("EndTimeToleranceMinutes"); 57 tolEndF.setHelp("MS/MS after feature end retention time."); 56 58 properties.add(tolEndF); 57 59 Checkbox<VBoolean> isSecondaryF = new Checkbox<VBoolean>(
Note: See TracChangeset
for help on using the changeset viewer.