Changeset 1536
- Timestamp:
- Feb 15, 2007, 4:58:57 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/proteios/query/ProteinHitsReportQuery.java
r1533 r1536 188 188 if (getCutOff() != null) 189 189 { 190 query_string += " and mi.polyPeptide.identificationHypothesis.e_value<" + Double191 .toString(this.getCutOff());190 query_string += " and mi.polyPeptide.identificationHypothesis.e_value<" + this.getCutOff().toString(); 191 192 192 } 193 193 foundproteins = false; … … 751 751 public void setCutOff(Double cutOff) 752 752 { 753 this.cutOff = cutOff .floatValue();753 this.cutOff = cutOff; 754 754 } 755 755 … … 757 757 public Double getCutOff() 758 758 { 759 return new Double(cutOff);759 return cutOff; 760 760 } 761 761 … … 871 871 private String reverseText = ""; 872 872 private String scoreFilter; 873 private double cutOff;873 private Double cutOff=null; 874 874 private boolean cutOffAbove; 875 875 // private int hitsPerGelItem = 0;
Note: See TracChangeset
for help on using the changeset viewer.