AFLPcore
Class TracePoint

java.lang.Object
  |
  +--AFLPcore.TracePoint

public class TracePoint
extends java.lang.Object

Represents a point on the trace, in the form (size, height). Note that the values are represented as doubles, not integers.


Field Summary
 double height
          The intensisty of the trace corresponding to the location
 double location
          The size in bp
 
Constructor Summary
TracePoint()
          Creates a new point (0,0).
TracePoint(double loc, double ht)
          Creates a new point at the specified location.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

location

public double location
The size in bp

height

public double height
The intensisty of the trace corresponding to the location
Constructor Detail

TracePoint

public TracePoint()
Creates a new point (0,0).

TracePoint

public TracePoint(double loc,
                  double ht)
Creates a new point at the specified location.
Parameters:
loc - the size in bp of the point (the x coordinate).
ht - the height of the point (the y coordinate).