2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
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.
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.
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.
23 import static org.testng.AssertJUnit.assertEquals;
24 import static org.testng.AssertJUnit.assertTrue;
26 import jalview.api.FeatureColourI;
27 import jalview.datamodel.DBRefEntry;
28 import jalview.datamodel.Sequence;
29 import jalview.datamodel.SequenceFeature;
30 import jalview.datamodel.SequenceI;
31 import jalview.gui.JvOptionPane;
32 import jalview.io.gff.GffConstants;
33 import jalview.renderer.seqfeatures.FeatureRenderer;
34 import jalview.schemes.FeatureColour;
35 import jalview.viewmodel.seqfeatures.FeatureRendererModel;
37 import java.awt.Color;
40 import junit.extensions.PA;
42 import org.testng.annotations.BeforeClass;
43 import org.testng.annotations.Test;
45 public class SequenceAnnotationReportTest
48 @BeforeClass(alwaysRun = true)
49 public void setUpJvOptionPane()
51 JvOptionPane.setInteractiveMode(false);
52 JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
55 @Test(groups = "Functional")
56 public void testAppendFeature_disulfideBond()
58 SequenceAnnotationReport sar = new SequenceAnnotationReport(null);
59 StringBuilder sb = new StringBuilder();
61 SequenceFeature sf = new SequenceFeature("disulfide bond", "desc", 1,
64 // residuePos == 2 does not match start or end of feature, nothing done:
65 sar.appendFeature(sb, 2, null, sf);
66 assertEquals("123456", sb.toString());
68 // residuePos == 1 matches start of feature, text appended (but no <br>)
69 // feature score is not included
70 sar.appendFeature(sb, 1, null, sf);
71 assertEquals("123456disulfide bond 1:3", sb.toString());
73 // residuePos == 3 matches end of feature, text appended
74 // <br> is prefixed once sb.length() > 6
75 sar.appendFeature(sb, 3, null, sf);
76 assertEquals("123456disulfide bond 1:3<br>disulfide bond 1:3",
80 @Test(groups = "Functional")
81 public void testAppendFeature_status()
83 SequenceAnnotationReport sar = new SequenceAnnotationReport(null);
84 StringBuilder sb = new StringBuilder();
85 SequenceFeature sf = new SequenceFeature("METAL", "Fe2-S", 1, 3,
87 sf.setStatus("Confirmed");
89 sar.appendFeature(sb, 1, null, sf);
90 assertEquals("METAL 1 3; Fe2-S; (Confirmed)", sb.toString());
93 @Test(groups = "Functional")
94 public void testAppendFeature_withScore()
96 SequenceAnnotationReport sar = new SequenceAnnotationReport(null);
97 StringBuilder sb = new StringBuilder();
98 SequenceFeature sf = new SequenceFeature("METAL", "Fe2-S", 1, 3, 1.3f,
101 FeatureRendererModel fr = new FeatureRenderer(null);
102 Map<String, float[][]> minmax = fr.getMinMax();
103 sar.appendFeature(sb, 1, fr, sf);
105 * map has no entry for this feature type - score is not shown:
107 assertEquals("METAL 1 3; Fe2-S", sb.toString());
110 * map has entry for this feature type - score is shown:
112 minmax.put("METAL", new float[][] { { 0f, 1f }, null });
113 sar.appendFeature(sb, 1, fr, sf);
114 // <br> is appended to a buffer > 6 in length
115 assertEquals("METAL 1 3; Fe2-S<br>METAL 1 3; Fe2-S Score=1.3",
119 * map has min == max for this feature type - score is not shown:
121 minmax.put("METAL", new float[][] { { 2f, 2f }, null });
123 sar.appendFeature(sb, 1, fr, sf);
124 assertEquals("METAL 1 3; Fe2-S", sb.toString());
127 @Test(groups = "Functional")
128 public void testAppendFeature_noScore()
130 SequenceAnnotationReport sar = new SequenceAnnotationReport(null);
131 StringBuilder sb = new StringBuilder();
132 SequenceFeature sf = new SequenceFeature("METAL", "Fe2-S", 1, 3,
135 sar.appendFeature(sb, 1, null, sf);
136 assertEquals("METAL 1 3; Fe2-S", sb.toString());
140 * A specific attribute value is included if it is used to colour the feature
142 @Test(groups = "Functional")
143 public void testAppendFeature_colouredByAttribute()
145 SequenceAnnotationReport sar = new SequenceAnnotationReport(null);
146 StringBuilder sb = new StringBuilder();
147 SequenceFeature sf = new SequenceFeature("METAL", "Fe2-S", 1, 3,
149 sf.setValue("clinical_significance", "Benign");
152 * first with no colour by attribute
154 FeatureRendererModel fr = new FeatureRenderer(null);
155 sar.appendFeature(sb, 1, fr, sf);
156 assertEquals("METAL 1 3; Fe2-S", sb.toString());
159 * then with colour by an attribute the feature lacks
161 FeatureColourI fc = new FeatureColour(Color.white, Color.black, 5, 10);
162 fc.setAttributeName("Pfam");
163 fr.setColour("METAL", fc);
165 sar.appendFeature(sb, 1, fr, sf);
166 assertEquals("METAL 1 3; Fe2-S", sb.toString()); // no change
169 * then with colour by an attribute the feature has
171 fc.setAttributeName("clinical_significance");
173 sar.appendFeature(sb, 1, fr, sf);
174 assertEquals("METAL 1 3; Fe2-S; clinical_significance=Benign",
178 @Test(groups = "Functional")
179 public void testAppendFeature_withScoreStatusAttribute()
181 SequenceAnnotationReport sar = new SequenceAnnotationReport(null);
182 StringBuilder sb = new StringBuilder();
183 SequenceFeature sf = new SequenceFeature("METAL", "Fe2-S", 1, 3, 1.3f,
185 sf.setStatus("Confirmed");
186 sf.setValue("clinical_significance", "Benign");
188 FeatureRendererModel fr = new FeatureRenderer(null);
189 Map<String, float[][]> minmax = fr.getMinMax();
190 FeatureColourI fc = new FeatureColour(Color.white, Color.blue, 12, 22);
191 fc.setAttributeName("clinical_significance");
192 fr.setColour("METAL", fc);
193 minmax.put("METAL", new float[][] { { 0f, 1f }, null });
194 sar.appendFeature(sb, 1, fr, sf);
197 "METAL 1 3; Fe2-S Score=1.3; (Confirmed); clinical_significance=Benign",
201 @Test(groups = "Functional")
202 public void testAppendFeature_DescEqualsType()
204 SequenceAnnotationReport sar = new SequenceAnnotationReport(null);
205 StringBuilder sb = new StringBuilder();
206 SequenceFeature sf = new SequenceFeature("METAL", "METAL", 1, 3,
209 // description is not included if it duplicates type:
210 sar.appendFeature(sb, 1, null, sf);
211 assertEquals("METAL 1 3", sb.toString());
214 sf.setDescription("Metal");
215 // test is case-sensitive:
216 sar.appendFeature(sb, 1, null, sf);
217 assertEquals("METAL 1 3; Metal", sb.toString());
220 @Test(groups = "Functional")
221 public void testAppendFeature_stripHtml()
223 SequenceAnnotationReport sar = new SequenceAnnotationReport(null);
224 StringBuilder sb = new StringBuilder();
225 SequenceFeature sf = new SequenceFeature("METAL",
226 "<html><body>hello<em>world</em></body></html>", 1, 3,
229 sar.appendFeature(sb, 1, null, sf);
230 // !! strips off </body> but not <body> ??
231 assertEquals("METAL 1 3; <body>hello<em>world</em>", sb.toString());
234 sf.setDescription("<br>&kHD>6");
235 sar.appendFeature(sb, 1, null, sf);
236 // if no <html> tag, html-encodes > and < (only):
237 assertEquals("METAL 1 3; <br>&kHD>6", sb.toString());
240 @Test(groups = "Functional")
241 public void testCreateSequenceAnnotationReport()
243 SequenceAnnotationReport sar = new SequenceAnnotationReport(null);
244 StringBuilder sb = new StringBuilder();
246 SequenceI seq = new Sequence("s1", "MAKLKRFQSSTLL");
247 seq.setDescription("SeqDesc");
249 sar.createSequenceAnnotationReport(sb, seq, true, true, null);
252 * positional features are ignored
254 seq.addSequenceFeature(new SequenceFeature("Domain", "Ferredoxin", 5,
256 assertEquals("<i><br>SeqDesc</i>", sb.toString());
259 * non-positional feature
261 seq.addSequenceFeature(new SequenceFeature("Type1", "Nonpos", 0, 0, 1f,
264 sar.createSequenceAnnotationReport(sb, seq, true, true, null);
265 String expected = "<i><br>SeqDesc<br>Type1 ; Nonpos Score=1.0</i>";
266 assertEquals(expected, sb.toString());
269 * non-positional features not wanted
272 sar.createSequenceAnnotationReport(sb, seq, true, false, null);
273 assertEquals("<i><br>SeqDesc</i>", sb.toString());
276 * add non-pos feature with score inside min-max range for feature type
277 * minmax holds { [positionalMin, positionalMax], [nonPosMin, nonPosMax] }
278 * score is only appended for positional features so ignored here!
279 * minMax are not recorded for non-positional features
281 seq.addSequenceFeature(new SequenceFeature("Metal", "Desc", 0, 0, 5f,
284 FeatureRendererModel fr = new FeatureRenderer(null);
285 Map<String, float[][]> minmax = fr.getMinMax();
286 minmax.put("Metal", new float[][] { null, new float[] { 2f, 5f } });
289 sar.createSequenceAnnotationReport(sb, seq, true, true, fr);
290 expected = "<i><br>SeqDesc<br>Metal ; Desc<br>Type1 ; Nonpos</i>";
291 assertEquals(expected, sb.toString());
294 * 'linkonly' features are ignored; this is obsolete, as linkonly
295 * is only set by DasSequenceFetcher, and DAS is history
297 SequenceFeature sf = new SequenceFeature("Metal", "Desc", 0, 0, 5f,
299 sf.setValue("linkonly", Boolean.TRUE);
300 seq.addSequenceFeature(sf);
302 sar.createSequenceAnnotationReport(sb, seq, true, true, fr);
303 assertEquals(expected, sb.toString()); // unchanged!
306 * 'clinical_significance' attribute only included when
307 * used for feature colouring
309 SequenceFeature sf2 = new SequenceFeature("Variant", "Havana", 0, 0,
311 sf2.setValue(GffConstants.CLINICAL_SIGNIFICANCE, "benign");
312 seq.addSequenceFeature(sf2);
314 sar.createSequenceAnnotationReport(sb, seq, true, true, fr);
315 expected = "<i><br>SeqDesc<br>Metal ; Desc<br>Type1 ; Nonpos<br>Variant ; Havana</i>";
316 assertEquals(expected, sb.toString());
321 seq.addDBRef(new DBRefEntry("PDB", "0", "3iu1"));
322 seq.addDBRef(new DBRefEntry("Uniprot", "1", "P30419"));
324 // with showDbRefs = false
326 sar.createSequenceAnnotationReport(sb, seq, false, true, fr);
327 assertEquals(expected, sb.toString()); // unchanged
329 // with showDbRefs = true, colour Variant features by clinical_significance
331 FeatureColourI fc = new FeatureColour(Color.green, Color.pink, 2, 3);
332 fc.setAttributeName("clinical_significance");
333 fr.setColour("Variant", fc);
334 sar.createSequenceAnnotationReport(sb, seq, true, true, fr);
335 expected = "<i><br>SeqDesc<br>UNIPROT P30419<br>PDB 3iu1<br>Metal ; Desc<br>"
336 + "Type1 ; Nonpos<br>Variant ; Havana; clinical_significance=benign</i>";
337 assertEquals(expected, sb.toString());
338 // with showNonPositionalFeatures = false
340 sar.createSequenceAnnotationReport(sb, seq, true, false, fr);
341 expected = "<i><br>SeqDesc<br>UNIPROT P30419<br>PDB 3iu1</i>";
342 assertEquals(expected, sb.toString());
344 // see other tests for treatment of status and html
348 * Test that exercises an abbreviated sequence details report, with ellipsis
349 * where there are more than 40 different sources, or more than 4 dbrefs for a
352 @Test(groups = "Functional")
353 public void testCreateSequenceAnnotationReport_withEllipsis()
355 SequenceAnnotationReport sar = new SequenceAnnotationReport(null);
356 StringBuilder sb = new StringBuilder();
358 SequenceI seq = new Sequence("s1", "ABC");
360 int maxSources = (int) PA.getValue(sar, "MAX_SOURCES");
361 for (int i = 0; i <= maxSources; i++)
363 seq.addDBRef(new DBRefEntry("PDB" + i, "0", "3iu1"));
366 int maxRefs = (int) PA.getValue(sar, "MAX_REFS_PER_SOURCE");
367 for (int i = 0; i <= maxRefs; i++)
369 seq.addDBRef(new DBRefEntry("Uniprot", "0", "P3041" + i));
372 sar.createSequenceAnnotationReport(sb, seq, true, true, null, true);
373 String report = sb.toString();
375 .startsWith("<i><br>UNIPROT P30410, P30411, P30412, P30413,...<br>PDB0 3iu1"));
377 .endsWith("<br>PDB7 3iu1<br>PDB8,...<br>(Output Sequence Details to list all database references)</i>"));