X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2Fgff%2FGff3Helper.java;h=82e53132bbb15b4185850ec29eea293f3949942e;hb=refs%2Fheads%2Ffeatures%2FJAL-2040_JAL-2137_phyre2;hp=55a0f9a7aee5714e7d36fda691d7f613ef9d5286;hpb=92cccf420dbe7501fae76b9941fd701151bdf5ab;p=jalview.git diff --git a/src/jalview/io/gff/Gff3Helper.java b/src/jalview/io/gff/Gff3Helper.java index 55a0f9a..82e5313 100644 --- a/src/jalview/io/gff/Gff3Helper.java +++ b/src/jalview/io/gff/Gff3Helper.java @@ -1,3 +1,23 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.io.gff; import jalview.datamodel.AlignedCodonFrame; @@ -69,15 +89,16 @@ public class Gff3Helper extends GffHelperBase String atts = gff[ATTRIBUTES_COL]; Map> attributes = parseNameValuePairs(atts); - if (SequenceOntology.getInstance().isProteinMatch(soTerm)) + SequenceOntologyI so = SequenceOntologyFactory.getInstance(); + if (so.isA(soTerm, SequenceOntologyI.PROTEIN_MATCH)) { - sf = processProteinMatch(attributes, seq, gff, align, - newseqs, relaxedIdMatching); + sf = processProteinMatch(attributes, seq, gff, align, newseqs, + relaxedIdMatching); } - else if (SequenceOntology.getInstance().isNucleotideMatch(soTerm)) + else if (so.isA(soTerm, SequenceOntologyI.NUCLEOTIDE_MATCH)) { - sf = processNucleotideMatch(attributes, seq, gff, align, - newseqs, relaxedIdMatching); + sf = processNucleotideMatch(attributes, seq, gff, align, newseqs, + relaxedIdMatching); } else { @@ -91,7 +112,7 @@ public class Gff3Helper extends GffHelperBase */ sf = buildSequenceFeature(gff, null); } - + return sf; } @@ -118,8 +139,7 @@ public class Gff3Helper extends GffHelperBase protected SequenceFeature processNucleotideMatch( Map> attributes, SequenceI seq, String[] gffColumns, AlignmentI align, List newseqs, - boolean relaxedIdMatching) - throws IOException + boolean relaxedIdMatching) throws IOException { String strand = gffColumns[STRAND_COL]; @@ -165,8 +185,8 @@ public class Gff3Helper extends GffHelperBase * (new or existing) virtual sequence in the newseqs list */ String targetId = findTargetId(tokens[0], attributes); - SequenceI mappedSequence1 = findSequence(targetId, align, - newseqs, relaxedIdMatching); + SequenceI mappedSequence1 = findSequence(targetId, align, newseqs, + relaxedIdMatching); SequenceI mappedSequence = mappedSequence1; if (mappedSequence == null) { @@ -194,8 +214,7 @@ public class Gff3Helper extends GffHelperBase int fromStart = Integer.parseInt(gffColumns[START_COL]); int fromEnd = Integer.parseInt(gffColumns[END_COL]); MapList mapping = constructMappingFromAlign(fromStart, fromEnd, - toStart, toEnd, - MappingType.NucleotideToNucleotide); + toStart, toEnd, MappingType.NucleotideToNucleotide); if (mapping != null) { @@ -279,8 +298,8 @@ public class Gff3Helper extends GffHelperBase for (String target : targets) { - SequenceI mappedSequence1 = findSequence(findTargetId(target, set), align, - newseqs, relaxedIdMatching); + SequenceI mappedSequence1 = findSequence(findTargetId(target, set), + align, newseqs, relaxedIdMatching); SequenceI mappedSequence = mappedSequence1; if (mappedSequence == null) { @@ -371,18 +390,36 @@ public class Gff3Helper extends GffHelperBase desc = target.split(" ")[0]; } - if (SequenceOntology.getInstance().isSequenceVariant(sf.getType())) + SequenceOntologyI so = SequenceOntologyFactory.getInstance(); + String type = sf.getType(); + if (so.isA(type, SequenceOntologyI.SEQUENCE_VARIANT)) { /* - * Ensembl returns alleles and consequence_type (amongst other details) + * Ensembl returns dna variants as 'alleles' */ - String alleles = StringUtils.listToDelimitedString( - attributes.get("alleles"), ","); - String consequence = StringUtils.listToDelimitedString( - attributes.get("consequence_type"), ","); - desc = String.format("alleles %s; consequence %s", alleles, - consequence); + desc = StringUtils.listToDelimitedString(attributes.get("alleles"), + ","); } + + /* + * extract 'Name' for a transcript (to show gene name) + * or an exon (so 'colour by label' shows exon boundaries) + */ + if (SequenceOntologyI.NMD_TRANSCRIPT_VARIANT.equals(type) + || so.isA(type, SequenceOntologyI.TRANSCRIPT) + || so.isA(type, SequenceOntologyI.EXON)) + { + desc = StringUtils.listToDelimitedString(attributes.get("Name"), ","); + } + + /* + * if the above fails, try ID + */ + if (desc == null) + { + desc = (String) sf.getValue(ID); + } + return desc; } }