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 java.awt.Color;
24 import java.io.IOException;
25 import java.util.ArrayList;
26 import java.util.Arrays;
27 import java.util.Collections;
28 import java.util.HashMap;
29 import java.util.LinkedHashMap;
30 import java.util.List;
31 import java.util.Locale;
33 import java.util.Map.Entry;
34 import java.util.TreeMap;
36 import jalview.analysis.AlignmentUtils;
37 import jalview.analysis.SequenceIdMatcher;
38 import jalview.api.AlignViewportI;
39 import jalview.api.FeatureColourI;
40 import jalview.api.FeatureRenderer;
41 import jalview.api.FeaturesSourceI;
42 import jalview.datamodel.AlignedCodonFrame;
43 import jalview.datamodel.Alignment;
44 import jalview.datamodel.AlignmentI;
45 import jalview.datamodel.MappedFeatures;
46 import jalview.datamodel.SequenceDummy;
47 import jalview.datamodel.SequenceFeature;
48 import jalview.datamodel.SequenceI;
49 import jalview.datamodel.features.FeatureMatcherSet;
50 import jalview.datamodel.features.FeatureMatcherSetI;
51 import jalview.gui.Desktop;
52 import jalview.io.gff.GffHelperFactory;
53 import jalview.io.gff.GffHelperI;
54 import jalview.schemes.FeatureColour;
55 import jalview.util.ColorUtils;
56 import jalview.util.MapList;
57 import jalview.util.ParseHtmlBodyAndLinks;
58 import jalview.util.StringUtils;
61 * Parses and writes features files, which may be in Jalview, GFF2 or GFF3
62 * format. These are tab-delimited formats but with differences in the use of
65 * A Jalview feature file may define feature colours and then declare that the
66 * remainder of the file is in GFF format with the line 'GFF'.
68 * GFF3 files may include alignment mappings for features, which Jalview will
69 * attempt to model, and may include sequence data following a ##FASTA line.
76 public class FeaturesFile extends AlignFile implements FeaturesSourceI
78 private static final String EQUALS = "=";
80 private static final String TAB_REGEX = "\\t";
82 private static final String STARTGROUP = "STARTGROUP";
84 private static final String ENDGROUP = "ENDGROUP";
86 private static final String STARTFILTERS = "STARTFILTERS";
88 private static final String ENDFILTERS = "ENDFILTERS";
90 private static final String ID_NOT_SPECIFIED = "ID_NOT_SPECIFIED";
92 protected static final String GFF_VERSION = "##gff-version";
94 private AlignmentI lastmatchedAl = null;
96 private SequenceIdMatcher matcher = null;
98 protected AlignmentI dataset;
100 protected int gffVersion;
103 * Creates a new FeaturesFile object.
105 public FeaturesFile()
110 * Constructor which does not parse the file immediately
114 * @throws IOException
116 public FeaturesFile(String file, DataSourceType paste)
119 super(false, file, paste);
124 * @throws IOException
126 public FeaturesFile(FileParse source) throws IOException
132 * Constructor that optionally parses the file immediately
134 * @param parseImmediately
137 * @throws IOException
139 public FeaturesFile(boolean parseImmediately, String file,
140 DataSourceType type) throws IOException
142 super(parseImmediately, file, type);
146 * Parse GFF or sequence features file using case-independent matching,
150 * - alignment/dataset containing sequences that are to be annotated
152 * - hashtable to store feature colour definitions
154 * - process html strings into plain text
155 * @return true if features were added
157 public boolean parse(AlignmentI align,
158 Map<String, FeatureColourI> colours, boolean removeHTML)
160 return parse(align, colours, removeHTML, false);
164 * Extends the default addProperties by also adding peptide-to-cDNA mappings
165 * (if any) derived while parsing a GFF file
168 public void addProperties(AlignmentI al)
170 super.addProperties(al);
171 if (dataset != null && dataset.getCodonFrames() != null)
173 AlignmentI ds = (al.getDataset() == null) ? al : al.getDataset();
174 for (AlignedCodonFrame codons : dataset.getCodonFrames())
176 ds.addCodonFrame(codons);
182 * Parse GFF or Jalview format sequence features file
185 * - alignment/dataset containing sequences that are to be annotated
187 * - map to store feature colour definitions
189 * - process html strings into plain text
190 * @param relaxedIdmatching
191 * - when true, ID matches to compound sequence IDs are allowed
192 * @return true if features were added
194 public boolean parse(AlignmentI align,
195 Map<String, FeatureColourI> colours, boolean removeHTML,
196 boolean relaxedIdmatching)
198 return parse(align, colours, null, removeHTML, relaxedIdmatching);
202 * Parse GFF or Jalview format sequence features file
205 * - alignment/dataset containing sequences that are to be annotated
207 * - map to store feature colour definitions
209 * - map to store feature filter definitions
211 * - process html strings into plain text
212 * @param relaxedIdmatching
213 * - when true, ID matches to compound sequence IDs are allowed
214 * @return true if features were added
216 public boolean parse(AlignmentI align,
217 Map<String, FeatureColourI> colours,
218 Map<String, FeatureMatcherSetI> filters, boolean removeHTML,
219 boolean relaxedIdmatching)
221 Map<String, String> gffProps = new HashMap<>();
223 * keep track of any sequences we try to create from the data
225 List<SequenceI> newseqs = new ArrayList<>();
231 String featureGroup = null;
233 while ((line = nextLine()) != null)
235 // skip comments/process pragmas
236 if (line.length() == 0 || line.startsWith("#"))
238 if (line.toLowerCase().startsWith("##"))
240 processGffPragma(line, gffProps, align, newseqs);
245 gffColumns = line.split(TAB_REGEX);
246 if (gffColumns.length == 1)
248 if (line.trim().equalsIgnoreCase("GFF"))
251 * Jalview features file with appended GFF
252 * assume GFF2 (though it may declare ##gff-version 3)
259 if (gffColumns.length > 0 && gffColumns.length < 4)
262 * if 2 or 3 tokens, we anticipate either 'startgroup', 'endgroup' or
263 * a feature type colour specification
265 String ft = gffColumns[0];
266 if (ft.equalsIgnoreCase(STARTFILTERS))
268 parseFilters(filters);
271 if (ft.equalsIgnoreCase(STARTGROUP))
273 featureGroup = gffColumns[1];
275 else if (ft.equalsIgnoreCase(ENDGROUP))
277 // We should check whether this is the current group,
278 // but at present there's no way of showing more than 1 group
283 String colscheme = gffColumns[1];
284 FeatureColourI colour = FeatureColour
285 .parseJalviewFeatureColour(colscheme);
288 colours.put(ft, colour);
295 * if not a comment, GFF pragma, startgroup, endgroup or feature
296 * colour specification, that just leaves a feature details line
297 * in either Jalview or GFF format
301 parseJalviewFeature(line, gffColumns, align, colours, removeHTML,
302 relaxedIdmatching, featureGroup);
306 parseGff(gffColumns, align, relaxedIdmatching, newseqs);
310 } catch (Exception ex)
312 // should report somewhere useful for UI if necessary
313 warningMessage = ((warningMessage == null) ? "" : warningMessage)
314 + "Parsing error at\n" + line;
315 System.out.println("Error parsing feature file: " + ex + "\n" + line);
316 ex.printStackTrace(System.err);
322 * experimental - add any dummy sequences with features to the alignment
323 * - we need them for Ensembl feature extraction - though maybe not otherwise
325 for (SequenceI newseq : newseqs)
327 if (newseq.getFeatures().hasFeatures())
329 align.addSequence(newseq);
336 * Reads input lines from STARTFILTERS to ENDFILTERS and adds a feature type
337 * filter to the map for each line parsed. After exit from this method,
338 * nextLine() should return the line after ENDFILTERS (or we are already at
339 * end of file if ENDFILTERS was missing).
342 * @throws IOException
344 protected void parseFilters(Map<String, FeatureMatcherSetI> filters)
348 while ((line = nextLine()) != null)
350 // TODO: use .trim().equalsIgnoreCase here instead ?
351 if (line.toUpperCase(Locale.ROOT).startsWith(ENDFILTERS))
355 String[] tokens = line.split(TAB_REGEX);
356 if (tokens.length != 2)
358 System.err.println(String.format("Invalid token count %d for %d",
359 tokens.length, line));
363 String featureType = tokens[0];
364 FeatureMatcherSetI fm = FeatureMatcherSet.fromString(tokens[1]);
365 if (fm != null && filters != null)
367 filters.put(featureType, fm);
374 * Try to parse a Jalview format feature specification and add it as a
375 * sequence feature to any matching sequences in the alignment. Returns true
376 * if successful (a feature was added), or false if not.
381 * @param featureColours
383 * @param relaxedIdmatching
384 * @param featureGroup
386 protected boolean parseJalviewFeature(String line, String[] gffColumns,
387 AlignmentI alignment, Map<String, FeatureColourI> featureColours,
388 boolean removeHTML, boolean relaxedIdMatching,
392 * tokens: description seqid seqIndex start end type [score]
394 if (gffColumns.length < 6)
396 System.err.println("Ignoring feature line '" + line
397 + "' with too few columns (" + gffColumns.length + ")");
400 String desc = gffColumns[0];
401 String seqId = gffColumns[1];
402 SequenceI seq = findSequence(seqId, alignment, null, relaxedIdMatching);
404 if (!ID_NOT_SPECIFIED.equals(seqId))
406 seq = findSequence(seqId, alignment, null, relaxedIdMatching);
412 String seqIndex = gffColumns[2];
415 int idx = Integer.parseInt(seqIndex);
416 seq = alignment.getSequenceAt(idx);
417 } catch (NumberFormatException ex)
419 System.err.println("Invalid sequence index: " + seqIndex);
425 System.out.println("Sequence not found: " + line);
429 int startPos = Integer.parseInt(gffColumns[3]);
430 int endPos = Integer.parseInt(gffColumns[4]);
432 String ft = gffColumns[5];
434 if (!featureColours.containsKey(ft))
437 * Perhaps an old style groups file with no colours -
438 * synthesize a colour from the feature type
440 Color colour = ColorUtils.createColourFromName(ft);
441 featureColours.put(ft, new FeatureColour(colour));
443 SequenceFeature sf = null;
444 if (gffColumns.length > 6)
446 float score = Float.NaN;
449 score = Float.valueOf(gffColumns[6]).floatValue();
450 } catch (NumberFormatException ex)
452 sf = new SequenceFeature(ft, desc, startPos, endPos, featureGroup);
454 sf = new SequenceFeature(ft, desc, startPos, endPos, score,
459 sf = new SequenceFeature(ft, desc, startPos, endPos, featureGroup);
462 parseDescriptionHTML(sf, removeHTML);
464 seq.addSequenceFeature(sf);
467 && (seq = alignment.findName(seq, seqId, false)) != null)
469 seq.addSequenceFeature(new SequenceFeature(sf));
475 * clear any temporary handles used to speed up ID matching
477 protected void resetMatcher()
479 lastmatchedAl = null;
484 * Returns a sequence matching the given id, as follows
486 * <li>strict matching is on exact sequence name</li>
487 * <li>relaxed matching allows matching on a token within the sequence name,
489 * <li>first tries to find a match in the alignment sequences</li>
490 * <li>else tries to find a match in the new sequences already generated while
491 * parsing the features file</li>
492 * <li>else creates a new placeholder sequence, adds it to the new sequences
493 * list, and returns it</li>
499 * @param relaxedIdMatching
503 protected SequenceI findSequence(String seqId, AlignmentI align,
504 List<SequenceI> newseqs, boolean relaxedIdMatching)
506 // TODO encapsulate in SequenceIdMatcher, share the matcher
507 // with the GffHelper (removing code duplication)
508 SequenceI match = null;
509 if (relaxedIdMatching)
511 if (lastmatchedAl != align)
513 lastmatchedAl = align;
514 matcher = new SequenceIdMatcher(align.getSequencesArray());
517 matcher.addAll(newseqs);
520 match = matcher.findIdMatch(seqId);
524 match = align.findName(seqId, true);
525 if (match == null && newseqs != null)
527 for (SequenceI m : newseqs)
529 if (seqId.equals(m.getName()))
537 if (match == null && newseqs != null)
539 match = new SequenceDummy(seqId);
540 if (relaxedIdMatching)
542 matcher.addAll(Arrays.asList(new SequenceI[] { match }));
544 // add dummy sequence to the newseqs list
550 public void parseDescriptionHTML(SequenceFeature sf, boolean removeHTML)
552 if (sf.getDescription() == null)
556 ParseHtmlBodyAndLinks parsed = new ParseHtmlBodyAndLinks(
557 sf.getDescription(), removeHTML, newline);
561 sf.setDescription(parsed.getNonHtmlContent());
564 for (String link : parsed.getLinks())
571 * Returns contents of a Jalview format features file, for visible features, as
572 * filtered by type and group. Features with a null group are displayed if their
573 * feature type is visible. Non-positional features may optionally be included
574 * (with no check on type or group).
578 * @param includeNonPositional
579 * if true, include non-positional features
580 * (regardless of group or type)
581 * @param includeComplement
582 * if true, include visible complementary
583 * (CDS/protein) positional features, with
584 * locations converted to local sequence
588 public String printJalviewFormat(SequenceI[] sequences,
589 FeatureRenderer fr, boolean includeNonPositional,
590 boolean includeComplement)
592 Map<String, FeatureColourI> visibleColours = fr
593 .getDisplayedFeatureCols();
594 Map<String, FeatureMatcherSetI> featureFilters = fr.getFeatureFilters();
597 * write out feature colours (if we know them)
599 // TODO: decide if feature links should also be written here ?
600 StringBuilder out = new StringBuilder(256);
601 if (visibleColours != null)
603 for (Entry<String, FeatureColourI> featureColour : visibleColours
606 FeatureColourI colour = featureColour.getValue();
607 out.append(colour.toJalviewFormat(featureColour.getKey())).append(
612 String[] types = visibleColours == null ? new String[0]
613 : visibleColours.keySet()
614 .toArray(new String[visibleColours.keySet().size()]);
617 * feature filters if any
619 outputFeatureFilters(out, visibleColours, featureFilters);
622 * output features within groups
624 int count = outputFeaturesByGroup(out, fr, types, sequences,
625 includeNonPositional);
627 if (includeComplement)
629 count += outputComplementFeatures(out, fr, sequences);
632 return count > 0 ? out.toString() : "No Features Visible";
636 * Outputs any visible complementary (CDS/peptide) positional features as
637 * Jalview format, within feature group. The coordinates of the linked features
638 * are converted to the corresponding positions of the local sequences.
645 private int outputComplementFeatures(StringBuilder out,
646 FeatureRenderer fr, SequenceI[] sequences)
648 AlignViewportI comp = fr.getViewport().getCodingComplement();
649 FeatureRenderer fr2 = Desktop.getAlignFrameFor(comp)
650 .getFeatureRenderer();
653 * bin features by feature group and sequence
655 Map<String, Map<String, List<SequenceFeature>>> map = new TreeMap<>(
656 String.CASE_INSENSITIVE_ORDER);
659 for (SequenceI seq : sequences)
662 * find complementary features
664 List<SequenceFeature> complementary = findComplementaryFeatures(seq,
666 String seqName = seq.getName();
668 for (SequenceFeature sf : complementary)
670 String group = sf.getFeatureGroup();
671 if (!map.containsKey(group))
673 map.put(group, new LinkedHashMap<>()); // preserves sequence order
675 Map<String, List<SequenceFeature>> groupFeatures = map.get(group);
676 if (!groupFeatures.containsKey(seqName))
678 groupFeatures.put(seqName, new ArrayList<>());
680 List<SequenceFeature> foundFeatures = groupFeatures.get(seqName);
681 foundFeatures.add(sf);
687 * output features by group
689 for (Entry<String, Map<String, List<SequenceFeature>>> groupFeatures : map.entrySet())
692 String group = groupFeatures.getKey();
693 if (!"".equals(group))
695 out.append(STARTGROUP).append(TAB).append(group).append(newline);
697 Map<String, List<SequenceFeature>> seqFeaturesMap = groupFeatures
699 for (Entry<String, List<SequenceFeature>> seqFeatures : seqFeaturesMap
702 String sequenceName = seqFeatures.getKey();
703 for (SequenceFeature sf : seqFeatures.getValue())
705 formatJalviewFeature(out, sequenceName, sf);
708 if (!"".equals(group))
710 out.append(ENDGROUP).append(TAB).append(group).append(newline);
718 * Answers a list of mapped features visible in the (CDS/protein) complement,
719 * with feature positions translated to local sequence coordinates
725 protected List<SequenceFeature> findComplementaryFeatures(SequenceI seq,
729 * avoid duplication of features (e.g. peptide feature
730 * at all 3 mapped codon positions)
732 List<SequenceFeature> found = new ArrayList<>();
733 List<SequenceFeature> complementary = new ArrayList<>();
735 for (int pos = seq.getStart(); pos <= seq.getEnd(); pos++)
737 MappedFeatures mf = fr2.findComplementFeaturesAtResidue(seq, pos);
741 for (SequenceFeature sf : mf.features)
744 * make a virtual feature with local coordinates
746 if (!found.contains(sf))
748 String group = sf.getFeatureGroup();
754 int begin = sf.getBegin();
755 int end = sf.getEnd();
756 int[] range = mf.getMappedPositions(begin, end);
757 SequenceFeature sf2 = new SequenceFeature(sf, range[0],
758 range[1], group, sf.getScore());
759 complementary.add(sf2);
765 return complementary;
769 * Outputs any feature filters defined for visible feature types, sandwiched by
770 * STARTFILTERS and ENDFILTERS lines
774 * @param featureFilters
776 void outputFeatureFilters(StringBuilder out,
777 Map<String, FeatureColourI> visible,
778 Map<String, FeatureMatcherSetI> featureFilters)
780 if (visible == null || featureFilters == null
781 || featureFilters.isEmpty())
786 boolean first = true;
787 for (String featureType : visible.keySet())
789 FeatureMatcherSetI filter = featureFilters.get(featureType);
795 out.append(newline).append(STARTFILTERS).append(newline);
797 out.append(featureType).append(TAB).append(filter.toStableString())
803 out.append(ENDFILTERS).append(newline);
809 * Appends output of visible sequence features within feature groups to the
810 * output buffer. Groups other than the null or empty group are sandwiched by
811 * STARTGROUP and ENDGROUP lines. Answers the number of features written.
815 * @param featureTypes
817 * @param includeNonPositional
820 private int outputFeaturesByGroup(StringBuilder out,
821 FeatureRenderer fr, String[] featureTypes,
822 SequenceI[] sequences, boolean includeNonPositional)
824 List<String> featureGroups = fr.getFeatureGroups();
827 * sort groups alphabetically, and ensure that features with a
828 * null or empty group are output after those in named groups
830 List<String> sortedGroups = new ArrayList<>(featureGroups);
831 sortedGroups.remove(null);
832 sortedGroups.remove("");
833 Collections.sort(sortedGroups);
834 sortedGroups.add(null);
835 sortedGroups.add("");
838 List<String> visibleGroups = fr.getDisplayedFeatureGroups();
841 * loop over all groups (may be visible or not);
842 * non-positional features are output even if group is not visible
844 for (String group : sortedGroups)
846 boolean firstInGroup = true;
847 boolean isNullGroup = group == null || "".equals(group);
849 for (int i = 0; i < sequences.length; i++)
851 String sequenceName = sequences[i].getName();
852 List<SequenceFeature> features = new ArrayList<>();
855 * get any non-positional features in this group, if wanted
856 * (for any feature type, whether visible or not)
858 if (includeNonPositional)
860 features.addAll(sequences[i].getFeatures()
861 .getFeaturesForGroup(false, group));
865 * add positional features for visible feature types, but
866 * (for named groups) only if feature group is visible
868 if (featureTypes.length > 0
869 && (isNullGroup || visibleGroups.contains(group)))
871 features.addAll(sequences[i].getFeatures().getFeaturesForGroup(
872 true, group, featureTypes));
875 for (SequenceFeature sf : features)
877 if (sf.isNonPositional() || fr.isVisible(sf))
885 out.append(STARTGROUP).append(TAB).append(group)
889 firstInGroup = false;
890 formatJalviewFeature(out, sequenceName, sf);
895 if (!isNullGroup && !firstInGroup)
897 out.append(ENDGROUP).append(TAB).append(group).append(newline);
904 * Formats one feature in Jalview format and appends to the string buffer
907 * @param sequenceName
908 * @param sequenceFeature
910 protected void formatJalviewFeature(
911 StringBuilder out, String sequenceName,
912 SequenceFeature sequenceFeature)
914 if (sequenceFeature.description == null
915 || sequenceFeature.description.equals(""))
917 out.append(sequenceFeature.type).append(TAB);
921 if (sequenceFeature.links != null
922 && sequenceFeature.getDescription().indexOf("<html>") == -1)
924 out.append("<html>");
927 out.append(sequenceFeature.description);
928 if (sequenceFeature.links != null)
930 for (int l = 0; l < sequenceFeature.links.size(); l++)
932 String label = sequenceFeature.links.elementAt(l);
933 String href = label.substring(label.indexOf("|") + 1);
934 label = label.substring(0, label.indexOf("|"));
936 if (sequenceFeature.description.indexOf(href) == -1)
938 out.append(" <a href=\"").append(href).append("\">")
939 .append(label).append("</a>");
943 if (sequenceFeature.getDescription().indexOf("</html>") == -1)
945 out.append("</html>");
951 out.append(sequenceName);
952 out.append("\t-1\t");
953 out.append(sequenceFeature.begin);
955 out.append(sequenceFeature.end);
957 out.append(sequenceFeature.type);
958 if (!Float.isNaN(sequenceFeature.score))
961 out.append(sequenceFeature.score);
967 * Parse method that is called when a GFF file is dragged to the desktop
972 AlignViewportI av = getViewport();
975 if (av.getAlignment() != null)
977 dataset = av.getAlignment().getDataset();
981 // working in the applet context ?
982 dataset = av.getAlignment();
987 dataset = new Alignment(new SequenceI[] {});
990 Map<String, FeatureColourI> featureColours = new HashMap<>();
991 boolean parseResult = parse(dataset, featureColours, false, true);
994 // pass error up somehow
998 // update viewport with the dataset data ?
1002 setSeqs(dataset.getSequencesArray());
1007 * Implementation of unused abstract method
1009 * @return error message
1012 public String print(SequenceI[] sqs, boolean jvsuffix)
1014 System.out.println("Use printGffFormat() or printJalviewFormat()");
1019 * Returns features output in GFF2 format
1022 * the sequences whose features are to be
1025 * a map whose keys are the type names of
1027 * @param visibleFeatureGroups
1028 * @param includeNonPositionalFeatures
1029 * @param includeComplement
1032 public String printGffFormat(SequenceI[] sequences,
1033 FeatureRenderer fr, boolean includeNonPositionalFeatures,
1034 boolean includeComplement)
1036 FeatureRenderer fr2 = null;
1037 if (includeComplement)
1039 AlignViewportI comp = fr.getViewport().getCodingComplement();
1040 fr2 = Desktop.getAlignFrameFor(comp).getFeatureRenderer();
1043 Map<String, FeatureColourI> visibleColours = fr.getDisplayedFeatureCols();
1045 StringBuilder out = new StringBuilder(256);
1047 out.append(String.format("%s %d\n", GFF_VERSION, gffVersion == 0 ? 2 : gffVersion));
1049 String[] types = visibleColours == null ? new String[0]
1050 : visibleColours.keySet()
1051 .toArray(new String[visibleColours.keySet().size()]);
1053 for (SequenceI seq : sequences)
1055 List<SequenceFeature> seqFeatures = new ArrayList<>();
1056 List<SequenceFeature> features = new ArrayList<>();
1057 if (includeNonPositionalFeatures)
1059 features.addAll(seq.getFeatures().getNonPositionalFeatures());
1061 if (visibleColours != null && !visibleColours.isEmpty())
1063 features.addAll(seq.getFeatures().getPositionalFeatures(types));
1065 for (SequenceFeature sf : features)
1067 if (sf.isNonPositional() || fr.isVisible(sf))
1070 * drop features hidden by group visibility, colour threshold,
1071 * or feature filter condition
1073 seqFeatures.add(sf);
1077 if (includeComplement)
1079 seqFeatures.addAll(findComplementaryFeatures(seq, fr2));
1083 * sort features here if wanted
1085 for (SequenceFeature sf : seqFeatures)
1087 formatGffFeature(out, seq, sf);
1088 out.append(newline);
1092 return out.toString();
1096 * Formats one feature as GFF and appends to the string buffer
1098 private void formatGffFeature(StringBuilder out, SequenceI seq,
1101 String source = sf.featureGroup;
1104 source = sf.getDescription();
1107 out.append(seq.getName());
1111 out.append(sf.type);
1113 out.append(sf.begin);
1117 out.append(sf.score);
1120 int strand = sf.getStrand();
1121 out.append(strand == 1 ? "+" : (strand == -1 ? "-" : "."));
1124 String phase = sf.getPhase();
1125 out.append(phase == null ? "." : phase);
1127 if (sf.otherDetails != null && !sf.otherDetails.isEmpty())
1129 Map<String, Object> map = sf.otherDetails;
1130 formatAttributes(out, map);
1135 * A helper method that outputs attributes stored in the map as
1136 * semicolon-delimited values e.g.
1139 * AC_Male=0;AF_NFE=0.00000e 00;Hom_FIN=0;GQ_MEDIAN=9
1142 * A map-valued attribute is formatted as a comma-delimited list within braces,
1146 * jvmap_CSQ={ALLELE_NUM=1,UNIPARC=UPI0002841053,Feature=ENST00000585561}
1149 * The {@code jvmap_} prefix designates a values map and is removed if the value
1150 * is parsed when read in. (The GFF3 specification allows 'semi-structured data'
1151 * to be represented provided the attribute name begins with a lower case
1156 * @see http://gmod.org/wiki/GFF3#GFF3_Format
1158 void formatAttributes(StringBuilder sb, Map<String, Object> map)
1161 boolean first = true;
1162 for (String key : map.keySet())
1164 if (SequenceFeature.STRAND.equals(key)
1165 || SequenceFeature.PHASE.equals(key))
1168 * values stashed in map but output to their own columns
1179 Object value = map.get(key);
1180 if (value instanceof Map<?, ?>)
1182 formatMapAttribute(sb, key, (Map<?, ?>) value);
1186 String formatted = StringUtils.urlEncode(value.toString(),
1187 GffHelperI.GFF_ENCODABLE);
1188 sb.append(key).append(EQUALS).append(formatted);
1194 * Formats the map entries as
1197 * key=key1=value1,key2=value2,...
1200 * and appends this to the string buffer
1206 private void formatMapAttribute(StringBuilder sb, String key,
1209 if (map == null || map.isEmpty())
1215 * AbstractMap.toString would be a shortcut here, but more reliable
1216 * to code the required format in case toString changes in future
1218 sb.append(key).append(EQUALS);
1219 boolean first = true;
1220 for (Entry<?, ?> entry : map.entrySet())
1227 sb.append(entry.getKey().toString()).append(EQUALS);
1228 String formatted = StringUtils.urlEncode(entry.getValue().toString(),
1229 GffHelperI.GFF_ENCODABLE);
1230 sb.append(formatted);
1235 * Returns a mapping given list of one or more Align descriptors (exonerate
1238 * @param alignedRegions
1239 * a list of "Align fromStart toStart fromCount"
1240 * @param mapIsFromCdna
1241 * if true, 'from' is dna, else 'from' is protein
1243 * either 1 (forward) or -1 (reverse)
1245 * @throws IOException
1247 protected MapList constructCodonMappingFromAlign(
1248 List<String> alignedRegions, boolean mapIsFromCdna, int strand)
1253 throw new IOException(
1254 "Invalid strand for a codon mapping (cannot be 0)");
1256 int regions = alignedRegions.size();
1257 // arrays to hold [start, end] for each aligned region
1258 int[] fromRanges = new int[regions * 2]; // from dna
1259 int[] toRanges = new int[regions * 2]; // to protein
1260 int fromRangesIndex = 0;
1261 int toRangesIndex = 0;
1263 for (String range : alignedRegions)
1266 * Align mapFromStart mapToStart mapFromCount
1267 * e.g. if mapIsFromCdna
1268 * Align 11270 143 120
1270 * 120 bases from pos 11270 align to pos 143 in peptide
1271 * if !mapIsFromCdna this would instead be
1272 * Align 143 11270 40
1274 String[] tokens = range.split(" ");
1275 if (tokens.length != 3)
1277 throw new IOException("Wrong number of fields for Align");
1284 fromStart = Integer.parseInt(tokens[0]);
1285 toStart = Integer.parseInt(tokens[1]);
1286 fromCount = Integer.parseInt(tokens[2]);
1287 } catch (NumberFormatException nfe)
1289 throw new IOException(
1290 "Invalid number in Align field: " + nfe.getMessage());
1294 * Jalview always models from dna to protein, so adjust values if the
1295 * GFF mapping is from protein to dna
1300 int temp = fromStart;
1301 fromStart = toStart;
1304 fromRanges[fromRangesIndex++] = fromStart;
1305 fromRanges[fromRangesIndex++] = fromStart + strand * (fromCount - 1);
1308 * If a codon has an intron gap, there will be contiguous 'toRanges';
1309 * this is handled for us by the MapList constructor.
1310 * (It is not clear that exonerate ever generates this case)
1312 toRanges[toRangesIndex++] = toStart;
1313 toRanges[toRangesIndex++] = toStart + (fromCount - 1) / 3;
1316 return new MapList(fromRanges, toRanges, 3, 1);
1320 * Parse a GFF format feature. This may include creating a 'dummy' sequence to
1321 * hold the feature, or for its mapped sequence, or both, to be resolved
1322 * either later in the GFF file (##FASTA section), or when the user loads
1323 * additional sequences.
1327 * @param relaxedIdMatching
1331 protected SequenceI parseGff(String[] gffColumns, AlignmentI alignment,
1332 boolean relaxedIdMatching, List<SequenceI> newseqs)
1335 * GFF: seqid source type start end score strand phase [attributes]
1337 if (gffColumns.length < 5)
1339 System.err.println("Ignoring GFF feature line with too few columns ("
1340 + gffColumns.length + ")");
1345 * locate referenced sequence in alignment _or_
1346 * as a forward or external reference (SequenceDummy)
1348 String seqId = gffColumns[0];
1349 SequenceI seq = findSequence(seqId, alignment, newseqs,
1352 SequenceFeature sf = null;
1353 GffHelperI helper = GffHelperFactory.getHelper(gffColumns);
1358 sf = helper.processGff(seq, gffColumns, alignment, newseqs,
1362 seq.addSequenceFeature(sf);
1363 while ((seq = alignment.findName(seq, seqId, true)) != null)
1365 seq.addSequenceFeature(new SequenceFeature(sf));
1368 } catch (IOException e)
1370 System.err.println("GFF parsing failed with: " + e.getMessage());
1379 * After encountering ##fasta in a GFF3 file, process the remainder of the
1380 * file as FAST sequence data. Any placeholder sequences created during
1381 * feature parsing are updated with the actual sequences.
1385 * @throws IOException
1387 protected void processAsFasta(AlignmentI align, List<SequenceI> newseqs)
1393 } catch (IOException q)
1396 FastaFile parser = new FastaFile(this);
1397 List<SequenceI> includedseqs = parser.getSeqs();
1399 SequenceIdMatcher smatcher = new SequenceIdMatcher(newseqs);
1402 * iterate over includedseqs, and replacing matching ones with newseqs
1403 * sequences. Generic iterator not used here because we modify
1404 * includedseqs as we go
1406 for (int p = 0, pSize = includedseqs.size(); p < pSize; p++)
1408 // search for any dummy seqs that this sequence can be used to update
1409 SequenceI includedSeq = includedseqs.get(p);
1410 SequenceI dummyseq = smatcher.findIdMatch(includedSeq);
1411 if (dummyseq != null && dummyseq instanceof SequenceDummy)
1413 // probably have the pattern wrong
1414 // idea is that a flyweight proxy for a sequence ID can be created for
1415 // 1. stable reference creation
1416 // 2. addition of annotation
1417 // 3. future replacement by a real sequence
1418 // current pattern is to create SequenceDummy objects - a convenience
1419 // constructor for a Sequence.
1420 // problem is that when promoted to a real sequence, all references
1421 // need to be updated somehow. We avoid that by keeping the same object.
1422 ((SequenceDummy) dummyseq).become(includedSeq);
1423 dummyseq.createDatasetSequence();
1426 * Update mappings so they are now to the dataset sequence
1428 for (AlignedCodonFrame mapping : align.getCodonFrames())
1430 mapping.updateToDataset(dummyseq);
1434 * replace parsed sequence with the realised forward reference
1436 includedseqs.set(p, dummyseq);
1439 * and remove from the newseqs list
1441 newseqs.remove(dummyseq);
1446 * finally add sequences to the dataset
1448 for (SequenceI seq : includedseqs)
1450 // experimental: mapping-based 'alignment' to query sequence
1451 AlignmentUtils.alignSequenceAs(seq, align,
1452 String.valueOf(align.getGapCharacter()), false, true);
1454 // rename sequences if GFF handler requested this
1455 // TODO a more elegant way e.g. gffHelper.postProcess(newseqs) ?
1456 List<SequenceFeature> sfs = seq.getFeatures().getPositionalFeatures();
1459 String newName = (String) sfs.get(0).getValue(
1460 GffHelperI.RENAME_TOKEN);
1461 if (newName != null)
1463 seq.setName(newName);
1466 align.addSequence(seq);
1471 * Process a ## directive
1477 * @throws IOException
1479 protected void processGffPragma(String line, Map<String, String> gffProps,
1480 AlignmentI align, List<SequenceI> newseqs) throws IOException
1483 if ("###".equals(line))
1485 // close off any open 'forward references'
1489 String[] tokens = line.substring(2).split(" ");
1490 String pragma = tokens[0];
1491 String value = tokens.length == 1 ? null : tokens[1];
1493 if ("gff-version".equalsIgnoreCase(pragma))
1499 // value may be e.g. "3.1.2"
1500 gffVersion = Integer.parseInt(value.split("\\.")[0]);
1501 } catch (NumberFormatException e)
1507 else if ("sequence-region".equalsIgnoreCase(pragma))
1509 // could capture <seqid start end> if wanted here
1511 else if ("feature-ontology".equalsIgnoreCase(pragma))
1513 // should resolve against the specified feature ontology URI
1515 else if ("attribute-ontology".equalsIgnoreCase(pragma))
1517 // URI of attribute ontology - not currently used in GFF3
1519 else if ("source-ontology".equalsIgnoreCase(pragma))
1521 // URI of source ontology - not currently used in GFF3
1523 else if ("species-build".equalsIgnoreCase(pragma))
1525 // save URI of specific NCBI taxon version of annotations
1526 gffProps.put("species-build", value);
1528 else if ("fasta".equalsIgnoreCase(pragma))
1530 // process the rest of the file as a fasta file and replace any dummy
1532 processAsFasta(align, newseqs);
1536 System.err.println("Ignoring unknown pragma: " + line);