Changeset 303


Ignore:
Timestamp:
May 24, 2007, 4:10:39 PM (16 years ago)
Author:
Jari Häkkinen
Message:

Improved speed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/se/lu/thep/affymetrix/Plier.java

    r302 r303  
    408408      percentDone=95;
    409409      progress.display(percentDone,"Importing result.");
     410      double log2=Math.log(2);
    410411      while (ffp.hasMoreData()) {
    411412        FlatFileParser.Data data = ffp.nextData();
     
    413414          Double x =
    414415            new Double(Math.log(Double.parseDouble(data.get(entry.getKey())))/
    415                        Math.log(2));
     416                       log2);
    416417          sbatcher.insert(entry.getValue().shortValue(), position,
    417418                          x.floatValue());
Note: See TracChangeset for help on using the changeset viewer.