X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fjalview%2Fdatamodel%2FSequencePoint.java;h=3db7ceee9924dced6a1acaddaa69040c3e62b7c5;hb=57381bb294ebc639073c198d14b03e16ca6aff97;hp=28db278154fa0a3403e18149b8cc79bc14de979b;hpb=04e134be96df26b6df83d030ad531cd3815eb9d4;p=jalview.git diff --git a/src/jalview/datamodel/SequencePoint.java b/src/jalview/datamodel/SequencePoint.java index 28db278..3db7cee 100755 --- a/src/jalview/datamodel/SequencePoint.java +++ b/src/jalview/datamodel/SequencePoint.java @@ -21,8 +21,10 @@ package jalview.datamodel; /** - * A bean that models a point with (x, y, z) coordinates and a reference to a - * sequence + * A bean that models a set of (x, y, z) values and a reference to a sequence. + * As used in Principal Component Analysis, the (x, y, z) values are the + * sequence's score for the currently selected first, second and third + * dimensions of the PCA. */ public class SequencePoint { @@ -32,9 +34,9 @@ public class SequencePoint private final SequenceI sequence; /* - * array of coordinates in embedded sequence space + * x, y, z values */ - public float[] coord; + public Point coord; /** * Constructor @@ -42,14 +44,46 @@ public class SequencePoint * @param sequence * @param coord */ - public SequencePoint(SequenceI sequence, float[] coord) + public SequencePoint(SequenceI sequence, Point pt) { this.sequence = sequence; - this.coord = coord; + this.coord = pt; + } + + /** + * Constructor given a sequence and an array of x, y, z coordinate positions + * + * @param sequence + * @param coords + * @throws ArrayIndexOutOfBoundsException + * if array length is less than 3 + */ + public SequencePoint(SequenceI sequence, float[] coords) + { + this(sequence, new Point(coords[0], coords[1], coords[2])); } public SequenceI getSequence() { return sequence; } + + /** + * Applies a translation to the (x, y, z) coordinates + * + * @param centre + */ + public void translate(float x, float y, float z) + { + coord = new Point(coord.x + x, coord.y + y, coord.z + z); + } + + /** + * string representation for ease of inspection in debugging or logging only + */ + @Override + public String toString() + { + return sequence.getName() + " " + coord.toString(); + } }