64595456d125fac84bb707373e3d4d316fb8a6cd
[jalview.git] / test / jalview / io / SequenceAnnotationReportTest.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.io;
22
23 import static org.testng.AssertJUnit.assertEquals;
24 import static org.testng.AssertJUnit.assertTrue;
25
26 import java.awt.Color;
27 import java.util.ArrayList;
28 import java.util.List;
29 import java.util.Map;
30
31 import org.testng.annotations.BeforeClass;
32 import org.testng.annotations.Test;
33
34 import jalview.api.FeatureColourI;
35 import jalview.datamodel.DBRefEntry;
36 import jalview.datamodel.MappedFeatures;
37 import jalview.datamodel.Mapping;
38 import jalview.datamodel.Sequence;
39 import jalview.datamodel.SequenceFeature;
40 import jalview.datamodel.SequenceI;
41 import jalview.gui.JvOptionPane;
42 import jalview.io.gff.GffConstants;
43 import jalview.renderer.seqfeatures.FeatureRenderer;
44 import jalview.schemes.FeatureColour;
45 import jalview.util.MapList;
46 import jalview.viewmodel.seqfeatures.FeatureRendererModel;
47 import junit.extensions.PA;
48
49 public class SequenceAnnotationReportTest
50 {
51
52   @BeforeClass(alwaysRun = true)
53   public void setUpJvOptionPane()
54   {
55     JvOptionPane.setInteractiveMode(false);
56     JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
57   }
58
59   @Test(groups = "Functional")
60   public void testAppendFeature_disulfideBond()
61   {
62     SequenceAnnotationReport sar = new SequenceAnnotationReport(false);
63     StringBuilder sb = new StringBuilder();
64     sb.append("123456");
65     SequenceFeature sf = new SequenceFeature("disulfide bond", "desc", 1, 3,
66             1.2f, "group");
67
68     // residuePos == 2 does not match start or end of feature, nothing done:
69     sar.appendFeature(sb, 2, null, sf, null, 0);
70     assertEquals("123456", sb.toString());
71
72     // residuePos == 1 matches start of feature, text appended (but no <br/>)
73     // feature score is not included
74     sar.appendFeature(sb, 1, null, sf, null, 0);
75     assertEquals("123456disulfide bond 1:3", sb.toString());
76
77     // residuePos == 3 matches end of feature, text appended
78     // <br/> is prefixed once sb.length() > 6
79     sar.appendFeature(sb, 3, null, sf, null, 0);
80     assertEquals("123456disulfide bond 1:3<br/>disulfide bond 1:3",
81             sb.toString());
82   }
83
84   @Test(groups = "Functional")
85   public void testAppendFeatures_longText()
86   {
87     SequenceAnnotationReport sar = new SequenceAnnotationReport(false);
88     StringBuilder sb = new StringBuilder();
89     String longString = "Abcd".repeat(50);
90     SequenceFeature sf = new SequenceFeature("sequence", longString, 1, 3,
91             "group");
92
93     sar.appendFeature(sb, 1, null, sf, null, 0);
94     assertTrue(sb.length() < 100);
95
96     List<SequenceFeature> sfl = new ArrayList<>();
97     sb.setLength(0);
98     sfl.add(sf);
99     sfl.add(sf);
100     sfl.add(sf);
101     sfl.add(sf);
102     sfl.add(sf);
103     sfl.add(sf);
104     sfl.add(sf);
105     sfl.add(sf);
106     sfl.add(sf);
107     sfl.add(sf);
108     int n = sar.appendFeatures(sb, 1, sfl, new FeatureRenderer(null), 200); // text
109                                                                             // should
110                                                                             // terminate
111                                                                             // before
112                                                                             // 200
113                                                                             // characters
114     String s = sb.toString();
115     assertTrue(s.length() < 200);
116     assertEquals(n, 7); // should be 7 features left over
117
118   }
119
120   @Test(groups = "Functional")
121   public void testAppendFeature_status()
122   {
123     SequenceAnnotationReport sar = new SequenceAnnotationReport(false);
124     StringBuilder sb = new StringBuilder();
125     SequenceFeature sf = new SequenceFeature("METAL", "Fe2-S", 1, 3,
126             Float.NaN, "group");
127     sf.setStatus("Confirmed");
128
129     sar.appendFeature(sb, 1, null, sf, null, 0);
130     assertEquals("METAL 1 3; Fe2-S; (Confirmed)", sb.toString());
131   }
132
133   @Test(groups = "Functional")
134   public void testAppendFeature_withScore()
135   {
136     SequenceAnnotationReport sar = new SequenceAnnotationReport(false);
137     StringBuilder sb = new StringBuilder();
138     SequenceFeature sf = new SequenceFeature("METAL", "Fe2-S", 1, 3, 1.3f,
139             "group");
140
141     FeatureRendererModel fr = new FeatureRenderer(null);
142     Map<String, float[][]> minmax = fr.getMinMax();
143     sar.appendFeature(sb, 1, fr, sf, null, 0);
144     /*
145      * map has no entry for this feature type - score is not shown:
146      */
147     assertEquals("METAL 1 3; Fe2-S", sb.toString());
148
149     /*
150      * map has entry for this feature type - score is shown:
151      */
152     minmax.put("METAL", new float[][] { { 0f, 1f }, null });
153     sar.appendFeature(sb, 1, fr, sf, null, 0);
154     // <br/> is appended to a buffer > 6 in length
155     assertEquals("METAL 1 3; Fe2-S<br/>METAL 1 3; Fe2-S Score=1.3",
156             sb.toString());
157
158     /*
159      * map has min == max for this feature type - score is not shown:
160      */
161     minmax.put("METAL", new float[][] { { 2f, 2f }, null });
162     sb.setLength(0);
163     sar.appendFeature(sb, 1, fr, sf, null, 0);
164     assertEquals("METAL 1 3; Fe2-S", sb.toString());
165   }
166
167   @Test(groups = "Functional")
168   public void testAppendFeature_noScore()
169   {
170     SequenceAnnotationReport sar = new SequenceAnnotationReport(false);
171     StringBuilder sb = new StringBuilder();
172     SequenceFeature sf = new SequenceFeature("METAL", "Fe2-S", 1, 3,
173             Float.NaN, "group");
174
175     sar.appendFeature(sb, 1, null, sf, null, 0);
176     assertEquals("METAL 1 3; Fe2-S", sb.toString());
177   }
178
179   /**
180    * A specific attribute value is included if it is used to colour the feature
181    */
182   @Test(groups = "Functional")
183   public void testAppendFeature_colouredByAttribute()
184   {
185     SequenceAnnotationReport sar = new SequenceAnnotationReport(false);
186     StringBuilder sb = new StringBuilder();
187     SequenceFeature sf = new SequenceFeature("METAL", "Fe2-S", 1, 3,
188             Float.NaN, "group");
189     sf.setValue("clinical_significance", "Benign");
190
191     /*
192      * first with no colour by attribute
193      */
194     FeatureRendererModel fr = new FeatureRenderer(null);
195     sar.appendFeature(sb, 1, fr, sf, null, 0);
196     assertEquals("METAL 1 3; Fe2-S", sb.toString());
197
198     /*
199      * then with colour by an attribute the feature lacks
200      */
201     FeatureColourI fc = new FeatureColour(null, Color.white, Color.black,
202             null, 5, 10);
203     fc.setAttributeName("Pfam");
204     fr.setColour("METAL", fc);
205     sb.setLength(0);
206     sar.appendFeature(sb, 1, fr, sf, null, 0);
207     assertEquals("METAL 1 3; Fe2-S", sb.toString()); // no change
208
209     /*
210      * then with colour by an attribute the feature has
211      */
212     fc.setAttributeName("clinical_significance");
213     sb.setLength(0);
214     sar.appendFeature(sb, 1, fr, sf, null, 0);
215     assertEquals("METAL 1 3; Fe2-S; clinical_significance=Benign",
216             sb.toString());
217   }
218
219   @Test(groups = "Functional")
220   public void testAppendFeature_withScoreStatusAttribute()
221   {
222     SequenceAnnotationReport sar = new SequenceAnnotationReport(false);
223     StringBuilder sb = new StringBuilder();
224     SequenceFeature sf = new SequenceFeature("METAL", "Fe2-S", 1, 3, 1.3f,
225             "group");
226     sf.setStatus("Confirmed");
227     sf.setValue("clinical_significance", "Benign");
228
229     FeatureRendererModel fr = new FeatureRenderer(null);
230     Map<String, float[][]> minmax = fr.getMinMax();
231     FeatureColourI fc = new FeatureColour(null, Color.white, Color.blue,
232             null, 12, 22);
233     fc.setAttributeName("clinical_significance");
234     fr.setColour("METAL", fc);
235     minmax.put("METAL", new float[][] { { 0f, 1f }, null });
236     sar.appendFeature(sb, 1, fr, sf, null, 0);
237
238     assertEquals(
239             "METAL 1 3; Fe2-S Score=1.3; (Confirmed); clinical_significance=Benign",
240             sb.toString());
241   }
242
243   @Test(groups = "Functional")
244   public void testAppendFeature_DescEqualsType()
245   {
246     SequenceAnnotationReport sar = new SequenceAnnotationReport(false);
247     StringBuilder sb = new StringBuilder();
248     SequenceFeature sf = new SequenceFeature("METAL", "METAL", 1, 3,
249             Float.NaN, "group");
250
251     // description is not included if it duplicates type:
252     sar.appendFeature(sb, 1, null, sf, null, 0);
253     assertEquals("METAL 1 3", sb.toString());
254
255     sb.setLength(0);
256     sf.setDescription("Metal");
257     // test is case-sensitive:
258     sar.appendFeature(sb, 1, null, sf, null, 0);
259     assertEquals("METAL 1 3; Metal", sb.toString());
260   }
261
262   @Test(groups = "Functional")
263   public void testAppendFeature_stripHtml()
264   {
265     SequenceAnnotationReport sar = new SequenceAnnotationReport(false);
266     StringBuilder sb = new StringBuilder();
267     SequenceFeature sf = new SequenceFeature("METAL",
268             "<html><body>hello<em>world</em></body></html>", 1, 3,
269             Float.NaN, "group");
270
271     sar.appendFeature(sb, 1, null, sf, null, 0);
272     // !! strips off </body> but not <body> ??
273     assertEquals("METAL 1 3; <body>hello<em>world</em>", sb.toString());
274
275     sb.setLength(0);
276     sf.setDescription("<br>&kHD>6");
277     sar.appendFeature(sb, 1, null, sf, null, 0);
278     // if no <html> tag, html-encodes > and < (only):
279     assertEquals("METAL 1 3; &lt;br&gt;&kHD&gt;6", sb.toString());
280   }
281
282   @Test(groups = "Functional")
283   public void testCreateSequenceAnnotationReport()
284   {
285     SequenceAnnotationReport sar = new SequenceAnnotationReport(false);
286     StringBuilder sb = new StringBuilder();
287
288     SequenceI seq = new Sequence("s1", "MAKLKRFQSSTLL");
289     seq.setDescription("SeqDesc");
290
291     /*
292      * positional features are ignored
293      */
294     seq.addSequenceFeature(
295             new SequenceFeature("Domain", "Ferredoxin", 5, 10, 1f, null));
296     sar.createSequenceAnnotationReport(sb, seq, true, true, null);
297     assertEquals("<i>SeqDesc</i>", sb.toString());
298
299     /*
300      * non-positional feature
301      */
302     seq.addSequenceFeature(
303             new SequenceFeature("Type1", "Nonpos", 0, 0, 1f, null));
304     sb.setLength(0);
305     sar.createSequenceAnnotationReport(sb, seq, true, true, null);
306     String expected = "<i>SeqDesc<br/>Type1 ; Nonpos Score=1.0</i>";
307     assertEquals(expected, sb.toString());
308
309     /*
310      * non-positional features not wanted
311      */
312     sb.setLength(0);
313     sar.createSequenceAnnotationReport(sb, seq, true, false, null);
314     assertEquals("<i>SeqDesc</i>", sb.toString());
315
316     /*
317      * add non-pos feature with score inside min-max range for feature type
318      * minmax holds { [positionalMin, positionalMax], [nonPosMin, nonPosMax] }
319      * score is only appended for positional features so ignored here!
320      * minMax are not recorded for non-positional features
321      */
322     seq.addSequenceFeature(
323             new SequenceFeature("Metal", "Desc", 0, 0, 5f, null));
324
325     FeatureRendererModel fr = new FeatureRenderer(null);
326     Map<String, float[][]> minmax = fr.getMinMax();
327     minmax.put("Metal", new float[][] { null, new float[] { 2f, 5f } });
328
329     sb.setLength(0);
330     sar.createSequenceAnnotationReport(sb, seq, true, true, fr);
331     expected = "<i>SeqDesc<br/>Metal ; Desc<br/>Type1 ; Nonpos</i>";
332     assertEquals(expected, sb.toString());
333
334     /*
335      * 'linkonly' features are ignored; this is obsolete, as linkonly
336      * is only set by DasSequenceFetcher, and DAS is history
337      */
338     SequenceFeature sf = new SequenceFeature("Metal", "Desc", 0, 0, 5f,
339             null);
340     sf.setValue("linkonly", Boolean.TRUE);
341     seq.addSequenceFeature(sf);
342     sb.setLength(0);
343     sar.createSequenceAnnotationReport(sb, seq, true, true, fr);
344     assertEquals(expected, sb.toString()); // unchanged!
345
346     /*
347      * 'clinical_significance' attribute is only included in description 
348      * when used for feature colouring
349      */
350     SequenceFeature sf2 = new SequenceFeature("Variant", "Havana", 0, 0, 5f,
351             null);
352     sf2.setValue(GffConstants.CLINICAL_SIGNIFICANCE, "benign");
353     seq.addSequenceFeature(sf2);
354     sb.setLength(0);
355     sar.createSequenceAnnotationReport(sb, seq, true, true, fr);
356     expected = "<i>SeqDesc<br/>Metal ; Desc<br/>Type1 ; Nonpos<br/>Variant ; Havana</i>";
357     assertEquals(expected, sb.toString());
358
359     /*
360      * add dbrefs
361      */
362     seq.addDBRef(new DBRefEntry("PDB", "0", "3iu1"));
363     seq.addDBRef(new DBRefEntry("Uniprot", "1", "P30419"));
364
365     // with showDbRefs = false
366     sb.setLength(0);
367     sar.createSequenceAnnotationReport(sb, seq, false, true, fr);
368     assertEquals(expected, sb.toString()); // unchanged
369
370     // with showDbRefs = true, colour Variant features by clinical_significance
371     sb.setLength(0);
372     FeatureColourI fc = new FeatureColour(null, Color.green, Color.pink,
373             null, 2, 3);
374     fc.setAttributeName("clinical_significance");
375     fr.setColour("Variant", fc);
376     sar.createSequenceAnnotationReport(sb, seq, true, true, fr);
377     expected = "<i>SeqDesc<br/>UNIPROT P30419<br/>PDB 3iu1<br/>Metal ; Desc<br/>"
378             + "Type1 ; Nonpos<br/>Variant ; Havana; clinical_significance=benign</i>";
379     assertEquals(expected, sb.toString());
380     // with showNonPositionalFeatures = false
381     sb.setLength(0);
382     sar.createSequenceAnnotationReport(sb, seq, true, false, fr);
383     expected = "<i>SeqDesc<br/>UNIPROT P30419<br/>PDB 3iu1</i>";
384     assertEquals(expected, sb.toString());
385
386     /*
387      * long feature description is truncated with ellipsis
388      */
389     sb.setLength(0);
390     sf2.setDescription(
391             "This is a very long description which should be truncated");
392     sar.createSequenceAnnotationReport(sb, seq, false, true, fr);
393     expected = "<i>SeqDesc<br/>Metal ; Desc<br/>Type1 ; Nonpos<br/>Variant ; This is a very long description which sh...; clinical_significance=benign</i>";
394     assertEquals(expected, sb.toString());
395
396     // see other tests for treatment of status and html
397   }
398
399   /**
400    * Test that exercises an abbreviated sequence details report, with ellipsis
401    * where there are more than 40 different sources, or more than 4 dbrefs for a
402    * single source
403    */
404   @Test(groups = "Functional")
405   public void testCreateSequenceAnnotationReport_withEllipsis()
406   {
407     SequenceAnnotationReport sar = new SequenceAnnotationReport(false);
408     StringBuilder sb = new StringBuilder();
409
410     SequenceI seq = new Sequence("s1", "ABC");
411
412     int maxSources = (int) PA.getValue(sar, "MAX_SOURCES");
413     for (int i = 0; i <= maxSources; i++)
414     {
415       seq.addDBRef(new DBRefEntry("PDB" + i, "0", "3iu1"));
416     }
417
418     int maxRefs = (int) PA.getValue(sar, "MAX_REFS_PER_SOURCE");
419     for (int i = 0; i <= maxRefs; i++)
420     {
421       seq.addDBRef(new DBRefEntry("Uniprot", "0", "P3041" + i));
422     }
423
424     sar.createSequenceAnnotationReport(sb, seq, true, true, null, true);
425     String report = sb.toString();
426     assertTrue(report.startsWith(
427             "<i><br/>UNIPROT P30410, P30411, P30412, P30413,...<br/>PDB0 3iu1"));
428     assertTrue(report.endsWith(
429             "<br/>PDB7 3iu1<br/>PDB8,...<br/>(Output Sequence Details to list all database references)</i>"));
430   }
431
432   /**
433    * Test adding a linked feature to the tooltip
434    */
435   @Test(groups = "Functional")
436   public void testAppendFeature_virtualFeature()
437   {
438     /*
439      * map CDS to peptide sequence
440      */
441     SequenceI cds = new Sequence("Cds/101-121", "CCTttgAGAtttCAAatgGAT");
442     SequenceI peptide = new Sequence("Peptide/8-14", "PLRFQMD");
443     MapList map = new MapList(new int[] { 101, 118 }, new int[] { 8, 13 },
444             3, 1);
445     Mapping mapping = new Mapping(peptide, map);
446
447     /*
448      * assume variant feature found at CDS position 106 G>C
449      */
450     List<SequenceFeature> features = new ArrayList<>();
451     // vary ttg (Leu) to ttc (Phe)
452     SequenceFeature sf = new SequenceFeature("variant", "G,C", 106, 106,
453             Float.NaN, null);
454     features.add(sf);
455     MappedFeatures mf = new MappedFeatures(mapping, cds, 9, 'L', features);
456
457     StringBuilder sb = new StringBuilder();
458     SequenceAnnotationReport sar = new SequenceAnnotationReport(false);
459     sar.appendFeature(sb, 1, null, sf, mf, 0);
460
461     /*
462      * linked feature shown in tooltip in protein coordinates
463      */
464     assertEquals("variant 9; G,C", sb.toString());
465
466     /*
467      * adding "alleles" attribute to variant allows peptide consequence
468      * to be calculated and added to the tooltip
469      */
470     sf.setValue("alleles", "G,C");
471     sb = new StringBuilder();
472     sar.appendFeature(sb, 1, null, sf, mf, 0);
473     assertEquals("variant 9; G,C p.Leu9Phe", sb.toString());
474
475     /*
476      * now a virtual peptide feature on CDS
477      * feature at 11-12 on peptide maps to 110-115 on CDS
478      * here we test for tooltip at 113 (t)
479      */
480     SequenceFeature sf2 = new SequenceFeature("metal", "Fe", 11, 12, 2.3f,
481             "Uniprot");
482     features.clear();
483     features.add(sf2);
484     mapping = new Mapping(peptide, map);
485     mf = new MappedFeatures(mapping, peptide, 113, 't', features);
486     sb = new StringBuilder();
487     sar.appendFeature(sb, 1, null, sf2, mf, 0);
488     assertEquals("metal 110 115; Fe Score=2.3", sb.toString());
489   }
490 }