Changeset 3777


Ignore:
Timestamp:
Aug 18, 2010, 2:43:02 PM (13 years ago)
Author:
Fredrik Levander
Message:

Refs #614. Adding link to feature peptide sequences, to find the matching hits.

Location:
trunk/client/servlet/src
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/client/servlet/src/locale/en/dictionary

    r3763 r3777  
    153153EndDate=End Date
    154154Ended=Ended
     155EndTimeToleranceMinutes=End retention time tolerance (min)
    155156EndRetentionTimeInMinutes=End retention time (min)
    156157EnterContactData=Enter Contact Data
     
    191192Extracts=Extracts
    192193FastJobQueue=Fast
     194Feature=Feature
    193195FeatureExternalId=Feature External ID
    194196FeatureFile=Feature File
     
    304306isNotADirectory=is not a directory
    305307IsNotADirectory=is not a directory
     308isSecondary=Match related
    306309itemDeleted=item deleted
    307310ItemId=Item ID
     
    391394MassToChargeRatio = m/z
    392395MatchedPeaks=Matched Peaks
    393 MatchFeatureHits=Match features and hits
     396MatchFeaturesHits=Match features and hits
    394397MaxNumMissedCleavages=Max Number of Missed Cleavages
    395398Md5=MD5
     
    413416MzDataFile=mzData File
    414417MzMLFile=mzML File
     418MzTolerance=m/z tolerance
    415419Name=Name
    416420NewDirectory=New directory
     
    601605PoolExtracts=Pool Extracts
    602606Precursor=Precursor
     607PrecursorQuantity=Precursor quantity
    603608PreferencesMenuItem=Preferences...
    604609Preferences=Preferences
     
    707712ScoreType=Score Type
    708713ScoreTypeSettings=Settings for score type
     714Search=Search
    709715SearchDatabases=Search database(s)
    710716SearchDate=Searched
     
    800806StartHere=Start Here
    801807StartRetentionTimeInMinutes=Start retention time (min)
     808StartTimeToleranceMinutes=Start retention time tolerance (min)
    802809Start=Start
    803810StatusMessage=Status Message
  • trunk/client/servlet/src/org/proteios/action/ActionFactory.java

    r3773 r3777  
    4141import org.proteios.action.execute.Login;
    4242import org.proteios.action.extract.ViewExtract;
     43import org.proteios.action.feature.ViewFeatureHits;
    4344import org.proteios.action.file.ViewFile;
    4445import org.proteios.action.gel.ViewGelOrNewGel;
     
    5051import org.proteios.action.hit.ViewHitSpectrumFile;
    5152import org.proteios.action.hit.ViewHitSubHits;
     53import org.proteios.action.job.ViewJob;
    5254import org.proteios.action.news.ViewNews;
    53 import org.proteios.action.job.ViewJob;
    5455import org.proteios.action.plugin.ViewPluginDefinition;
    5556import org.proteios.action.project.ViewProject;
    56 import org.proteios.action.project.ViewProjectHome;
    5757import org.proteios.action.read.ViewHome;
    5858import org.proteios.action.sample.ViewSample;
     
    6565import org.proteios.core.ItemFactory;
    6666import org.proteios.core.ItemNotFoundException;
     67import org.proteios.core.Job;
     68import org.proteios.core.News;
    6769import org.proteios.core.PermissionDeniedException;
    68 import org.proteios.core.Job;
    6970import org.proteios.core.PluginDefinition;
    7071import org.proteios.core.Project;
    7172import org.proteios.core.QueryFactory;
    7273import org.proteios.core.Sample;
    73 import org.proteios.core.News;
    7474import org.proteios.core.SessionControl;
    7575import org.proteios.core.User;
     
    645645      }
    646646    }
     647    if (describedClass.equals(org.proteios.core.Feature.class))
     648    {
     649      if (key.equals("PeptideSequence"))
     650      {
     651        link = getActionLink(ViewFeatureHits.class, label);
     652      }
     653    }
    647654    if (describedClass.equals(Hit.class))
    648655    {
  • trunk/client/servlet/src/org/proteios/action/feature/FeatureHitMatchForm.java

    r3765 r3777  
    3535    ColumnContainer cc;
    3636    cc = new ColumnContainer();
    37     title = new Title("FeatureHitsMatchForm");
     37    title = new Title("Settings for matching features and MS/MS identifications");
    3838    Form form = new Form("FeatureHitsMatchForm");
    3939    Fieldset properties = new Fieldset();
     
    4343      CreateFeatureHitMatchJob.VTOLERANCE);
    4444    tolF.setValue(new Float(0.01));
    45     tolF.setLabel("Tolerance");
     45    tolF.setLabel("MzTolerance");
    4646    properties.add(tolF);
    4747    TextField<Float> tolStartF = new TextField<Float>(
     
    4949    tolStartF.setValue(new Float(0.5));
    5050    tolStartF.setLabel("StartTimeToleranceMinutes");
     51    tolStartF.setHelp("MS/MS before feature start retention time.");
    5152    properties.add(tolStartF);
    5253    TextField<Float> tolEndF = new TextField<Float>(
     
    5455    tolEndF.setValue(new Float(0.5));
    5556    tolEndF.setLabel("EndTimeToleranceMinutes");
     57    tolEndF.setHelp("MS/MS after feature end retention time.");
    5658    properties.add(tolEndF);
    5759    Checkbox<VBoolean> isSecondaryF = new Checkbox<VBoolean>(
Note: See TracChangeset for help on using the changeset viewer.