Changeset 191
- Timestamp:
- Oct 31, 2006, 5:02:26 PM (16 years ago)
- Location:
- trunk/se/lu/thep/affymetrix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/se/lu/thep/affymetrix/ChangeLog
r190 r191 24 24 25 25 26 version 0.5 (revision 191): 27 - Changed starting position to 1 from 0 (zero) when expression 28 values are store into the database. This is more consistent with 29 the BASE treatment of positions. 30 26 31 version 0.4 (revision 190): 27 32 - Fixed installation glitches. -
trunk/se/lu/thep/affymetrix/RMAExpress.java
r165 r191 112 112 if (request.getCommand().equals(Request.COMMAND_CONFIGURE_JOB)) { 113 113 List<Throwable> errors = validateRequestParameters 114 ( configureJob.getParameters(), request);114 (getConfigureJobParameters(context).getParameters(), request); 115 115 if (errors != null) { 116 116 response.setError(errors.size() + … … 397 397 } 398 398 399 int position= 0;399 int position=1; // Use 1 for consistency with BASE usage if position 400 400 ReporterBatcher rbatcher = ReporterBatcher.getNew(dc); 401 401 PositionBatcher pbatcher = root.getPositionBatcher();
Note: See TracChangeset
for help on using the changeset viewer.