Changeset 191


Ignore:
Timestamp:
Oct 31, 2006, 5:02:26 PM (16 years ago)
Author:
Jari Häkkinen
Message:

Changed position to start at 1 instead of 0 in coherence with BASE core.

Location:
trunk/se/lu/thep/affymetrix
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/se/lu/thep/affymetrix/ChangeLog

    r190 r191  
    2424
    2525
     26version 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
    2631version 0.4 (revision 190):
    2732  - Fixed installation glitches.
  • trunk/se/lu/thep/affymetrix/RMAExpress.java

    r165 r191  
    112112      if (request.getCommand().equals(Request.COMMAND_CONFIGURE_JOB)) {
    113113        List<Throwable> errors = validateRequestParameters
    114           (configureJob.getParameters(), request);
     114          (getConfigureJobParameters(context).getParameters(), request);
    115115        if (errors != null) {
    116116          response.setError(errors.size() +
     
    397397      }
    398398
    399       int position=0;
     399      int position=1; // Use 1 for consistency with BASE usage if position
    400400      ReporterBatcher rbatcher = ReporterBatcher.getNew(dc);
    401401      PositionBatcher pbatcher = root.getPositionBatcher();
Note: See TracChangeset for help on using the changeset viewer.