X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fviewmodel%2FPCAModel.java;h=aa7c938a3c8b733b2fc0ba2ded1f28b1c95ba411;hb=cf6ec9416dae77d30b5be628c1112a609ed088fe;hp=34941e492571878c0e20233be6a1afc697c5a848;hpb=838e4f91d4a53dd315640dbc9ff6ef7a815ee576;p=jalview.git diff --git a/src/jalview/viewmodel/PCAModel.java b/src/jalview/viewmodel/PCAModel.java index 34941e4..aa7c938 100644 --- a/src/jalview/viewmodel/PCAModel.java +++ b/src/jalview/viewmodel/PCAModel.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b1) - * Copyright (C) 2015 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -22,6 +22,8 @@ package jalview.viewmodel; import jalview.analysis.PCA; import jalview.api.RotatableCanvasI; +import jalview.api.analysis.ScoreModelI; +import jalview.api.analysis.SimilarityParamsI; import jalview.datamodel.AlignmentView; import jalview.datamodel.SequenceI; import jalview.datamodel.SequencePoint; @@ -30,50 +32,59 @@ import java.util.Vector; public class PCAModel { + /* + * inputs + */ + private final AlignmentView seqstrings; - public PCAModel(AlignmentView seqstrings2, SequenceI[] seqs2, - boolean nucleotide2) - { - seqstrings = seqstrings2; - seqs = seqs2; - nucleotide = nucleotide2; - score_matrix = nucleotide2 ? "PID" : "BLOSUM62"; - } - - private volatile PCA pca; + private final SequenceI[] seqs; - int top; + private final SimilarityParamsI similarityParams; - AlignmentView seqstrings; + /* + * options - score model, nucleotide / protein + */ + private ScoreModelI scoreModel; - SequenceI[] seqs; + private boolean nucleotide = false; - /** - * Score matrix used to calculate PC + /* + * outputs */ - String score_matrix; + private PCA pca; - /** - * use the identity matrix for calculating similarity between sequences. - */ - private boolean nucleotide = false; + int top; private Vector points; - private boolean jvCalcMode = true; - - public boolean isJvCalcMode() + /** + * Constructor given sequence data, score model and score calculation + * parameter options. + * + * @param seqData + * @param sqs + * @param nuc + * @param modelName + * @param params + */ + public PCAModel(AlignmentView seqData, SequenceI[] sqs, boolean nuc, + ScoreModelI modelName, SimilarityParamsI params) { - return jvCalcMode; + seqstrings = seqData; + seqs = sqs; + nucleotide = nuc; + scoreModel = modelName; + similarityParams = params; } - public void run() + /** + * Performs the PCA calculation (in the same thread) and extracts result data + * needed for visualisation by PCAPanel + */ + public void calculate() { - - pca = new PCA(seqstrings.getSequenceStrings(' '), nucleotide, - score_matrix); - pca.setJvCalcMode(jvCalcMode); - pca.run(); + pca = new PCA(seqstrings, scoreModel, similarityParams); + pca.run(); // executes in same thread, wait for completion // Now find the component coordinates int ii = 0; @@ -83,32 +94,23 @@ public class PCAModel ii++; } - double[][] comps = new double[ii][ii]; - - for (int i = 0; i < ii; i++) - { - if (pca.getEigenvalue(i) > 1e-4) - { - comps[i] = pca.component(i); - } - } - - top = pca.getM().rows - 1; + int height = pca.getHeight(); + // top = pca.getM().height() - 1; + top = height - 1; - points = new Vector(); + points = new Vector<>(); float[][] scores = pca.getComponents(top - 1, top - 2, top - 3, 100); - for (int i = 0; i < pca.getM().rows; i++) + for (int i = 0; i < height; i++) { SequencePoint sp = new SequencePoint(seqs[i], scores[i]); points.addElement(sp); } - } public void updateRc(RotatableCanvasI rc) { - rc.setPoints(points, pca.getM().rows); + rc.setPoints(points, pca.getHeight()); } public boolean isNucleotide() @@ -146,9 +148,9 @@ public class PCAModel // note: actual indices for components are dim1-1, etc (patch for JAL-1123) float[][] scores = pca.getComponents(dim1 - 1, dim2 - 1, dim3 - 1, 100); - for (int i = 0; i < pca.getM().rows; i++) + for (int i = 0; i < pca.getHeight(); i++) { - ((SequencePoint) points.elementAt(i)).coord = scores[i]; + points.elementAt(i).coord = scores[i]; } } @@ -228,19 +230,14 @@ public class PCAModel return pts; } - public void setJvCalcMode(boolean state) - { - jvCalcMode = state; - } - - public String getScore_matrix() + public String getScoreModelName() { - return score_matrix; + return scoreModel == null ? "" : scoreModel.getName(); } - public void setScore_matrix(String score_matrix) + public void setScoreModel(ScoreModelI sm) { - this.score_matrix = score_matrix; + this.scoreModel = sm; } }