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.
21 package jalview.datamodel;
23 import jalview.analysis.AlignSeq;
24 import jalview.api.DBRefEntryI;
25 import jalview.util.Comparison;
26 import jalview.util.DBRefUtils;
27 import jalview.util.MapList;
28 import jalview.util.StringUtils;
30 import java.util.ArrayList;
31 import java.util.Arrays;
32 import java.util.Collections;
33 import java.util.Enumeration;
34 import java.util.List;
35 import java.util.Vector;
37 import fr.orsay.lri.varna.models.rna.RNA;
41 * Implements the SequenceI interface for a char[] based sequence object.
46 public class Sequence extends ASequence implements SequenceI
48 SequenceI datasetSequence;
52 private char[] sequence;
60 Vector<PDBEntry> pdbIds;
69 * This annotation is displayed below the alignment but the positions are tied
70 * to the residues of this sequence
72 * TODO: change to List<>
74 Vector<AlignmentAnnotation> annotation;
77 * The index of the sequence in a MSA
81 /** array of sequence features - may not be null for a valid sequence object */
82 public SequenceFeature[] sequenceFeatures;
85 * Creates a new Sequence object.
90 * string to form a possibly gapped sequence out of
92 * first position of non-gap residue in the sequence
94 * last position of ungapped residues (nearly always only used for
97 public Sequence(String name, String sequence, int start, int end)
99 initSeqAndName(name, sequence.toCharArray(), start, end);
102 public Sequence(String name, char[] sequence, int start, int end)
104 initSeqAndName(name, sequence, start, end);
108 * Stage 1 constructor - assign name, sequence, and set start and end fields.
109 * start and end are updated values from name2 if it ends with /start-end
116 protected void initSeqAndName(String name2, char[] sequence2, int start2,
120 this.sequence = sequence2;
127 com.stevesoft.pat.Regex limitrx = new com.stevesoft.pat.Regex(
128 "[/][0-9]{1,}[-][0-9]{1,}$");
130 com.stevesoft.pat.Regex endrx = new com.stevesoft.pat.Regex("[0-9]{1,}$");
137 .println("POSSIBLE IMPLEMENTATION ERROR: null sequence name passed to constructor.");
140 // Does sequence have the /start-end signature?
141 if (limitrx.search(name))
143 name = limitrx.left();
144 endrx.search(limitrx.stringMatched());
145 setStart(Integer.parseInt(limitrx.stringMatched().substring(1,
146 endrx.matchedFrom() - 1)));
147 setEnd(Integer.parseInt(endrx.stringMatched()));
151 void checkValidRange()
154 // http://issues.jalview.org/browse/JAL-774?focusedCommentId=11239&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-11239
157 for (int j = 0; j < sequence.length; j++)
159 if (!jalview.util.Comparison.isGap(sequence[j]))
178 * Creates a new Sequence object.
185 public Sequence(String name, String sequence)
187 this(name, sequence, 1, -1);
191 * Creates a new Sequence object with new AlignmentAnnotations but inherits
192 * any existing dataset sequence reference. If non exists, everything is
196 * if seq is a dataset sequence, behaves like a plain old copy
199 public Sequence(SequenceI seq)
201 this(seq, seq.getAnnotation());
205 * Create a new sequence object with new features, DBRefEntries, and PDBIds
206 * but inherits any existing dataset sequence reference, and duplicate of any
207 * annotation that is present in the given annotation array.
210 * the sequence to be copied
211 * @param alAnnotation
212 * an array of annotation including some associated with seq
214 public Sequence(SequenceI seq, AlignmentAnnotation[] alAnnotation)
216 initSeqFrom(seq, alAnnotation);
221 * does the heavy lifting when cloning a dataset sequence, or coping data from
222 * dataset to a new derived sequence.
225 * - source of attributes.
226 * @param alAnnotation
227 * - alignment annotation present on seq that should be copied onto
230 protected void initSeqFrom(SequenceI seq,
231 AlignmentAnnotation[] alAnnotation)
234 char[] oseq = seq.getSequence();
235 initSeqAndName(seq.getName(), Arrays.copyOf(oseq, oseq.length),
236 seq.getStart(), seq.getEnd());
238 description = seq.getDescription();
239 if (seq != datasetSequence)
241 setDatasetSequence(seq.getDatasetSequence());
243 if (datasetSequence == null && seq.getDBRefs() != null)
245 // only copy DBRefs and seqfeatures if we really are a dataset sequence
246 DBRefEntry[] dbr = seq.getDBRefs();
247 for (int i = 0; i < dbr.length; i++)
249 addDBRef(new DBRefEntry(dbr[i]));
251 if (seq.getSequenceFeatures() != null)
253 SequenceFeature[] sf = seq.getSequenceFeatures();
254 for (int i = 0; i < sf.length; i++)
256 addSequenceFeature(new SequenceFeature(sf[i]));
260 if (seq.getAnnotation() != null)
262 AlignmentAnnotation[] sqann = seq.getAnnotation();
263 for (int i = 0; i < sqann.length; i++)
265 if (sqann[i] == null)
269 boolean found = (alAnnotation == null);
272 for (int apos = 0; !found && apos < alAnnotation.length; apos++)
274 found = (alAnnotation[apos] == sqann[i]);
279 // only copy the given annotation
280 AlignmentAnnotation newann = new AlignmentAnnotation(sqann[i]);
281 addAlignmentAnnotation(newann);
285 if (seq.getAllPDBEntries() != null)
287 Vector<PDBEntry> ids = seq.getAllPDBEntries();
288 for (PDBEntry pdb : ids)
290 this.addPDBId(new PDBEntry(pdb));
296 public void setSequenceFeatures(SequenceFeature[] features)
298 if (datasetSequence == null)
300 sequenceFeatures = features;
304 if (datasetSequence.getSequenceFeatures() != features
305 && datasetSequence.getSequenceFeatures() != null
306 && datasetSequence.getSequenceFeatures().length > 0)
309 "Warning: JAL-2046 side effect ? Possible implementation error: overwriting dataset sequence features by setting sequence features on alignment")
312 datasetSequence.setSequenceFeatures(features);
317 public synchronized void addSequenceFeature(SequenceFeature sf)
319 if (sequenceFeatures == null && datasetSequence != null)
321 datasetSequence.addSequenceFeature(sf);
324 if (sequenceFeatures == null)
326 sequenceFeatures = new SequenceFeature[0];
329 for (int i = 0; i < sequenceFeatures.length; i++)
331 if (sequenceFeatures[i].equals(sf))
337 SequenceFeature[] temp = new SequenceFeature[sequenceFeatures.length + 1];
338 System.arraycopy(sequenceFeatures, 0, temp, 0, sequenceFeatures.length);
339 temp[sequenceFeatures.length] = sf;
341 sequenceFeatures = temp;
345 public void deleteFeature(SequenceFeature sf)
347 if (sequenceFeatures == null)
349 if (datasetSequence != null)
351 datasetSequence.deleteFeature(sf);
357 for (index = 0; index < sequenceFeatures.length; index++)
359 if (sequenceFeatures[index].equals(sf))
365 if (index == sequenceFeatures.length)
370 int sfLength = sequenceFeatures.length;
373 sequenceFeatures = null;
377 SequenceFeature[] temp = new SequenceFeature[sfLength - 1];
378 System.arraycopy(sequenceFeatures, 0, temp, 0, index);
380 if (index < sfLength)
382 System.arraycopy(sequenceFeatures, index + 1, temp, index,
383 sequenceFeatures.length - index - 1);
386 sequenceFeatures = temp;
391 * Returns the sequence features (if any), looking first on the sequence, then
392 * on its dataset sequence, and so on until a non-null value is found (or
393 * none). This supports retrieval of sequence features stored on the sequence
394 * (as in the applet) or on the dataset sequence (as in the Desktop version).
399 public SequenceFeature[] getSequenceFeatures()
401 SequenceFeature[] features = sequenceFeatures;
403 SequenceI seq = this;
404 int count = 0; // failsafe against loop in sequence.datasetsequence...
405 while (features == null && seq.getDatasetSequence() != null
408 seq = seq.getDatasetSequence();
409 features = ((Sequence) seq).sequenceFeatures;
415 public boolean addPDBId(PDBEntry entry)
419 pdbIds = new Vector<PDBEntry>();
424 for (PDBEntry pdbe : pdbIds)
426 if (pdbe.updateFrom(entry))
431 pdbIds.addElement(entry);
442 public void setPDBId(Vector<PDBEntry> id)
450 * @return DOCUMENT ME!
453 public Vector<PDBEntry> getAllPDBEntries()
455 return pdbIds == null ? new Vector<PDBEntry>() : pdbIds;
461 * @return DOCUMENT ME!
464 public String getDisplayId(boolean jvsuffix)
466 StringBuffer result = new StringBuffer(name);
469 result.append("/" + start + "-" + end);
472 return result.toString();
482 public void setName(String name)
491 * @return DOCUMENT ME!
494 public String getName()
506 public void setStart(int start)
514 * @return DOCUMENT ME!
517 public int getStart()
529 public void setEnd(int end)
537 * @return DOCUMENT ME!
548 * @return DOCUMENT ME!
551 public int getLength()
553 return this.sequence.length;
563 public void setSequence(String seq)
565 this.sequence = seq.toCharArray();
570 public String getSequenceAsString()
572 return new String(sequence);
576 public String getSequenceAsString(int start, int end)
578 return new String(getSequence(start, end));
582 public char[] getSequence()
590 * @see jalview.datamodel.SequenceI#getSequence(int, int)
593 public char[] getSequence(int start, int end)
599 // JBPNote - left to user to pad the result here (TODO:Decide on this
601 if (start >= sequence.length)
606 if (end >= sequence.length)
608 end = sequence.length;
611 char[] reply = new char[end - start];
612 System.arraycopy(sequence, start, reply, 0, end - start);
618 public SequenceI getSubSequence(int start, int end)
624 char[] seq = getSequence(start, end);
629 int nstart = findPosition(start);
630 int nend = findPosition(end) - 1;
631 // JBPNote - this is an incomplete copy.
632 SequenceI nseq = new Sequence(this.getName(), seq, nstart, nend);
633 nseq.setDescription(description);
634 if (datasetSequence != null)
636 nseq.setDatasetSequence(datasetSequence);
640 nseq.setDatasetSequence(this);
646 * Returns the character of the aligned sequence at the given position (base
647 * zero), or space if the position is not within the sequence's bounds
652 public char getCharAt(int i)
654 if (i >= 0 && i < sequence.length)
671 public void setDescription(String desc)
673 this.description = desc;
679 * @return DOCUMENT ME!
682 public String getDescription()
684 return this.description;
690 * @see jalview.datamodel.SequenceI#findIndex(int)
693 public int findIndex(int pos)
695 // returns the alignment position for a residue
698 // Rely on end being at least as long as the length of the sequence.
699 while ((i < sequence.length) && (j <= end) && (j <= pos))
701 if (!jalview.util.Comparison.isGap(sequence[i]))
709 if ((j == end) && (j < pos))
720 public int findPosition(int i)
724 int seqlen = sequence.length;
725 while ((j < i) && (j < seqlen))
727 if (!jalview.util.Comparison.isGap(sequence[j]))
739 * Returns an int array where indices correspond to each residue in the
740 * sequence and the element value gives its position in the alignment
742 * @return int[SequenceI.getEnd()-SequenceI.getStart()+1] or null if no
743 * residues in SequenceI object
746 public int[] gapMap()
748 String seq = jalview.analysis.AlignSeq.extractGaps(
749 jalview.util.Comparison.GapChars, new String(sequence));
750 int[] map = new int[seq.length()];
754 while (j < sequence.length)
756 if (!jalview.util.Comparison.isGap(sequence[j]))
768 public int[] findPositionMap()
770 int map[] = new int[sequence.length];
773 int seqlen = sequence.length;
777 if (!jalview.util.Comparison.isGap(sequence[j]))
788 public List<int[]> getInsertions()
790 ArrayList<int[]> map = new ArrayList<int[]>();
791 int lastj = -1, j = 0;
793 int seqlen = sequence.length;
796 if (jalview.util.Comparison.isGap(sequence[j]))
807 map.add(new int[] { lastj, j - 1 });
815 map.add(new int[] { lastj, j - 1 });
822 public void deleteChars(int i, int j)
824 int newstart = start, newend = end;
825 if (i >= sequence.length || i < 0)
830 char[] tmp = StringUtils.deleteChars(sequence, i, j);
831 boolean createNewDs = false;
832 // TODO: take a (second look) at the dataset creation validation method for
833 // the very large sequence case
834 int eindex = -1, sindex = -1;
835 boolean ecalc = false, scalc = false;
836 for (int s = i; s < j; s++)
838 if (jalview.schemes.ResidueProperties.aaIndex[sequence[s]] != 23)
848 sindex = findIndex(start) - 1;
853 // delete characters including start of sequence
854 newstart = findPosition(j);
855 break; // don't need to search for any more residue characters.
859 // delete characters after start.
862 eindex = findIndex(end) - 1;
867 // delete characters at end of sequence
868 newend = findPosition(i - 1);
869 break; // don't need to search for any more residue characters.
874 newend--; // decrease end position by one for the deleted residue
875 // and search further
881 // deletion occured in the middle of the sequence
882 if (createNewDs && this.datasetSequence != null)
884 // construct a new sequence
885 Sequence ds = new Sequence(datasetSequence);
886 // TODO: remove any non-inheritable properties ?
887 // TODO: create a sequence mapping (since there is a relation here ?)
888 ds.deleteChars(i, j);
889 datasetSequence = ds;
897 public void insertCharAt(int i, int length, char c)
899 char[] tmp = new char[sequence.length + length];
901 if (i >= sequence.length)
903 System.arraycopy(sequence, 0, tmp, 0, sequence.length);
908 System.arraycopy(sequence, 0, tmp, 0, i);
918 if (i < sequence.length)
920 System.arraycopy(sequence, i, tmp, index, sequence.length - i);
927 public void insertCharAt(int i, char c)
929 insertCharAt(i, 1, c);
933 public String getVamsasId()
939 public void setVamsasId(String id)
945 public void setDBRefs(DBRefEntry[] dbref)
947 if (dbrefs == null && datasetSequence != null
948 && this != datasetSequence)
950 datasetSequence.setDBRefs(dbref);
956 DBRefUtils.ensurePrimaries(this);
961 public DBRefEntry[] getDBRefs()
963 if (dbrefs == null && datasetSequence != null
964 && this != datasetSequence)
966 return datasetSequence.getDBRefs();
972 public void addDBRef(DBRefEntry entry)
974 if (datasetSequence != null)
976 datasetSequence.addDBRef(entry);
982 dbrefs = new DBRefEntry[0];
985 for (DBRefEntryI dbr : dbrefs)
987 if (dbr.updateFrom(entry))
990 * found a dbref that either matched, or could be
991 * updated from, the new entry - no need to add it
998 * extend the array to make room for one more
1000 // TODO use an ArrayList instead
1001 int j = dbrefs.length;
1002 DBRefEntry[] temp = new DBRefEntry[j + 1];
1003 System.arraycopy(dbrefs, 0, temp, 0, j);
1004 temp[temp.length - 1] = entry;
1008 DBRefUtils.ensurePrimaries(this);
1012 public void setDatasetSequence(SequenceI seq)
1016 throw new IllegalArgumentException(
1017 "Implementation Error: self reference passed to SequenceI.setDatasetSequence");
1019 if (seq != null && seq.getDatasetSequence() != null)
1021 throw new IllegalArgumentException(
1022 "Implementation error: cascading dataset sequences are not allowed.");
1024 datasetSequence = seq;
1028 public SequenceI getDatasetSequence()
1030 return datasetSequence;
1034 public AlignmentAnnotation[] getAnnotation()
1036 return annotation == null ? null : annotation
1037 .toArray(new AlignmentAnnotation[annotation.size()]);
1041 public boolean hasAnnotation(AlignmentAnnotation ann)
1043 return annotation == null ? false : annotation.contains(ann);
1047 public void addAlignmentAnnotation(AlignmentAnnotation annotation)
1049 if (this.annotation == null)
1051 this.annotation = new Vector<AlignmentAnnotation>();
1053 if (!this.annotation.contains(annotation))
1055 this.annotation.addElement(annotation);
1057 annotation.setSequenceRef(this);
1061 public void removeAlignmentAnnotation(AlignmentAnnotation annotation)
1063 if (this.annotation != null)
1065 this.annotation.removeElement(annotation);
1066 if (this.annotation.size() == 0)
1068 this.annotation = null;
1074 * test if this is a valid candidate for another sequence's dataset sequence.
1077 private boolean isValidDatasetSequence()
1079 if (datasetSequence != null)
1083 for (int i = 0; i < sequence.length; i++)
1085 if (jalview.util.Comparison.isGap(sequence[i]))
1094 public SequenceI deriveSequence()
1096 Sequence seq = null;
1097 if (datasetSequence == null)
1099 if (isValidDatasetSequence())
1101 // Use this as dataset sequence
1102 seq = new Sequence(getName(), "", 1, -1);
1103 seq.setDatasetSequence(this);
1104 seq.initSeqFrom(this, getAnnotation());
1109 // Create a new, valid dataset sequence
1110 createDatasetSequence();
1113 return new Sequence(this);
1116 private boolean _isNa;
1118 private long _seqhash = 0;
1121 * Answers false if the sequence is more than 85% nucleotide (ACGTU), else
1125 public boolean isProtein()
1127 if (datasetSequence != null)
1129 return datasetSequence.isProtein();
1131 if (_seqhash != sequence.hashCode())
1133 _seqhash = sequence.hashCode();
1134 _isNa = Comparison.isNucleotide(this);
1142 * @see jalview.datamodel.SequenceI#createDatasetSequence()
1145 public SequenceI createDatasetSequence()
1147 if (datasetSequence == null)
1149 Sequence dsseq = new Sequence(getName(), AlignSeq.extractGaps(
1150 jalview.util.Comparison.GapChars, getSequenceAsString()),
1151 getStart(), getEnd());
1153 datasetSequence = dsseq;
1155 dsseq.setDescription(description);
1156 // move features and database references onto dataset sequence
1157 dsseq.sequenceFeatures = sequenceFeatures;
1158 sequenceFeatures = null;
1159 dsseq.dbrefs = dbrefs;
1161 // TODO: search and replace any references to this sequence with
1162 // references to the dataset sequence in Mappings on dbref
1163 dsseq.pdbIds = pdbIds;
1165 datasetSequence.updatePDBIds();
1166 if (annotation != null)
1168 // annotation is cloned rather than moved, to preserve what's currently
1170 for (AlignmentAnnotation aa : annotation)
1172 AlignmentAnnotation _aa = new AlignmentAnnotation(aa);
1173 _aa.sequenceRef = datasetSequence;
1174 _aa.adjustForAlignment(); // uses annotation's own record of
1175 // sequence-column mapping
1176 datasetSequence.addAlignmentAnnotation(_aa);
1180 return datasetSequence;
1187 * jalview.datamodel.SequenceI#setAlignmentAnnotation(AlignmmentAnnotation[]
1191 public void setAlignmentAnnotation(AlignmentAnnotation[] annotations)
1193 if (annotation != null)
1195 annotation.removeAllElements();
1197 if (annotations != null)
1199 for (int i = 0; i < annotations.length; i++)
1201 if (annotations[i] != null)
1203 addAlignmentAnnotation(annotations[i]);
1210 public AlignmentAnnotation[] getAnnotation(String label)
1212 if (annotation == null || annotation.size() == 0)
1217 Vector subset = new Vector();
1218 Enumeration e = annotation.elements();
1219 while (e.hasMoreElements())
1221 AlignmentAnnotation ann = (AlignmentAnnotation) e.nextElement();
1222 if (ann.label != null && ann.label.equals(label))
1224 subset.addElement(ann);
1227 if (subset.size() == 0)
1231 AlignmentAnnotation[] anns = new AlignmentAnnotation[subset.size()];
1233 e = subset.elements();
1234 while (e.hasMoreElements())
1236 anns[i++] = (AlignmentAnnotation) e.nextElement();
1238 subset.removeAllElements();
1243 public boolean updatePDBIds()
1245 if (datasetSequence != null)
1247 // TODO: could merge DBRefs
1248 return datasetSequence.updatePDBIds();
1250 if (dbrefs == null || dbrefs.length == 0)
1254 boolean added = false;
1255 for (DBRefEntry dbr : dbrefs)
1257 if (DBRefSource.PDB.equals(dbr.getSource()))
1260 * 'Add' any PDB dbrefs as a PDBEntry - add is only performed if the
1261 * PDB id is not already present in a 'matching' PDBEntry
1262 * Constructor parses out a chain code if appended to the accession id
1263 * (a fudge used to 'store' the chain code in the DBRef)
1265 PDBEntry pdbe = new PDBEntry(dbr);
1266 added |= addPDBId(pdbe);
1273 public void transferAnnotation(SequenceI entry, Mapping mp)
1275 if (datasetSequence != null)
1277 datasetSequence.transferAnnotation(entry, mp);
1280 if (entry.getDatasetSequence() != null)
1282 transferAnnotation(entry.getDatasetSequence(), mp);
1285 // transfer any new features from entry onto sequence
1286 if (entry.getSequenceFeatures() != null)
1289 SequenceFeature[] sfs = entry.getSequenceFeatures();
1290 for (int si = 0; si < sfs.length; si++)
1292 SequenceFeature sf[] = (mp != null) ? mp.locateFeature(sfs[si])
1293 : new SequenceFeature[] { new SequenceFeature(sfs[si]) };
1294 if (sf != null && sf.length > 0)
1296 for (int sfi = 0; sfi < sf.length; sfi++)
1298 addSequenceFeature(sf[sfi]);
1304 // transfer PDB entries
1305 if (entry.getAllPDBEntries() != null)
1307 Enumeration e = entry.getAllPDBEntries().elements();
1308 while (e.hasMoreElements())
1310 PDBEntry pdb = (PDBEntry) e.nextElement();
1314 // transfer database references
1315 DBRefEntry[] entryRefs = entry.getDBRefs();
1316 if (entryRefs != null)
1318 for (int r = 0; r < entryRefs.length; r++)
1320 DBRefEntry newref = new DBRefEntry(entryRefs[r]);
1321 if (newref.getMap() != null && mp != null)
1323 // remap ref using our local mapping
1325 // we also assume all version string setting is done by dbSourceProxy
1327 * if (!newref.getSource().equalsIgnoreCase(dbSource)) {
1328 * newref.setSource(dbSource); }
1336 * @return The index (zero-based) on this sequence in the MSA. It returns
1337 * {@code -1} if this information is not available.
1340 public int getIndex()
1346 * Defines the position of this sequence in the MSA. Use the value {@code -1}
1347 * if this information is undefined.
1350 * position for this sequence. This value is zero-based (zero for
1351 * this first sequence)
1354 public void setIndex(int value)
1360 public void setRNA(RNA r)
1372 public List<AlignmentAnnotation> getAlignmentAnnotations(String calcId,
1375 List<AlignmentAnnotation> result = new ArrayList<AlignmentAnnotation>();
1376 if (this.annotation != null)
1378 for (AlignmentAnnotation ann : annotation)
1380 if (ann.calcId != null && ann.calcId.equals(calcId)
1381 && ann.label != null && ann.label.equals(label))
1391 public String toString()
1393 return getDisplayId(false);
1397 public PDBEntry getPDBEntry(String pdbIdStr)
1399 if (getDatasetSequence() != null)
1401 return getDatasetSequence().getPDBEntry(pdbIdStr);
1407 List<PDBEntry> entries = getAllPDBEntries();
1408 for (PDBEntry entry : entries)
1410 if (entry.getId().equalsIgnoreCase(pdbIdStr))
1419 public List<DBRefEntry> getPrimaryDBRefs()
1421 if (datasetSequence != null)
1423 return datasetSequence.getPrimaryDBRefs();
1425 if (dbrefs == null || dbrefs.length == 0)
1427 return Collections.emptyList();
1429 synchronized (dbrefs)
1431 List<DBRefEntry> primaries = new ArrayList<DBRefEntry>();
1432 DBRefEntry[] tmp = new DBRefEntry[1];
1433 for (DBRefEntry ref : dbrefs)
1435 if (!ref.isPrimaryCandidate())
1441 MapList mp = ref.getMap().getMap();
1442 if (mp.getFromLowest() > start || mp.getFromHighest() < end)
1444 // map only involves a subsequence, so cannot be primary
1448 // whilst it looks like it is a primary ref, we also sanity check type
1449 if (DBRefUtils.getCanonicalName(DBRefSource.PDB).equals(
1450 DBRefUtils.getCanonicalName(ref.getSource())))
1452 // PDB dbrefs imply there should be a PDBEntry associated
1453 // TODO: tighten PDB dbrefs
1454 // formally imply Jalview has actually downloaded and
1455 // parsed the pdb file. That means there should be a cached file
1456 // handle on the PDBEntry, and a real mapping between sequence and
1457 // extracted sequence from PDB file
1458 PDBEntry pdbentry = getPDBEntry(ref.getAccessionId());
1459 if (pdbentry != null && pdbentry.getFile() != null)
1465 // check standard protein or dna sources
1467 DBRefEntry[] res = DBRefUtils.selectDbRefs(!isProtein(), tmp);
1468 if (res != null && res[0] == tmp[0])