Changeset 3761


Ignore:
Timestamp:
Aug 9, 2010, 10:25:55 AM (13 years ago)
Author:
Fredrik Levander
Message:

Fixes #672. Updated help text

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/client/servlet/src/org/proteios/action/hit/ProteinAssembly1.java

    r3756 r3761  
    9595    isProteinCB.setLabel("FileWise");
    9696    isProteinCB.setValue("true");
     97    isProteinCB.setHelp("Per peaklist file report");
    9798    properties.add(isProteinCB);
    9899    Checkbox<VBoolean> isOccamCB = new Checkbox<VBoolean>(
     
    100101    isOccamCB.setLabel("OccamsRazor");
    101102    isOccamCB.setValue("true");
     103    isOccamCB.setHelp("Remove subsequence proteins");
    102104    isOccamCB.isChecked(true);
    103105    properties.add(isOccamCB);
     
    109111    isFDR.setLabel("UseCombinedFDR");
    110112    isFDR.setValue("true");
     113    isFDR.setHelp("Peptide level setting");
    111114    TextField<Float> fdrF = new TextField<Float>(
    112115      CreateProteinAssemblyJob.VCUTOFF);
    113116    fdrF.setValue(new Float(0.01));
    114117    fdrF.setLabel("PeptideCutOff");
     118    fdrF.setHelp("FDR or e-value cutoff");
    115119    validation.add(isFDR);
    116120    validation.add(fdrF);
     
    164168    tolF.setValue(new Float(0.15));
    165169    tolF.setLabel("MatchTolerance");
     170    tolF.setHelp("Tolerance when matching reporters");
    166171    quantFS.add(tolF);
    167172    TextField<Integer> idxF = new TextField<Integer>(
     
    181186    String instruction = "The report will be generated by finding protein groups for peptides that pass the peptide cutoff.";
    182187    instruction += " If the search results combination has been performed, the peptide combined FDR can be used as cutoff, otherwise max E-value can be used.";
    183     instruction += " The report can be filtered based on protein FDR if decoy peptides are present (search in target-decoy database and decoys kept in combined hits report are the rquirements).";
     188    instruction += " The report can be filtered based on protein FDR if decoy peptides are present (search in target-decoy database and decoys kept in combined hits report are the requirements).";
    184189    instruction += " Select whether to find proteins globally or per file or per sample. Also select whether peptide sequences should be counted once per unique";
    185190    instruction += " Set the minimum nuber of peptides to the required number of significant peptides per protein.";
Note: See TracChangeset for help on using the changeset viewer.