JAL-2907 read/write underscore for annotation at gap positions
[jalview.git] / test / jalview / io / StockholmFileTest.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.assertNotNull;
25 import static org.testng.AssertJUnit.assertNull;
26 import static org.testng.AssertJUnit.assertTrue;
27 import static org.testng.AssertJUnit.fail;
28
29 import jalview.datamodel.Alignment;
30 import jalview.datamodel.AlignmentAnnotation;
31 import jalview.datamodel.AlignmentI;
32 import jalview.datamodel.Annotation;
33 import jalview.datamodel.Sequence;
34 import jalview.datamodel.SequenceFeature;
35 import jalview.datamodel.SequenceI;
36 import jalview.gui.JvOptionPane;
37
38 import java.io.File;
39 import java.io.IOException;
40 import java.util.Arrays;
41 import java.util.BitSet;
42 import java.util.HashMap;
43 import java.util.List;
44 import java.util.Map;
45
46 import org.testng.Assert;
47 import org.testng.annotations.BeforeClass;
48 import org.testng.annotations.Test;
49
50 public class StockholmFileTest
51 {
52
53   @BeforeClass(alwaysRun = true)
54   public void setUpJvOptionPane()
55   {
56     JvOptionPane.setInteractiveMode(false);
57     JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
58   }
59
60   static String PfamFile = "examples/PF00111_seed.stk",
61           RfamFile = "examples/RF00031_folded.stk";
62
63   @Test(groups = { "Functional" })
64   public void pfamFileIO() throws Exception
65   {
66     testFileIOwithFormat(new File(PfamFile), FileFormat.Stockholm, -1, 0,
67             false, false, false);
68   }
69
70   @Test(groups = { "Functional" })
71   public void pfamFileDataExtraction() throws Exception
72   {
73     AppletFormatAdapter af = new AppletFormatAdapter();
74     AlignmentI al = af.readFile(PfamFile, DataSourceType.FILE,
75             new IdentifyFile().identify(PfamFile, DataSourceType.FILE));
76     int numpdb = 0;
77     for (SequenceI sq : al.getSequences())
78     {
79       if (sq.getAllPDBEntries() != null)
80       {
81         numpdb += sq.getAllPDBEntries().size();
82       }
83     }
84     assertTrue(
85             "PF00111 seed alignment has at least 1 PDB file, but the reader found none.",
86             numpdb > 0);
87   }
88
89   @Test(groups = { "Functional" })
90   public void rfamFileIO() throws Exception
91   {
92     testFileIOwithFormat(new File(RfamFile), FileFormat.Stockholm, 2, 1,
93             false, false, false);
94   }
95
96   /**
97    * test alignment data in given file can be imported, exported and reimported
98    * with no dataloss
99    * 
100    * @param f
101    *          - source datafile (IdentifyFile.identify() should work with it)
102    * @param ioformat
103    *          - label for IO class used to write and read back in the data from
104    *          f
105    * @param ignoreFeatures
106    * @param ignoreRowVisibility
107    * @param allowNullAnnotations
108    */
109
110   public static void testFileIOwithFormat(File f, FileFormatI ioformat,
111           int naliannot, int nminseqann, boolean ignoreFeatures,
112           boolean ignoreRowVisibility, boolean allowNullAnnotations)
113   {
114     System.out.println("Reading file: " + f);
115     String ff = f.getPath();
116     try
117     {
118       AppletFormatAdapter rf = new AppletFormatAdapter();
119
120       AlignmentI al = rf.readFile(ff, DataSourceType.FILE,
121               new IdentifyFile().identify(ff, DataSourceType.FILE));
122
123       assertNotNull("Couldn't read supplied alignment data.", al);
124
125       // make sure dataset is initialised ? not sure about this
126       for (int i = 0; i < al.getSequencesArray().length; ++i)
127       {
128         al.getSequenceAt(i).createDatasetSequence();
129       }
130       String outputfile = rf.formatSequences(ioformat, al, true);
131       System.out.println("Output file in '" + ioformat + "':\n"
132               + outputfile + "\n<<EOF\n");
133       // test for consistency in io
134       AlignmentI al_input = new AppletFormatAdapter().readFile(outputfile,
135               DataSourceType.PASTE, ioformat);
136       assertNotNull("Couldn't parse reimported alignment data.", al_input);
137
138       FileFormatI identifyoutput = new IdentifyFile().identify(outputfile,
139               DataSourceType.PASTE);
140       assertNotNull("Identify routine failed for outputformat " + ioformat,
141               identifyoutput);
142       assertTrue(
143               "Identify routine could not recognise output generated by '"
144                       + ioformat + "' writer",
145               ioformat.equals(identifyoutput));
146       testAlignmentEquivalence(al, al_input, ignoreFeatures,
147               ignoreRowVisibility, allowNullAnnotations);
148       int numaliannot = 0, numsqswithali = 0;
149       for (AlignmentAnnotation ala : al_input.getAlignmentAnnotation())
150       {
151         if (ala.sequenceRef == null)
152         {
153           numaliannot++;
154         }
155         else
156         {
157           numsqswithali++;
158         }
159       }
160       if (naliannot > -1)
161       {
162         assertEquals("Number of alignment annotations", naliannot,
163                 numaliannot);
164       }
165
166       assertTrue(
167               "Number of sequence associated annotations wasn't at least "
168                       + nminseqann, numsqswithali >= nminseqann);
169
170     } catch (Exception e)
171     {
172       e.printStackTrace();
173       assertTrue("Couln't format the alignment for output file.", false);
174     }
175   }
176
177   /**
178    * assert alignment equivalence
179    * 
180    * @param al
181    *          'original'
182    * @param al_input
183    *          'secondary' or generated alignment from some datapreserving
184    *          transformation
185    * @param ignoreFeatures
186    *          when true, differences in sequence feature annotation are ignored
187    */
188   public static void testAlignmentEquivalence(AlignmentI al,
189           AlignmentI al_input, boolean ignoreFeatures)
190   {
191     testAlignmentEquivalence(al, al_input, ignoreFeatures, false, false);
192   }
193
194   /**
195    * assert alignment equivalence - uses special comparators for RNA structure
196    * annotation rows.
197    * 
198    * @param al
199    *          'original'
200    * @param al_input
201    *          'secondary' or generated alignment from some datapreserving
202    *          transformation
203    * @param ignoreFeatures
204    *          when true, differences in sequence feature annotation are ignored
205    * 
206    * @param ignoreRowVisibility
207    *          when true, do not fail if there are differences in the visibility
208    *          of annotation rows
209    * @param allowNullAnnotation
210    *          when true, positions in alignment annotation that are null will be
211    *          considered equal to positions containing annotation where
212    *          Annotation.isWhitespace() returns true.
213    * 
214    */
215   public static void testAlignmentEquivalence(AlignmentI al,
216           AlignmentI al_input, boolean ignoreFeatures,
217           boolean ignoreRowVisibility, boolean allowNullAnnotation)
218   {
219     assertNotNull("Original alignment was null", al);
220     assertNotNull("Generated alignment was null", al_input);
221
222     assertTrue("Alignment dimension mismatch: original: " + al.getHeight()
223             + "x" + al.getWidth() + ", generated: " + al_input.getHeight()
224             + "x" + al_input.getWidth(),
225             al.getHeight() == al_input.getHeight()
226                     && al.getWidth() == al_input.getWidth());
227
228     // check Alignment annotation
229     AlignmentAnnotation[] aa_new = al_input.getAlignmentAnnotation();
230     AlignmentAnnotation[] aa_original = al.getAlignmentAnnotation();
231
232     // note - at moment we do not distinguish between alignment without any
233     // annotation rows and alignment with no annotation row vector
234     // we might want to revise this in future
235     int aa_new_size = (aa_new == null ? 0 : aa_new.length);
236     int aa_original_size = (aa_original == null ? 0 : aa_original.length);
237     Map<Integer, BitSet> orig_groups = new HashMap<>();
238     Map<Integer, BitSet> new_groups = new HashMap<>();
239
240     if (aa_new != null && aa_original != null)
241     {
242       for (int i = 0; i < aa_original.length; i++)
243       {
244         if (aa_new.length > i)
245         {
246           assertEqualSecondaryStructure(
247                   "Different alignment annotation at position " + i,
248                   aa_original[i], aa_new[i], allowNullAnnotation);
249           // compare graphGroup or graph properties - needed to verify JAL-1299
250           assertEquals("Graph type not identical.", aa_original[i].graph,
251                   aa_new[i].graph);
252           if (!ignoreRowVisibility)
253           {
254             assertEquals("Visibility not identical.",
255                     aa_original[i].visible,
256                   aa_new[i].visible);
257           }
258           assertEquals("Threshold line not identical.",
259                   aa_original[i].threshold, aa_new[i].threshold);
260           // graphGroup may differ, but pattern should be the same
261           Integer o_ggrp = new Integer(aa_original[i].graphGroup + 2);
262           Integer n_ggrp = new Integer(aa_new[i].graphGroup + 2);
263           BitSet orig_g = orig_groups.get(o_ggrp);
264           BitSet new_g = new_groups.get(n_ggrp);
265           if (orig_g == null)
266           {
267             orig_groups.put(o_ggrp, orig_g = new BitSet());
268           }
269           if (new_g == null)
270           {
271             new_groups.put(n_ggrp, new_g = new BitSet());
272           }
273           assertEquals("Graph Group pattern differs at annotation " + i,
274                   orig_g, new_g);
275           orig_g.set(i);
276           new_g.set(i);
277         }
278         else
279         {
280           System.err.println("No matching annotation row for "
281                   + aa_original[i].toString());
282         }
283       }
284     }
285     assertEquals(
286             "Generated and imported alignment have different annotation sets",
287             aa_original_size, aa_new_size);
288
289     // check sequences, annotation and features
290     SequenceI[] seq_original = new SequenceI[al.getSequencesArray().length];
291     seq_original = al.getSequencesArray();
292     SequenceI[] seq_new = new SequenceI[al_input.getSequencesArray().length];
293     seq_new = al_input.getSequencesArray();
294     List<SequenceFeature> sequenceFeatures_original;
295     List<SequenceFeature> sequenceFeatures_new;
296     AlignmentAnnotation annot_original, annot_new;
297     //
298     for (int i = 0; i < al.getSequencesArray().length; i++)
299     {
300       String name = seq_original[i].getName();
301       int start = seq_original[i].getStart();
302       int end = seq_original[i].getEnd();
303       System.out.println("Check sequence: " + name + "/" + start + "-"
304               + end);
305
306       // search equal sequence
307       for (int in = 0; in < al_input.getSequencesArray().length; in++)
308       {
309         if (name.equals(seq_new[in].getName())
310                 && start == seq_new[in].getStart()
311                 && end == seq_new[in].getEnd())
312         {
313           String ss_original = seq_original[i].getSequenceAsString();
314           String ss_new = seq_new[in].getSequenceAsString();
315           assertEquals("The sequences " + name + "/" + start + "-" + end
316                   + " are not equal", ss_original, ss_new);
317
318           assertTrue(
319                   "Sequence Features were not equivalent"
320                           + (ignoreFeatures ? " ignoring." : ""),
321                   ignoreFeatures
322                           || (seq_original[i].getSequenceFeatures() == null && seq_new[in]
323                                   .getSequenceFeatures() == null)
324                           || (seq_original[i].getSequenceFeatures() != null && seq_new[in]
325                                   .getSequenceFeatures() != null));
326           // compare sequence features
327           if (seq_original[i].getSequenceFeatures() != null
328                   && seq_new[in].getSequenceFeatures() != null)
329           {
330             System.out.println("There are feature!!!");
331             sequenceFeatures_original = seq_original[i]
332                     .getSequenceFeatures();
333             sequenceFeatures_new = seq_new[in].getSequenceFeatures();
334
335             assertEquals("different number of features", seq_original[i]
336                     .getSequenceFeatures().size(), seq_new[in]
337                     .getSequenceFeatures().size());
338
339             for (int feat = 0; feat < seq_original[i].getSequenceFeatures()
340                     .size(); feat++)
341             {
342               assertEquals("Different features",
343                       sequenceFeatures_original.get(feat),
344                       sequenceFeatures_new.get(feat));
345             }
346           }
347           // compare alignment annotation
348           if (al.getSequenceAt(i).getAnnotation() != null
349                   && al_input.getSequenceAt(in).getAnnotation() != null)
350           {
351             for (int j = 0; j < al.getSequenceAt(i).getAnnotation().length; j++)
352             {
353               if (al.getSequenceAt(i).getAnnotation()[j] != null
354                       && al_input.getSequenceAt(in).getAnnotation()[j] != null)
355               {
356                 annot_original = al.getSequenceAt(i).getAnnotation()[j];
357                 annot_new = al_input.getSequenceAt(in).getAnnotation()[j];
358                 assertEqualSecondaryStructure(
359                         "Different annotation elements", annot_original,
360                         annot_new, allowNullAnnotation);
361               }
362             }
363           }
364           else if (al.getSequenceAt(i).getAnnotation() == null
365                   && al_input.getSequenceAt(in).getAnnotation() == null)
366           {
367             System.out.println("No annotations");
368           }
369           else if (al.getSequenceAt(i).getAnnotation() != null
370                   && al_input.getSequenceAt(in).getAnnotation() == null)
371           {
372             fail("Annotations differed between sequences ("
373                     + al.getSequenceAt(i).getName() + ") and ("
374                     + al_input.getSequenceAt(i).getName() + ")");
375           }
376           break;
377         }
378       }
379     }
380   }
381
382   /**
383    * compare two annotation rows, with special support for secondary structure
384    * comparison. With RNA, only the value and the secondaryStructure symbols are
385    * compared, displayCharacter and description are ignored. Annotations where
386    * Annotation.isWhitespace() is true are always considered equal.
387    * 
388    * @param message
389    *          - not actually used yet..
390    * @param annot_or
391    *          - the original annotation
392    * @param annot_new
393    *          - the one compared to the original annotation
394    * @param allowNullEquivalence
395    *          when true, positions in alignment annotation that are null will be
396    *          considered equal to non-null positions for which
397    *          Annotation.isWhitespace() is true.
398    */
399   private static void assertEqualSecondaryStructure(String message,
400           AlignmentAnnotation annot_or, AlignmentAnnotation annot_new,
401           boolean allowNullEqivalence)
402   {
403     // TODO: test to cover this assert behaves correctly for all allowed
404     // variations of secondary structure annotation row equivalence
405     if (annot_or.annotations.length != annot_new.annotations.length)
406     {
407       fail("Different lengths for annotation row elements: "
408               + annot_or.annotations.length + "!="
409               + annot_new.annotations.length);
410     }
411     boolean isRna = annot_or.isRNA();
412     assertTrue("Expected " + (isRna ? " valid RNA " : " no RNA ")
413             + " secondary structure in the row.",
414             isRna == annot_new.isRNA());
415     for (int i = 0; i < annot_or.annotations.length; i++)
416     {
417       Annotation an_or = annot_or.annotations[i], an_new = annot_new.annotations[i];
418       if (an_or != null && an_new != null)
419       {
420
421         if (isRna)
422         {
423           if (an_or.secondaryStructure != an_new.secondaryStructure
424                   || ((Float.isNaN(an_or.value) != Float
425                           .isNaN(an_new.value)) || an_or.value != an_new.value))
426           {
427             fail("Different RNA secondary structure at column " + i
428                     + " expected: [" + annot_or.annotations[i].toString()
429                     + "] but got: [" + annot_new.annotations[i].toString()
430                     + "]");
431           }
432         }
433         else
434         {
435           // not RNA secondary structure, so expect all elements to match...
436           if ((an_or.isWhitespace() != an_new.isWhitespace())
437                   || !an_or.displayCharacter.trim().equals(
438                   an_new.displayCharacter.trim())
439                   || !("" + an_or.secondaryStructure).trim().equals(
440                           ("" + an_new.secondaryStructure).trim())
441                   || (an_or.description != an_new.description && !((an_or.description == null && an_new.description
442                           .trim().length() == 0)
443                           || (an_new.description == null && an_or.description
444                                   .trim().length() == 0) || an_or.description
445                           .trim().equals(an_new.description.trim())))
446                   || !((Float.isNaN(an_or.value) && Float
447                           .isNaN(an_new.value)) || an_or.value == an_new.value))
448           {
449             fail("Annotation Element Mismatch\nElement " + i
450                     + " in original: " + annot_or.annotations[i].toString()
451                     + "\nElement " + i + " in new: "
452                     + annot_new.annotations[i].toString());
453           }
454         }
455       }
456       else if (annot_or.annotations[i] == null
457               && annot_new.annotations[i] == null)
458       {
459         continue;
460       }
461       else
462       {
463         if (allowNullEqivalence)
464         {
465           if (an_or != null && an_or.isWhitespace())
466
467           {
468             continue;
469           }
470           if (an_new != null && an_new.isWhitespace())
471           {
472             continue;
473           }
474         }
475         // need also to test for null in one, non-SS annotation in other...
476         fail("Annotation Element Mismatch\nElement " + i + " in original: "
477                 + (an_or == null ? "is null" : an_or.toString())
478                 + "\nElement " + i + " in new: "
479                 + (an_new == null ? "is null" : an_new.toString()));
480       }
481     }
482   }
483
484   /**
485    * @see assertEqualSecondaryStructure - test if two secondary structure
486    *      annotations are not equal
487    * @param message
488    * @param an_orig
489    * @param an_new
490    * @param allowNullEquivalence
491    */
492   public static void assertNotEqualSecondaryStructure(String message,
493           AlignmentAnnotation an_orig, AlignmentAnnotation an_new,
494           boolean allowNullEquivalence)
495   {
496     boolean thrown = false;
497     try
498     {
499       assertEqualSecondaryStructure("", an_orig, an_new,
500               allowNullEquivalence);
501     } catch (AssertionError af)
502     {
503       thrown = true;
504     }
505     if (!thrown)
506     {
507       fail("Expected difference for [" + an_orig + "] and [" + an_new + "]");
508     }
509   }
510   private AlignmentAnnotation makeAnnot(Annotation ae)
511   {
512     return new AlignmentAnnotation("label", "description", new Annotation[]
513     { ae });
514   }
515
516   @Test(groups={"Functional"})
517   public void testAnnotationEquivalence()
518   {
519     AlignmentAnnotation one = makeAnnot(new Annotation("", "", ' ', 1));
520     AlignmentAnnotation anotherOne = makeAnnot(new Annotation("", "", ' ',
521             1));
522     AlignmentAnnotation sheet = makeAnnot(new Annotation("","",'E',0f));
523     AlignmentAnnotation anotherSheet = makeAnnot(new Annotation("","",'E',0f)); 
524     AlignmentAnnotation sheetWithLabel = makeAnnot(new Annotation("1", "",
525             'E', 0f));
526     AlignmentAnnotation anotherSheetWithLabel = makeAnnot(new Annotation(
527             "1", "", 'E', 0f));
528     AlignmentAnnotation rnaNoDC = makeAnnot(new Annotation("","",'<',0f));
529     AlignmentAnnotation anotherRnaNoDC = makeAnnot(new Annotation("","",'<',0f));
530     AlignmentAnnotation rnaWithDC = makeAnnot(new Annotation("B", "", '<',
531             0f));
532     AlignmentAnnotation anotherRnaWithDC = makeAnnot(new Annotation("B",
533             "", '<', 0f));
534     
535     // check self equivalence
536     for (boolean allowNull : new boolean[] { true, false })
537     {
538       assertEqualSecondaryStructure("Should be equal", one, anotherOne,
539               allowNull);
540       assertEqualSecondaryStructure("Should be equal", sheet, anotherSheet,
541               allowNull);
542       assertEqualSecondaryStructure("Should be equal", sheetWithLabel,
543               anotherSheetWithLabel, allowNull);
544       assertEqualSecondaryStructure("Should be equal", rnaNoDC,
545               anotherRnaNoDC, allowNull);
546       assertEqualSecondaryStructure("Should be equal", rnaWithDC,
547               anotherRnaWithDC, allowNull);
548       // display character doesn't matter for RNA structure (for 2.10.2)
549       assertEqualSecondaryStructure("Should be equal", rnaWithDC, rnaNoDC,
550               allowNull);
551       assertEqualSecondaryStructure("Should be equal", rnaNoDC, rnaWithDC,
552               allowNull);
553     }
554
555     // verify others are different
556     List<AlignmentAnnotation> aaSet = Arrays.asList(one, sheet,
557             sheetWithLabel, rnaWithDC);
558     for (int p = 0; p < aaSet.size(); p++)
559     {
560       for (int q = 0; q < aaSet.size(); q++)
561       {
562         if (p != q)
563         {
564           assertNotEqualSecondaryStructure("Should be different",
565                     aaSet.get(p), aaSet.get(q), false);
566         }
567         else
568         {
569           assertEqualSecondaryStructure("Should be same", aaSet.get(p),
570                   aaSet.get(q), false);
571           assertEqualSecondaryStructure("Should be same", aaSet.get(p),
572                   aaSet.get(q), true);
573           assertNotEqualSecondaryStructure(
574                   "Should be different to empty anot", aaSet.get(p),
575                   makeAnnot(Annotation.EMPTY_ANNOTATION), false);
576           assertNotEqualSecondaryStructure(
577                   "Should be different to empty annot",
578                   makeAnnot(Annotation.EMPTY_ANNOTATION), aaSet.get(q),
579                   true);
580           assertNotEqualSecondaryStructure("Should be different to null",
581                   aaSet.get(p), makeAnnot(null), false);
582           assertNotEqualSecondaryStructure("Should be different to null",
583                   makeAnnot(null), aaSet.get(q), true);
584         }
585       }
586     }
587
588     // test null
589
590   }
591
592   String aliFile = ">Dm\nAAACCCUUUUACACACGGGAAAGGG";
593   String annFile = "JALVIEW_ANNOTATION\n# Created: Thu May 04 11:16:52 BST 2017\n\n"
594           + "SEQUENCE_REF\tDm\nNO_GRAPH\tsecondary structure\tsecondary structure\t"
595           + "(|(|(|(|, .|, .|, .|, .|)|)|)|)|\t0.0\nROWPROPERTIES\t"
596           + "secondary structure\tscaletofit=true\tshowalllabs=true\tcentrelabs=false";
597
598   String annFileCurlyWuss = "JALVIEW_ANNOTATION\n# Created: Thu May 04 11:16:52 BST 2017\n\n"
599           + "SEQUENCE_REF\tDm\nNO_GRAPH\tsecondary structure\tsecondary structure\t"
600           + "(|(|(|(||{|{||{|{||)|)|)|)||}|}|}|}|\t0.0\nROWPROPERTIES\t"
601           + "secondary structure\tscaletofit=true\tshowalllabs=true\tcentrelabs=false";
602   String annFileFullWuss = "JALVIEW_ANNOTATION\n# Created: Thu May 04 11:16:52 BST 2017\n\n"
603           + "SEQUENCE_REF\tDm\nNO_GRAPH\tsecondary structure\tsecondary structure\t"
604           + "(|(|(|(||{|{||[|[||)|)|)|)||}|}|]|]|\t0.0\nROWPROPERTIES\t"
605           + "secondary structure\tscaletofit=true\tshowalllabs=true\tcentrelabs=false";
606
607   @Test(groups = { "Functional" })
608   public void secondaryStructureForRNASequence() throws Exception
609   {
610     roundTripSSForRNA(aliFile, annFile);
611   }
612
613   @Test(groups = { "Functional" })
614   public void curlyWUSSsecondaryStructureForRNASequence() throws Exception
615   {
616     roundTripSSForRNA(aliFile, annFileCurlyWuss);
617   }
618
619   @Test(groups = { "Functional" })
620   public void fullWUSSsecondaryStructureForRNASequence() throws Exception
621   {
622     roundTripSSForRNA(aliFile, annFileFullWuss);
623   }
624
625   @Test(groups = { "Functional" })
626   public void detectWussBrackets()
627   {
628     for (char ch : new char[] { '{', '}', '[', ']', '(', ')', '<', '>' })
629     {
630       Assert.assertTrue(StockholmFile.DETECT_BRACKETS.matchAt("" + ch, 0),
631               "Didn't recognise " + ch + " as a WUSS bracket");
632     }
633     for (char ch : new char[] { '@', '!', 'V', 'Q', '*', ' ', '-', '.' })
634     {
635       Assert.assertFalse(StockholmFile.DETECT_BRACKETS.matchAt("" + ch, 0),
636               "Shouldn't recognise " + ch + " as a WUSS bracket");
637     }
638   }
639   private static void roundTripSSForRNA(String aliFile, String annFile)
640           throws Exception
641   {
642     AlignmentI al = new AppletFormatAdapter().readFile(aliFile,
643             DataSourceType.PASTE, jalview.io.FileFormat.Fasta);
644     AnnotationFile aaf = new AnnotationFile();
645     aaf.readAnnotationFile(al, annFile, DataSourceType.PASTE);
646     al.getAlignmentAnnotation()[0].visible = true;
647
648     // TODO: create a better 'save as <format>' pattern
649     StockholmFile sf = new StockholmFile(al);
650
651     String stockholmFile = sf.print(al.getSequencesArray(), true);
652
653     AlignmentI newAl = new AppletFormatAdapter().readFile(stockholmFile,
654             DataSourceType.PASTE, jalview.io.FileFormat.Stockholm);
655     // AlignmentUtils.showOrHideSequenceAnnotations(newAl.getViewport()
656     // .getAlignment(), Arrays.asList("Secondary Structure"), newAl
657     // .getViewport().getAlignment().getSequences(), true, true);
658     testAlignmentEquivalence(al, newAl, true, true, true);
659
660   }
661
662   @Test(groups = "Functional")
663   public void testType2id()
664   {
665     assertEquals("OS", StockholmFile.type2id("organism"));
666     // not case-sensitive:
667     assertEquals("OS", StockholmFile.type2id("Organism"));
668     // is space-sensitive:
669     assertNull(StockholmFile.type2id("Organism "));
670     assertNull(StockholmFile.type2id("orgasm"));
671   }
672
673   @Test(groups = "Functional")
674   public void testOutputCharacter()
675   {
676     SequenceI seq = new Sequence("seq", "abc--def-");
677
678     Annotation[] ann = new Annotation[8];
679     ann[1] = new Annotation("Z", "desc", 'E', 1f);
680     ann[2] = new Annotation("Q", "desc", ' ', 1f);
681     ann[4] = new Annotation("", "desc", 'E', 1f);
682     ann[6] = new Annotation("ZH", "desc", 'E', 1f);
683
684     /*
685      * null annotation in column (not Secondary Structure annotation)
686      * should answer sequence character, or '-' if null sequence
687      */
688     assertEquals('-', StockholmFile.outputCharacter("RF", 0, ann, null));
689     assertEquals('d', StockholmFile.outputCharacter("RF", 5, ann, seq));
690     assertEquals('-', StockholmFile.outputCharacter("RF", 8, ann, seq));
691
692     /*
693      * null annotation in column (SS annotation) should answer underscore
694      */
695     assertEquals('_', StockholmFile.outputCharacter("SS", 0, ann, seq));
696
697     /*
698      * SS secondary structure symbol
699      */
700     assertEquals('E', StockholmFile.outputCharacter("SS", 1, ann, seq));
701
702     /*
703      * no SS symbol, use label instead 
704      */
705     assertEquals('Q', StockholmFile.outputCharacter("SS", 2, ann, seq));
706
707     /*
708      * SS with 2 character label - second character overrides SS symbol 
709      */
710     assertEquals('H', StockholmFile.outputCharacter("SS", 6, ann, seq));
711
712     /*
713      * empty display character, not SS - answers '.'
714      */
715     assertEquals('.', StockholmFile.outputCharacter("RF", 4, ann, seq));
716   }
717
718   /**
719    * Test to verify that gaps are input/output as underscore in STO annotation
720    * 
721    * @throws IOException
722    */
723   @Test(groups = "Functional")
724   public void testRoundtripWithGaps() throws IOException
725   {
726     /*
727      * small extract from RF00031_folded.stk
728      */
729     // @formatter:off
730     String stoData = 
731             "# STOCKHOLM 1.0\n" +
732             "#=GR B.taurus.4 SS .._((.))_\n" +
733             "B.taurus.4         AC.UGCGU.\n" +
734             "#=GR B.taurus.5 SS ..((_._))\n" +
735             "B.taurus.5         ACUU.G.CG\n" +
736         "//\n";
737     // @formatter:on
738     StockholmFile parser = new StockholmFile(stoData, DataSourceType.PASTE);
739     SequenceI[] seqs = parser.getSeqsAsArray();
740     assertEquals(2, seqs.length);
741
742     /*
743      * B.taurus.4 has a trailing gap
744      * rendered as underscore in Stockholm annotation
745      */
746     assertEquals("AC.UGCGU.", seqs[0].getSequenceAsString());
747     AlignmentAnnotation[] anns = seqs[0].getAnnotation();
748     assertEquals(1, anns.length);
749     AlignmentAnnotation taurus4SS = anns[0];
750     assertEquals(9, taurus4SS.annotations.length);
751     assertEquals(" .", taurus4SS.annotations[0].displayCharacter);
752     assertNull(taurus4SS.annotations[2]); // gapped position
753     assertNull(taurus4SS.annotations[8]); // gapped position
754     assertEquals('(', taurus4SS.annotations[3].secondaryStructure);
755     assertEquals("(", taurus4SS.annotations[3].displayCharacter);
756     assertEquals(')', taurus4SS.annotations[7].secondaryStructure);
757     
758     /*
759      * output as Stockholm and verify it matches the original input
760      * (gaps output as underscore in annotation lines)
761      * note: roundtrip test works with the input lines ordered as above;
762      * can also parse in other orders, but then input doesn't match output
763      */
764     AlignmentFileWriterI afile = FileFormat.Stockholm
765             .getWriter(new Alignment(seqs));
766     String output = afile.print(seqs, false);
767     assertEquals(stoData, output);
768   }
769 }