Changeset 3761
- Timestamp:
- Aug 9, 2010, 10:25:55 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/servlet/src/org/proteios/action/hit/ProteinAssembly1.java
r3756 r3761 95 95 isProteinCB.setLabel("FileWise"); 96 96 isProteinCB.setValue("true"); 97 isProteinCB.setHelp("Per peaklist file report"); 97 98 properties.add(isProteinCB); 98 99 Checkbox<VBoolean> isOccamCB = new Checkbox<VBoolean>( … … 100 101 isOccamCB.setLabel("OccamsRazor"); 101 102 isOccamCB.setValue("true"); 103 isOccamCB.setHelp("Remove subsequence proteins"); 102 104 isOccamCB.isChecked(true); 103 105 properties.add(isOccamCB); … … 109 111 isFDR.setLabel("UseCombinedFDR"); 110 112 isFDR.setValue("true"); 113 isFDR.setHelp("Peptide level setting"); 111 114 TextField<Float> fdrF = new TextField<Float>( 112 115 CreateProteinAssemblyJob.VCUTOFF); 113 116 fdrF.setValue(new Float(0.01)); 114 117 fdrF.setLabel("PeptideCutOff"); 118 fdrF.setHelp("FDR or e-value cutoff"); 115 119 validation.add(isFDR); 116 120 validation.add(fdrF); … … 164 168 tolF.setValue(new Float(0.15)); 165 169 tolF.setLabel("MatchTolerance"); 170 tolF.setHelp("Tolerance when matching reporters"); 166 171 quantFS.add(tolF); 167 172 TextField<Integer> idxF = new TextField<Integer>( … … 181 186 String instruction = "The report will be generated by finding protein groups for peptides that pass the peptide cutoff."; 182 187 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 r quirements).";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)."; 184 189 instruction += " Select whether to find proteins globally or per file or per sample. Also select whether peptide sequences should be counted once per unique"; 185 190 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.