Merge branch 'releases/Release_2_11_4_Branch'
[jalview.git] / src / jalview / viewmodel / PaSiMapModel.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.viewmodel;
22
23 import jalview.analysis.PaSiMap;
24 import jalview.api.RotatableCanvasI;
25 import jalview.api.analysis.ScoreModelI;
26 import jalview.api.analysis.SimilarityParamsI;
27 import jalview.datamodel.AlignmentView;
28 import jalview.datamodel.Point;
29 import jalview.datamodel.SequenceI;
30 import jalview.datamodel.SequencePoint;
31 import jalview.gui.PairwiseAlignPanel;
32 import jalview.viewmodel.AlignmentViewport;
33
34 import java.util.List;
35 import java.util.Vector;
36
37 public class PaSiMapModel
38 {
39   /*
40    * inputs
41    */
42   private AlignmentViewport inputData;
43
44   private final SequenceI[] seqs;
45
46   /*
47    * options - score model, nucleotide / protein
48    */
49   private ScoreModelI scoreModel;
50
51   private boolean nucleotide = false;
52
53   /*
54    * outputs
55    */
56   private PaSiMap pasimap;
57
58   int top;
59
60   private List<SequencePoint> points;
61
62   /**
63    * Constructor given sequence data, score model and score calculation
64    * parameter options.
65    * 
66    * @param seqData
67    * @param sqs
68    * @param nuc
69    * @param modelName
70    * @param params
71    */
72   public PaSiMapModel(AlignmentViewport seqData, SequenceI[] sqs,
73           boolean nuc, ScoreModelI modelName)
74   {
75     inputData = seqData;
76     seqs = sqs;
77     nucleotide = nuc;
78     scoreModel = modelName;
79   }
80
81   /**
82    * Performs the PaSiMap calculation (in the same thread) and extracts result
83    * data needed for visualisation by PaSiMapPanel
84    */
85   public void calculate(PairwiseAlignPanel pap)
86   {
87     pasimap = new PaSiMap(inputData, scoreModel, pap);
88     pasimap.run(); // executes in same thread, wait for completion
89     if (pasimap.isCancelled())
90     {
91       // no more work to do
92       return;
93     }
94
95     // Now find the component coordinates
96     int ii = 0;
97
98     while ((ii < seqs.length) && (seqs[ii] != null))
99     {
100       ii++;
101     }
102
103     int width = pasimap.getWidth();
104     int height = pasimap.getHeight();
105     top = width;
106
107     points = new Vector<>();
108     Point[] scores = pasimap.getComponents(width - 1, width - 2, width - 3,
109             1);
110
111     for (int i = 0; i < height; i++)
112     {
113       SequencePoint sp = new SequencePoint(seqs[i], scores[i]);
114       points.add(sp);
115     }
116   }
117
118   public void updateRc(RotatableCanvasI rc)
119   {
120     rc.setPoints(points, pasimap.getHeight());
121   }
122
123   public boolean isNucleotide()
124   {
125     return nucleotide;
126   }
127
128   public void setNucleotide(boolean nucleotide)
129   {
130     this.nucleotide = nucleotide;
131   }
132
133   /**
134    * Answers the index of the principal dimension of the PaSiMap
135    * 
136    * @return
137    */
138   public int getTop()
139   {
140     return top;
141   }
142
143   public void setTop(int t)
144   {
145     top = t;
146   }
147
148   /**
149    * Updates the 3D coordinates for the list of points to the given dimensions.
150    * Principal dimension is getTop(). Next greatest eigenvector is getTop()-1.
151    * Note - pasimap.getComponents starts counting the spectrum from rank-2 to
152    * zero, rather than rank-1, so getComponents(dimN ...) == updateRcView(dimN+1
153    * ..)
154    * 
155    * @param dim1
156    * @param dim2
157    * @param dim3
158    */
159   public void updateRcView(int dim1, int dim2, int dim3)
160   {
161     // note: actual indices for components are dim1-1, etc (patch for JAL-1123)
162     Point[] scores = pasimap.getComponents(dim1 - 1, dim2 - 1, dim3 - 1, 1);
163
164     for (int i = 0; i < pasimap.getHeight(); i++)
165     {
166       points.get(i).coord = scores[i];
167     }
168   }
169
170   public String getDetails()
171   {
172     return pasimap.getDetails();
173   }
174
175   public String getAlignmentOutput()
176   {
177     return pasimap.getAlignmentOutput();
178   }
179
180   public AlignmentViewport getInputData()
181   {
182     return inputData;
183   }
184
185   public void setInputData(AlignmentViewport data)
186   {
187     inputData = data;
188   }
189
190   public String getPointsasCsv(boolean transformed, int xdim, int ydim,
191           int zdim)
192   {
193     StringBuffer csv = new StringBuffer();
194     csv.append("\"Sequence\"");
195     if (transformed)
196     {
197       csv.append(",");
198       csv.append(xdim);
199       csv.append(",");
200       csv.append(ydim);
201       csv.append(",");
202       csv.append(zdim);
203     }
204     else
205     {
206       for (int d = 1, dmax = (int) pasimap.getDim(); d <= dmax; d++)
207       {
208         csv.append("," + d);
209       }
210     }
211     csv.append("\n");
212     for (int s = 0; s < seqs.length; s++)
213     {
214       csv.append("\"" + seqs[s].getName() + "\"");
215       if (!transformed)
216       {
217         double[] fl = pasimap.component(s);
218         for (int d = fl.length - 1; d >= 0; d--)
219         {
220           csv.append(",");
221           csv.append(fl[d]);
222         }
223       }
224       else
225       {
226         Point p = points.get(s).coord;
227         csv.append(",").append(p.x);
228         csv.append(",").append(p.y);
229         csv.append(",").append(p.z);
230       }
231       csv.append("\n");
232     }
233     return csv.toString();
234   }
235
236   public String getScoreModelName()
237   {
238     return scoreModel == null ? "" : scoreModel.getName();
239   }
240
241   public void setScoreModel(ScoreModelI sm)
242   {
243     this.scoreModel = sm;
244   }
245
246   public List<SequencePoint> getSequencePoints()
247   {
248     return points;
249   }
250
251   public void setSequencePoints(List<SequencePoint> sp)
252   {
253     points = sp;
254   }
255
256   /**
257    * Answers the object holding the values of the computed PaSiMap
258    * 
259    * @return
260    */
261   public PaSiMap getPasimapData()
262   {
263     return pasimap;
264   }
265
266   public void setPaSiMap(PaSiMap data)
267   {
268     pasimap = data;
269   }
270
271   public boolean isCancelled()
272   {
273     if (pasimap==null || pasimap.isCancelled())
274     {
275       return true;
276     }
277     return false;
278   }
279
280   public void cancel()
281   {
282     pasimap.cancel();    
283   }
284
285   public boolean canCancel()
286   {
287     return (!isCancelled() && pasimap.isCancellable());
288   }
289 }