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.
22 * This extension was written by Benjamin Schuster-Boeckler at sanger.ac.uk
26 import jalview.analysis.Rna;
27 import jalview.datamodel.AlignmentAnnotation;
28 import jalview.datamodel.AlignmentI;
29 import jalview.datamodel.Annotation;
30 import jalview.datamodel.DBRefEntry;
31 import jalview.datamodel.Mapping;
32 import jalview.datamodel.Sequence;
33 import jalview.datamodel.SequenceFeature;
34 import jalview.datamodel.SequenceI;
35 import jalview.schemes.ResidueProperties;
36 import jalview.util.Comparison;
37 import jalview.util.Format;
38 import jalview.util.MessageManager;
40 import java.io.BufferedReader;
41 import java.io.FileReader;
42 import java.io.IOException;
43 import java.util.ArrayList;
44 import java.util.Enumeration;
45 import java.util.Hashtable;
46 import java.util.LinkedHashMap;
47 import java.util.List;
49 import java.util.Vector;
51 import com.stevesoft.pat.Regex;
53 import fr.orsay.lri.varna.exceptions.ExceptionUnmatchedClosingParentheses;
54 import fr.orsay.lri.varna.factories.RNAFactory;
55 import fr.orsay.lri.varna.models.rna.RNA;
57 // import org.apache.log4j.*;
60 * This class is supposed to parse a Stockholm format file into Jalview There
61 * are TODOs in this class: we do not know what the database source and version
62 * is for the file when parsing the #GS= AC tag which associates accessions with
63 * sequences. Database references are also not parsed correctly: a separate
64 * reference string parser must be added to parse the database reference form
65 * into Jalview's local representation.
67 * @author bsb at sanger.ac.uk
68 * @author Natasha Shersnev (Dundee, UK) (Stockholm file writer)
69 * @author Lauren Lui (UCSC, USA) (RNA secondary structure annotation import as
71 * @author Anne Menard (Paris, FR) (VARNA parsing of Stockholm file data)
72 * @version 0.3 + jalview mods
75 public class StockholmFile extends AlignFile
77 private static final String ANNOTATION = "annotation";
79 private static final Regex OPEN_PAREN = new Regex("(<|\\[)", "(");
81 private static final Regex CLOSE_PAREN = new Regex("(>|\\])", ")");
83 public static final Regex DETECT_BRACKETS = new Regex(
84 "(<|>|\\[|\\]|\\(|\\)|\\{|\\})");
86 StringBuffer out; // output buffer
90 public StockholmFile()
95 * Creates a new StockholmFile object for output.
97 public StockholmFile(AlignmentI al)
102 public StockholmFile(String inFile, DataSourceType type)
108 public StockholmFile(FileParse source) throws IOException
114 public void initData()
120 * Parse a file in Stockholm format into Jalview's data model using VARNA
122 * @throws IOException
123 * If there is an error with the input file
125 public void parse_with_VARNA(java.io.File inFile) throws IOException
127 FileReader fr = null;
128 fr = new FileReader(inFile);
130 BufferedReader r = new BufferedReader(fr);
131 List<RNA> result = null;
134 result = RNAFactory.loadSecStrStockholm(r);
135 } catch (ExceptionUnmatchedClosingParentheses umcp)
137 errormessage = "Unmatched parentheses in annotation. Aborting ("
138 + umcp.getMessage() + ")";
139 throw new IOException(umcp);
141 // DEBUG System.out.println("this is the secondary scructure:"
143 SequenceI[] seqs = new SequenceI[result.size()];
145 for (int i = 0; i < result.size(); i++)
147 // DEBUG System.err.println("Processing i'th sequence in Stockholm file")
148 RNA current = result.get(i);
150 String seq = current.getSeq();
151 String rna = current.getStructDBN(true);
152 // DEBUG System.out.println(seq);
153 // DEBUG System.err.println(rna);
155 int end = seq.length() - 1;
156 id = safeName(getDataName());
157 seqs[i] = new Sequence(id, seq, begin, end);
158 String[] annot = new String[rna.length()];
159 Annotation[] ann = new Annotation[rna.length()];
160 for (int j = 0; j < rna.length(); j++)
162 annot[j] = rna.substring(j, j + 1);
166 for (int k = 0; k < rna.length(); k++)
168 ann[k] = new Annotation(annot[k], "",
169 Rna.getRNASecStrucState(annot[k]).charAt(0), 0f);
172 AlignmentAnnotation align = new AlignmentAnnotation("Sec. str.",
173 current.getID(), ann);
175 seqs[i].addAlignmentAnnotation(align);
176 seqs[i].setRNA(result.get(i));
177 this.annotations.addElement(align);
184 * Parse a file in Stockholm format into Jalview's data model. The file has to
185 * be passed at construction time
187 * @throws IOException
188 * If there is an error with the input file
191 public void parse() throws IOException
193 StringBuffer treeString = new StringBuffer();
194 String treeName = null;
195 // --------------- Variable Definitions -------------------
199 Hashtable seqAnn = new Hashtable(); // Sequence related annotations
200 LinkedHashMap<String, String> seqs = new LinkedHashMap<String, String>();
201 Regex p, r, rend, s, x;
202 // Temporary line for processing RNA annotation
203 // String RNAannot = "";
205 // ------------------ Parsing File ----------------------
206 // First, we have to check that this file has STOCKHOLM format, i.e. the
207 // first line must match
209 r = new Regex("# STOCKHOLM ([\\d\\.]+)");
210 if (!r.search(nextLine()))
212 throw new IOException(MessageManager
213 .getString("exception.stockholm_invalid_format"));
217 version = r.stringMatched(1);
219 // logger.debug("Stockholm version: " + version);
222 // We define some Regexes here that will be used regularily later
223 rend = new Regex("^\\s*\\/\\/"); // Find the end of an alignment
224 p = new Regex("(\\S+)\\/(\\d+)\\-(\\d+)"); // split sequence id in
226 s = new Regex("(\\S+)\\s+(\\S*)\\s+(.*)"); // Parses annotation subtype
227 r = new Regex("#=(G[FSRC]?)\\s+(.*)"); // Finds any annotation line
228 x = new Regex("(\\S+)\\s+(\\S+)"); // split id from sequence
230 // Convert all bracket types to parentheses (necessary for passing to VARNA)
231 Regex openparen = new Regex("(<|\\[)", "(");
232 Regex closeparen = new Regex("(>|\\])", ")");
234 // Detect if file is RNA by looking for bracket types
235 Regex detectbrackets = new Regex("(<|>|\\[|\\]|\\(|\\))");
242 openparen.optimize();
243 closeparen.optimize();
245 while ((line = nextLine()) != null)
247 if (line.length() == 0)
251 if (rend.search(line))
253 // End of the alignment, pass stuff back
254 this.noSeqs = seqs.size();
256 String seqdb, dbsource = null;
257 Regex pf = new Regex("PF[0-9]{5}(.*)"); // Finds AC for Pfam
258 Regex rf = new Regex("RF[0-9]{5}(.*)"); // Finds AC for Rfam
259 if (getAlignmentProperty("AC") != null)
261 String dbType = getAlignmentProperty("AC").toString();
262 if (pf.search(dbType))
264 // PFAM Alignment - so references are typically from Uniprot
267 else if (rf.search(dbType))
272 // logger.debug("Number of sequences: " + this.noSeqs);
273 for (Map.Entry<String, String> skey : seqs.entrySet())
275 // logger.debug("Processing sequence " + acc);
276 String acc = skey.getKey();
277 String seq = skey.getValue();
278 if (maxLength < seq.length())
280 maxLength = seq.length();
286 * Retrieve hash of annotations for this accession Associate
287 * Annotation with accession
289 Hashtable accAnnotations = null;
291 if (seqAnn != null && seqAnn.containsKey(acc))
293 accAnnotations = (Hashtable) seqAnn.remove(acc);
294 // TODO: add structures to sequence
297 // Split accession in id and from/to
300 sid = p.stringMatched(1);
301 start = Integer.parseInt(p.stringMatched(2));
302 end = Integer.parseInt(p.stringMatched(3));
304 // logger.debug(sid + ", " + start + ", " + end);
306 Sequence seqO = new Sequence(sid, seq, start, end);
307 // Add Description (if any)
308 if (accAnnotations != null && accAnnotations.containsKey("DE"))
310 String desc = (String) accAnnotations.get("DE");
311 seqO.setDescription((desc == null) ? "" : desc);
313 // Add DB References (if any)
314 if (accAnnotations != null && accAnnotations.containsKey("DR"))
316 String dbr = (String) accAnnotations.get("DR");
317 if (dbr != null && dbr.indexOf(";") > -1)
319 String src = dbr.substring(0, dbr.indexOf(";"));
320 String acn = dbr.substring(dbr.indexOf(";") + 1);
321 jalview.util.DBRefUtils.parseToDbRef(seqO, src, "0", acn);
325 if (accAnnotations != null && accAnnotations.containsKey("AC"))
327 if (dbsource != null)
329 String dbr = (String) accAnnotations.get("AC");
332 // we could get very clever here - but for now - just try to
333 // guess accession type from source of alignment plus structure
335 guessDatabaseFor(seqO, dbr, dbsource);
339 // else - do what ? add the data anyway and prompt the user to
340 // specify what references these are ?
343 Hashtable features = null;
344 // We need to adjust the positions of all features to account for gaps
347 features = (Hashtable) accAnnotations.remove("features");
348 } catch (java.lang.NullPointerException e)
350 // loggerwarn("Getting Features for " + acc + ": " +
354 // if we have features
355 if (features != null)
357 int posmap[] = seqO.findPositionMap();
358 Enumeration i = features.keys();
359 while (i.hasMoreElements())
361 // TODO: parse out secondary structure annotation as annotation
363 // TODO: parse out scores as annotation row
364 // TODO: map coding region to core jalview feature types
365 String type = i.nextElement().toString();
366 Hashtable content = (Hashtable) features.remove(type);
368 // add alignment annotation for this feature
369 String key = type2id(type);
372 * have we added annotation rows for this type ?
374 boolean annotsAdded = false;
377 if (accAnnotations != null
378 && accAnnotations.containsKey(key))
380 Vector vv = (Vector) accAnnotations.get(key);
381 for (int ii = 0; ii < vv.size(); ii++)
384 AlignmentAnnotation an = (AlignmentAnnotation) vv
386 seqO.addAlignmentAnnotation(an);
392 Enumeration j = content.keys();
393 while (j.hasMoreElements())
395 String desc = j.nextElement().toString();
396 if (ANNOTATION.equals(desc) && annotsAdded)
398 // don't add features if we already added an annotation row
401 String ns = content.get(desc).toString();
402 char[] byChar = ns.toCharArray();
403 for (int k = 0; k < byChar.length; k++)
406 if (!(c == ' ' || c == '_' || c == '-' || c == '.')) // PFAM
413 int new_pos = posmap[k]; // look up nearest seqeunce
414 // position to this column
415 SequenceFeature feat = new SequenceFeature(type, desc,
416 new_pos, new_pos, null);
418 seqO.addSequenceFeature(feat);
428 // logger.debug("Adding seq " + acc + " from " + start + " to " + end
430 this.seqs.addElement(seqO);
432 return; // finished parsing this segment of source
434 else if (!r.search(line))
436 // System.err.println("Found sequence line: " + line);
438 // Split sequence in sequence and accession parts
441 // logger.error("Could not parse sequence line: " + line);
442 throw new IOException(MessageManager.formatMessage(
443 "exception.couldnt_parse_sequence_line", new String[]
446 String ns = seqs.get(x.stringMatched(1));
451 ns += x.stringMatched(2);
453 seqs.put(x.stringMatched(1), ns);
457 String annType = r.stringMatched(1);
458 String annContent = r.stringMatched(2);
460 // System.err.println("type:" + annType + " content: " + annContent);
462 if (annType.equals("GF"))
465 * Generic per-File annotation, free text Magic features: #=GF NH
466 * <tree in New Hampshire eXtended format> #=GF TN <Unique identifier
467 * for the next tree> Pfam descriptions: 7. DESCRIPTION OF FIELDS
469 * Compulsory fields: ------------------
471 * AC Accession number: Accession number in form PFxxxxx.version or
472 * PBxxxxxx. ID Identification: One word name for family. DE
473 * Definition: Short description of family. AU Author: Authors of the
474 * entry. SE Source of seed: The source suggesting the seed members
475 * belong to one family. GA Gathering method: Search threshold to
476 * build the full alignment. TC Trusted Cutoff: Lowest sequence score
477 * and domain score of match in the full alignment. NC Noise Cutoff:
478 * Highest sequence score and domain score of match not in full
479 * alignment. TP Type: Type of family -- presently Family, Domain,
480 * Motif or Repeat. SQ Sequence: Number of sequences in alignment. AM
481 * Alignment Method The order ls and fs hits are aligned to the model
482 * to build the full align. // End of alignment.
484 * Optional fields: ----------------
486 * DC Database Comment: Comment about database reference. DR Database
487 * Reference: Reference to external database. RC Reference Comment:
488 * Comment about literature reference. RN Reference Number: Reference
489 * Number. RM Reference Medline: Eight digit medline UI number. RT
490 * Reference Title: Reference Title. RA Reference Author: Reference
491 * Author RL Reference Location: Journal location. PI Previous
492 * identifier: Record of all previous ID lines. KW Keywords: Keywords.
493 * CC Comment: Comments. NE Pfam accession: Indicates a nested domain.
494 * NL Location: Location of nested domains - sequence ID, start and
497 * Obsolete fields: ----------- AL Alignment method of seed: The
498 * method used to align the seed members.
500 // Let's save the annotations, maybe we'll be able to do something
501 // with them later...
502 Regex an = new Regex("(\\w+)\\s*(.*)");
503 if (an.search(annContent))
505 if (an.stringMatched(1).equals("NH"))
507 treeString.append(an.stringMatched(2));
509 else if (an.stringMatched(1).equals("TN"))
511 if (treeString.length() > 0)
513 if (treeName == null)
515 treeName = "Tree " + (getTreeCount() + 1);
517 addNewickTree(treeName, treeString.toString());
519 treeName = an.stringMatched(2);
520 treeString = new StringBuffer();
522 setAlignmentProperty(an.stringMatched(1), an.stringMatched(2));
525 else if (annType.equals("GS"))
527 // Generic per-Sequence annotation, free text
529 * Pfam uses these features: Feature Description ---------------------
530 * ----------- AC <accession> ACcession number DE <freetext>
531 * DEscription DR <db>; <accession>; Database Reference OS <organism>
532 * OrganiSm (species) OC <clade> Organism Classification (clade, etc.)
533 * LO <look> Look (Color, etc.)
535 if (s.search(annContent))
537 String acc = s.stringMatched(1);
538 String type = s.stringMatched(2);
539 String content = s.stringMatched(3);
540 // TODO: store DR in a vector.
541 // TODO: store AC according to generic file db annotation.
543 if (seqAnn.containsKey(acc))
545 ann = (Hashtable) seqAnn.get(acc);
549 ann = new Hashtable();
551 ann.put(type, content);
552 seqAnn.put(acc, ann);
556 // throw new IOException("Error parsing " + line);
557 System.err.println(">> missing annotation: " + line);
560 else if (annType.equals("GC"))
562 // Generic per-Column annotation, exactly 1 char per column
563 // always need a label.
564 if (x.search(annContent))
566 // parse out and create alignment annotation directly.
567 parseAnnotationRow(annotations, x.stringMatched(1),
571 else if (annType.equals("GR"))
573 // Generic per-Sequence AND per-Column markup, exactly 1 char per
576 * Feature Description Markup letters ------- -----------
577 * -------------- SS Secondary Structure [HGIEBTSCX] SA Surface
578 * Accessibility [0-9X] (0=0%-10%; ...; 9=90%-100%) TM TransMembrane
579 * [Mio] PP Posterior Probability [0-9*] (0=0.00-0.05; 1=0.05-0.15;
580 * *=0.95-1.00) LI LIgand binding [*] AS Active Site [*] IN INtron (in
583 if (s.search(annContent))
585 String acc = s.stringMatched(1);
586 String type = s.stringMatched(2);
587 String oseq = s.stringMatched(3);
589 * copy of annotation field that may be processed into whitespace chunks
591 String seq = new String(oseq);
594 // Get an object with all the annotations for this sequence
595 if (seqAnn.containsKey(acc))
597 // logger.debug("Found annotations for " + acc);
598 ann = (Hashtable) seqAnn.get(acc);
602 // logger.debug("Creating new annotations holder for " + acc);
603 ann = new Hashtable();
604 seqAnn.put(acc, ann);
607 // // start of block for appending annotation lines for wrapped
609 // TODO test structure, call parseAnnotationRow with vector from
610 // hashtable for specific sequence
613 // Get an object with all the content for an annotation
614 if (ann.containsKey("features"))
616 // logger.debug("Found features for " + acc);
617 features = (Hashtable) ann.get("features");
621 // logger.debug("Creating new features holder for " + acc);
622 features = new Hashtable();
623 ann.put("features", features);
627 if (features.containsKey(this.id2type(type)))
629 // logger.debug("Found content for " + this.id2type(type));
630 content = (Hashtable) features.get(this.id2type(type));
634 // logger.debug("Creating new content holder for " +
635 // this.id2type(type));
636 content = new Hashtable();
637 features.put(this.id2type(type), content);
639 String ns = (String) content.get(ANNOTATION);
645 // finally, append the annotation line
647 content.put(ANNOTATION, ns);
648 // // end of wrapped annotation block.
649 // // Now a new row is created with the current set of data
652 if (seqAnn.containsKey(acc))
654 strucAnn = (Hashtable) seqAnn.get(acc);
658 strucAnn = new Hashtable();
661 Vector<AlignmentAnnotation> newStruc = new Vector<AlignmentAnnotation>();
662 parseAnnotationRow(newStruc, type, ns);
663 for (AlignmentAnnotation alan : newStruc)
665 alan.visible = false;
667 // new annotation overwrites any existing annotation...
669 strucAnn.put(type, newStruc);
670 seqAnn.put(acc, strucAnn);
676 "Warning - couldn't parse sequence annotation row line:\n"
678 // throw new IOException("Error parsing " + line);
683 throw new IOException(MessageManager.formatMessage(
684 "exception.unknown_annotation_detected", new String[]
685 { annType, annContent }));
689 if (treeString.length() > 0)
691 if (treeName == null)
693 treeName = "Tree " + (1 + getTreeCount());
695 addNewickTree(treeName, treeString.toString());
700 * Demangle an accession string and guess the originating sequence database
701 * for a given sequence
704 * sequence to be annotated
706 * Accession string for sequence
708 * source database for alignment (PFAM or RFAM)
710 private void guessDatabaseFor(Sequence seqO, String dbr, String dbsource)
712 DBRefEntry dbrf = null;
713 List<DBRefEntry> dbrs = new ArrayList<DBRefEntry>();
714 String seqdb = "Unknown", sdbac = "" + dbr;
715 int st = -1, en = -1, p;
716 if ((st = sdbac.indexOf("/")) > -1)
718 String num, range = sdbac.substring(st + 1);
719 sdbac = sdbac.substring(0, st);
720 if ((p = range.indexOf("-")) > -1)
723 if (p < range.length())
725 num = range.substring(p).trim();
728 en = Integer.parseInt(num);
729 } catch (NumberFormatException x)
731 // could warn here that index is invalid
740 num = range.substring(0, p).trim();
743 st = Integer.parseInt(num);
744 } catch (NumberFormatException x)
746 // could warn here that index is invalid
750 if (dbsource.equals("PFAM"))
753 if (sdbac.indexOf(".") > -1)
755 // strip of last subdomain
756 sdbac = sdbac.substring(0, sdbac.indexOf("."));
757 dbrf = jalview.util.DBRefUtils.parseToDbRef(seqO, seqdb, dbsource,
764 dbrf = jalview.util.DBRefUtils.parseToDbRef(seqO, dbsource, dbsource,
773 seqdb = "EMBL"; // total guess - could be ENA, or something else these
775 if (sdbac.indexOf(".") > -1)
777 // strip off last subdomain
778 sdbac = sdbac.substring(0, sdbac.indexOf("."));
779 dbrf = jalview.util.DBRefUtils.parseToDbRef(seqO, seqdb, dbsource,
787 dbrf = jalview.util.DBRefUtils.parseToDbRef(seqO, dbsource, dbsource,
794 if (st != -1 && en != -1)
796 for (DBRefEntry d : dbrs)
798 jalview.util.MapList mp = new jalview.util.MapList(
800 { seqO.getStart(), seqO.getEnd() }, new int[] { st, en }, 1,
802 jalview.datamodel.Mapping mping = new Mapping(mp);
808 protected static AlignmentAnnotation parseAnnotationRow(
809 Vector<AlignmentAnnotation> annotation, String label,
812 String convert1, convert2 = null;
814 // convert1 = OPEN_PAREN.replaceAll(annots);
815 // convert2 = CLOSE_PAREN.replaceAll(convert1);
816 // annots = convert2;
819 if (label.contains("_cons"))
821 type = (label.indexOf("_cons") == label.length() - 5)
822 ? label.substring(0, label.length() - 5)
825 boolean ss = false, posterior = false;
826 type = id2type(type);
827 if (type.equalsIgnoreCase("secondary structure"))
831 if (type.equalsIgnoreCase("posterior probability"))
835 // decide on secondary structure or not.
836 Annotation[] els = new Annotation[annots.length()];
837 for (int i = 0; i < annots.length(); i++)
839 String pos = annots.substring(i, i + 1);
841 ann = new Annotation(pos, "", ' ', 0f); // 0f is 'valid' null - will not
845 // if (" .-_".indexOf(pos) == -1)
847 if (DETECT_BRACKETS.search(pos))
849 ann.secondaryStructure = Rna.getRNASecStrucState(pos).charAt(0);
850 ann.displayCharacter = "" + pos.charAt(0);
854 ann.secondaryStructure = ResidueProperties.getDssp3state(pos)
857 if (ann.secondaryStructure == pos.charAt(0))
859 ann.displayCharacter = ""; // null; // " ";
863 ann.displayCharacter = " " + ann.displayCharacter;
869 if (posterior && !ann.isWhitespace()
870 && !Comparison.isGap(pos.charAt(0)))
873 // symbol encodes values - 0..*==0..10
874 if (pos.charAt(0) == '*')
880 val = pos.charAt(0) - '0';
891 AlignmentAnnotation annot = null;
892 Enumeration<AlignmentAnnotation> e = annotation.elements();
893 while (e.hasMoreElements())
895 annot = e.nextElement();
896 if (annot.label.equals(type))
904 annot = new AlignmentAnnotation(type, type, els);
905 annotation.addElement(annot);
909 Annotation[] anns = new Annotation[annot.annotations.length
911 System.arraycopy(annot.annotations, 0, anns, 0,
912 annot.annotations.length);
913 System.arraycopy(els, 0, anns, annot.annotations.length, els.length);
914 annot.annotations = anns;
915 // System.out.println("else: ");
921 public String print(SequenceI[] s, boolean jvSuffix)
923 out = new StringBuffer();
924 out.append("# STOCKHOLM 1.0");
927 // find max length of id
931 Hashtable dataRef = null;
932 while ((in < s.length) && (s[in] != null))
934 String tmp = printId(s[in], jvSuffix);
935 max = Math.max(max, s[in].getLength());
937 if (tmp.length() > maxid)
939 maxid = tmp.length();
941 if (s[in].getDBRefs() != null)
943 for (int idb = 0; idb < s[in].getDBRefs().length; idb++)
947 dataRef = new Hashtable();
950 String datAs1 = s[in].getDBRefs()[idb].getSource().toString()
952 + s[in].getDBRefs()[idb].getAccessionId().toString();
953 dataRef.put(tmp, datAs1);
961 // output database type
962 if (al.getProperties() != null)
964 if (!al.getProperties().isEmpty())
966 Enumeration key = al.getProperties().keys();
967 Enumeration val = al.getProperties().elements();
968 while (key.hasMoreElements())
970 out.append("#=GF " + key.nextElement() + " " + val.nextElement());
976 // output database accessions
979 Enumeration en = dataRef.keys();
980 while (en.hasMoreElements())
982 Object idd = en.nextElement();
983 String type = (String) dataRef.remove(idd);
984 out.append(new Format("%-" + (maxid - 2) + "s")
985 .form("#=GS " + idd.toString() + " "));
986 if (type.contains("PFAM") || type.contains("RFAM"))
989 out.append(" AC " + type.substring(type.indexOf(";") + 1));
993 out.append(" DR " + type + " ");
999 // output annotations
1000 while (i < s.length && s[i] != null)
1002 AlignmentAnnotation[] alAnot = s[i].getAnnotation();
1006 for (int j = 0; j < alAnot.length; j++)
1009 String key = type2id(alAnot[j].label);
1010 boolean isrna = alAnot[j].isValidStruc();
1014 // hardwire to secondary structure if there is RNA secondary
1015 // structure on the annotation
1024 // out.append("#=GR ");
1025 out.append(new Format("%-" + maxid + "s").form(
1026 "#=GR " + printId(s[i], jvSuffix) + " " + key + " "));
1027 ann = alAnot[j].annotations;
1029 for (int k = 0; k < ann.length; k++)
1031 seq += outputCharacter(key, k, isrna, ann, s[i]);
1034 out.append(newline);
1038 out.append(new Format("%-" + maxid + "s")
1039 .form(printId(s[i], jvSuffix) + " "));
1040 out.append(s[i].getSequenceAsString());
1041 out.append(newline);
1045 // alignment annotation
1046 AlignmentAnnotation aa;
1047 if (al.getAlignmentAnnotation() != null)
1049 for (int ia = 0; ia < al.getAlignmentAnnotation().length; ia++)
1051 aa = al.getAlignmentAnnotation()[ia];
1052 if (aa.autoCalculated || !aa.visible || aa.sequenceRef != null)
1059 if (aa.label.equals("seq"))
1065 key = type2id(aa.label.toLowerCase());
1072 label = key + "_cons";
1079 label = label.replace(" ", "_");
1082 new Format("%-" + maxid + "s").form("#=GC " + label + " "));
1083 boolean isrna = aa.isValidStruc();
1084 for (int j = 0; j < aa.annotations.length; j++)
1086 seq += outputCharacter(key, j, isrna, aa.annotations, null);
1089 out.append(newline);
1094 out.append(newline);
1096 return out.toString();
1100 * add an annotation character to the output row
1109 private char outputCharacter(String key, int k, boolean isrna,
1110 Annotation[] ann, SequenceI sequenceI)
1113 Annotation annot = ann[k];
1114 String ch = (annot == null)
1115 ? ((sequenceI == null) ? "-"
1116 : Character.toString(sequenceI.getCharAt(k)))
1117 : annot.displayCharacter;
1118 if (key != null && key.equals("SS"))
1122 // sensible gap character
1127 // valid secondary structure AND no alternative label (e.g. ' B')
1128 if (annot.secondaryStructure > ' ' && ch.length() < 2)
1130 return annot.secondaryStructure;
1135 if (ch.length() == 0)
1139 else if (ch.length() == 1)
1143 else if (ch.length() > 1)
1150 public String print()
1152 out = new StringBuffer();
1153 out.append("# STOCKHOLM 1.0");
1154 out.append(newline);
1155 print(getSeqsAsArray(), false);
1158 out.append(newline);
1159 return out.toString();
1162 private static Hashtable typeIds = null;
1166 if (typeIds == null)
1168 typeIds = new Hashtable();
1169 typeIds.put("SS", "Secondary Structure");
1170 typeIds.put("SA", "Surface Accessibility");
1171 typeIds.put("TM", "transmembrane");
1172 typeIds.put("PP", "Posterior Probability");
1173 typeIds.put("LI", "ligand binding");
1174 typeIds.put("AS", "active site");
1175 typeIds.put("IN", "intron");
1176 typeIds.put("IR", "interacting residue");
1177 typeIds.put("AC", "accession");
1178 typeIds.put("OS", "organism");
1179 typeIds.put("CL", "class");
1180 typeIds.put("DE", "description");
1181 typeIds.put("DR", "reference");
1182 typeIds.put("LO", "look");
1183 typeIds.put("RF", "Reference Positions");
1188 protected static String id2type(String id)
1190 if (typeIds.containsKey(id))
1192 return (String) typeIds.get(id);
1195 "Warning : Unknown Stockholm annotation type code " + id);
1199 protected static String type2id(String type)
1202 Enumeration e = typeIds.keys();
1203 while (e.hasMoreElements())
1205 Object ll = e.nextElement();
1206 if (typeIds.get(ll).toString().equalsIgnoreCase(type))
1217 "Warning : Unknown Stockholm annotation type: " + type);
1222 * make a friendly ID string.
1225 * @return truncated dataName to after last '/'
1227 private String safeName(String dataName)
1230 while ((b = dataName.indexOf("/")) > -1 && b < dataName.length())
1232 dataName = dataName.substring(b + 1).trim();
1235 int e = (dataName.length() - dataName.indexOf(".")) + 1;
1236 dataName = dataName.substring(1, e).trim();