Changeset 2986
- Timestamp:
- Dec 1, 2006, 11:30:33 AM (16 years ago)
- Location:
- branches/2.1/src/core/net/sf/basedb/util
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.1/src/core/net/sf/basedb/util/BioAssaySetUtil.java
r2704 r2986 43 43 import net.sf.basedb.util.jep.Jep; 44 44 import net.sf.basedb.util.jep.NotInReporterListFunction; 45 import net.sf.basedb.util.jep.PositionFunction; 45 46 import net.sf.basedb.util.jep.RawFunction; 46 47 import net.sf.basedb.util.jep.ReporterFunction; … … 162 163 <li>raw(property): The value of the specified raw data property 163 164 <li>rep(property): The value of the specified reporter property 165 <li>pos: The position of a spot. Note that this is not the same as raw(position) 164 166 <li>ch(n): The intensity in channel n 165 167 <li>score(list): The score of the {@link Reporter} in the specified {@link ReporterList} … … 177 179 RawFunction raw = new RawFunction(); 178 180 ChannelFunction ch = new ChannelFunction(); 181 PositionFunction pos = new PositionFunction(); 179 182 ReporterFunction reporter = new ReporterFunction(); 180 183 ScoreFunction score = new ScoreFunction(dc); 181 184 ExtraValueFunction xtra = new ExtraValueFunction(dc, bioAssaySet); 182 return Jep.formulaToExpression(formula, raw, ch, reporter, score, xtra);185 return Jep.formulaToExpression(formula, raw, ch, pos, reporter, score, xtra); 183 186 } 184 187
Note: See TracChangeset
for help on using the changeset viewer.