JAL-2154 use convenience method
[jalview.git] / src / jalview / analysis / CrossRef.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.analysis;
22
23 import jalview.datamodel.AlignedCodonFrame;
24 import jalview.datamodel.Alignment;
25 import jalview.datamodel.AlignmentI;
26 import jalview.datamodel.DBRefEntry;
27 import jalview.datamodel.Mapping;
28 import jalview.datamodel.Sequence;
29 import jalview.datamodel.SequenceFeature;
30 import jalview.datamodel.SequenceI;
31 import jalview.util.DBRefUtils;
32 import jalview.util.MapList;
33 import jalview.ws.SequenceFetcherFactory;
34 import jalview.ws.seqfetcher.ASequenceFetcher;
35
36 import java.util.ArrayList;
37 import java.util.Iterator;
38 import java.util.List;
39
40 /**
41  * Functions for cross-referencing sequence databases.
42  * 
43  * @author JimP
44  * 
45  */
46 public class CrossRef
47 {
48   /*
49    * the dataset of the alignment for which we are searching for 
50    * cross-references; in some cases we may resolve xrefs by 
51    * searching in the dataset
52    */
53   private AlignmentI dataset;
54
55   /*
56    * the sequences for which we are seeking cross-references
57    */
58   private SequenceI[] fromSeqs;
59
60   /**
61    * matcher built from dataset
62    */
63   SequenceIdMatcher matcher;
64
65   /**
66    * sequences found by cross-ref searches to fromSeqs
67    */
68   List<SequenceI> rseqs;
69
70   /**
71    * Constructor
72    * 
73    * @param seqs
74    *          the sequences for which we are seeking cross-references
75    * @param ds
76    *          the containing alignment dataset (may be searched to resolve
77    *          cross-references)
78    */
79   public CrossRef(SequenceI[] seqs, AlignmentI ds)
80   {
81     fromSeqs = seqs;
82     dataset = ds.getDataset() == null ? ds : ds.getDataset();
83   }
84
85   /**
86    * Returns a list of distinct database sources for which sequences have either
87    * <ul>
88    * <li>a (dna-to-protein or protein-to-dna) cross-reference</li>
89    * <li>an indirect cross-reference - a (dna-to-protein or protein-to-dna)
90    * reference from another sequence in the dataset which has a cross-reference
91    * to a direct DBRefEntry on the given sequence</li>
92    * </ul>
93    * 
94    * @param dna
95    *          - when true, cross-references *from* dna returned. When false,
96    *          cross-references *from* protein are returned
97    * @return
98    */
99   public List<String> findXrefSourcesForSequences(boolean dna)
100   {
101     List<String> sources = new ArrayList<String>();
102     for (SequenceI seq : fromSeqs)
103     {
104       if (seq != null)
105       {
106         findXrefSourcesForSequence(seq, dna, sources);
107       }
108     }
109     return sources;
110   }
111
112   /**
113    * Returns a list of distinct database sources for which a sequence has either
114    * <ul>
115    * <li>a (dna-to-protein or protein-to-dna) cross-reference</li>
116    * <li>an indirect cross-reference - a (dna-to-protein or protein-to-dna)
117    * reference from another sequence in the dataset which has a cross-reference
118    * to a direct DBRefEntry on the given sequence</li>
119    * </ul>
120    * 
121    * @param seq
122    *          the sequence whose dbrefs we are searching against
123    * @param fromDna
124    *          when true, context is DNA - so sources identifying protein
125    *          products will be returned.
126    * @param sources
127    *          a list of sources to add matches to
128    */
129   void findXrefSourcesForSequence(SequenceI seq, boolean fromDna,
130           List<String> sources)
131   {
132     /*
133      * first find seq's xrefs (dna-to-peptide or peptide-to-dna)
134      */
135     DBRefEntry[] rfs = DBRefUtils.selectDbRefs(!fromDna, seq.getDBRefs());
136     addXrefsToSources(rfs, sources);
137     if (dataset != null)
138     {
139       /*
140        * find sequence's direct (dna-to-dna, peptide-to-peptide) xrefs
141        */
142       DBRefEntry[] lrfs = DBRefUtils.selectDbRefs(fromDna, seq.getDBRefs());
143       List<SequenceI> foundSeqs = new ArrayList<SequenceI>();
144
145       /*
146        * find sequences in the alignment which xref one of these DBRefs
147        * i.e. is xref-ed to a common sequence identifier
148        */
149       searchDatasetXrefs(fromDna, seq, lrfs, foundSeqs, null);
150
151       /*
152        * add those sequences' (dna-to-peptide or peptide-to-dna) dbref sources
153        */
154       for (SequenceI rs : foundSeqs)
155       {
156         DBRefEntry[] xrs = DBRefUtils
157                 .selectDbRefs(!fromDna, rs.getDBRefs());
158         addXrefsToSources(xrs, sources);
159       }
160     }
161   }
162
163   /**
164    * Helper method that adds the source identifiers of some cross-references to
165    * a (non-redundant) list of database sources
166    * 
167    * @param xrefs
168    * @param sources
169    */
170   void addXrefsToSources(DBRefEntry[] xrefs, List<String> sources)
171   {
172     if (xrefs != null)
173     {
174       for (DBRefEntry ref : xrefs)
175       {
176         /*
177          * avoid duplication e.g. ENSEMBL and Ensembl
178          */
179         String source = DBRefUtils.getCanonicalName(ref.getSource());
180         if (!sources.contains(source))
181         {
182           sources.add(source);
183         }
184       }
185     }
186   }
187
188   /**
189    * Attempts to find cross-references from the sequences provided in the
190    * constructor to the given source database. Cross-references may be found
191    * <ul>
192    * <li>in dbrefs on the sequence which hold a mapping to a sequence
193    * <ul>
194    * <li>provided with a fetched sequence (e.g. ENA translation), or</li>
195    * <li>populated previously after getting cross-references</li>
196    * </ul>
197    * <li>as other sequences in the alignment which share a dbref identifier with
198    * the sequence</li>
199    * <li>by fetching from the remote database</li>
200    * </ul>
201    * The cross-referenced sequences, and mappings to them, are added to the
202    * alignment dataset.
203    * 
204    * @param source
205    * @return cross-referenced sequences (as dataset sequences)
206    */
207   public Alignment findXrefSequences(String source, boolean fromDna)
208   {
209
210     rseqs = new ArrayList<SequenceI>();
211     AlignedCodonFrame cf = new AlignedCodonFrame();
212     matcher = new SequenceIdMatcher(
213             dataset.getSequences());
214
215     for (SequenceI seq : fromSeqs)
216     {
217       SequenceI dss = seq;
218       while (dss.getDatasetSequence() != null)
219       {
220         dss = dss.getDatasetSequence();
221       }
222       boolean found = false;
223       DBRefEntry[] xrfs = DBRefUtils
224               .selectDbRefs(!fromDna, dss.getDBRefs());
225       if ((xrfs == null || xrfs.length == 0) && dataset != null)
226       {
227         /*
228          * found no suitable dbrefs on sequence - look for sequences in the
229          * alignment which share a dbref with this one
230          */
231         DBRefEntry[] lrfs = DBRefUtils.selectDbRefs(fromDna,
232                 seq.getDBRefs());
233
234         /*
235          * find sequences (except this one!), of complementary type,
236          *  which have a dbref to an accession id for this sequence,
237          *  and add them to the results
238          */
239         found = searchDatasetXrefs(fromDna, dss, lrfs, rseqs, cf);
240       }
241       if (xrfs == null && !found)
242       {
243         /*
244          * no dbref to source on this sequence or matched
245          * complementary sequence in the dataset 
246          */
247         continue;
248       }
249       List<DBRefEntry> sourceRefs = DBRefUtils.searchRefsForSource(xrfs,
250               source);
251       Iterator<DBRefEntry> refIterator = sourceRefs.iterator();
252       while (refIterator.hasNext())
253       {
254         DBRefEntry xref = refIterator.next();
255         found = false;
256         if (xref.hasMap())
257         {
258           SequenceI mappedTo = xref.getMap().getTo();
259           if (mappedTo != null)
260           {
261             /*
262              * dbref contains the sequence it maps to; add it to the
263              * results unless we have done so already (could happen if 
264              * fetching xrefs for sequences which have xrefs in common)
265              * for example: UNIPROT {P0CE19, P0CE20} -> EMBL {J03321, X06707}
266              */
267             found = true;
268             /*
269              * problem: matcher.findIdMatch() is lenient - returns a sequence
270              * with a dbref to the search arg e.g. ENST for ENSP - wrong
271              * but findInDataset() matches ENSP when looking for Uniprot...
272              */
273             SequenceI matchInDataset = findInDataset(xref);
274             /*matcher.findIdMatch(mappedTo);*/
275             if (matchInDataset != null)
276             {
277               if (!rseqs.contains(matchInDataset))
278               {
279                 rseqs.add(matchInDataset);
280               }
281               refIterator.remove();
282               continue;
283             }
284             SequenceI rsq = new Sequence(mappedTo);
285             rseqs.add(rsq);
286             if (xref.getMap().getMap().isTripletMap())
287             {
288               // get sense of map correct for adding to product alignment.
289               if (fromDna)
290               {
291                 // map is from dna seq to a protein product
292                 cf.addMap(dss, rsq, xref.getMap().getMap(), xref.getMap()
293                         .getMappedFromId());
294               }
295               else
296               {
297                 // map should be from protein seq to its coding dna
298                 cf.addMap(rsq, dss, xref.getMap().getMap().getInverse(),
299                         xref.getMap().getMappedFromId());
300               }
301             }
302           }
303         }
304
305         if (!found)
306         {
307           SequenceI matchedSeq = matcher.findIdMatch(xref.getSource() + "|"
308                   + xref.getAccessionId());
309           if (matchedSeq != null)
310           {
311             if (constructMapping(seq, matchedSeq, xref, cf, fromDna))
312             {
313               found = true;
314             }
315           }
316         }
317
318         if (!found)
319         {
320           // do a bit more work - search for sequences with references matching
321           // xrefs on this sequence.
322           found = searchDataset(fromDna, dss, xref, rseqs, cf, false);
323         }
324         if (found)
325         {
326           refIterator.remove();
327         }
328       }
329
330       /*
331        * fetch from source database any dbrefs we haven't resolved up to here
332        */
333       if (!sourceRefs.isEmpty())
334       {
335         retrieveCrossRef(sourceRefs, seq, xrfs, fromDna, cf);
336       }
337     }
338
339     Alignment ral = null;
340     if (rseqs.size() > 0)
341     {
342       ral = new Alignment(rseqs.toArray(new SequenceI[rseqs.size()]));
343       if (!cf.isEmpty())
344       {
345         dataset.addCodonFrame(cf);
346       }
347     }
348     return ral;
349   }
350
351   private void retrieveCrossRef(List<DBRefEntry> sourceRefs, SequenceI seq,
352           DBRefEntry[] xrfs, boolean fromDna, AlignedCodonFrame cf)
353   {
354     ASequenceFetcher sftch = SequenceFetcherFactory.getSequenceFetcher();
355     SequenceI[] retrieved = null;
356     SequenceI dss = seq.getDatasetSequence() == null ? seq : seq
357             .getDatasetSequence();
358     try
359     {
360       retrieved = sftch.getSequences(sourceRefs, !fromDna);
361     } catch (Exception e)
362     {
363       System.err
364               .println("Problem whilst retrieving cross references for Sequence : "
365                       + seq.getName());
366       e.printStackTrace();
367     }
368
369     if (retrieved != null)
370     {
371       updateDbrefMappings(seq, xrfs, retrieved, cf, fromDna);
372       for (SequenceI retrievedSequence : retrieved)
373       {
374         // dataset gets contaminated ccwith non-ds sequences. why ??!
375         // try: Ensembl -> Nuc->Ensembl, Nuc->Uniprot-->Protein->EMBL->
376         SequenceI retrievedDss = retrievedSequence.getDatasetSequence() == null ? retrievedSequence
377                 : retrievedSequence.getDatasetSequence();
378         DBRefEntry[] dbr = retrievedSequence.getDBRefs();
379         if (dbr != null)
380         {
381           for (DBRefEntry dbref : dbr)
382           {
383             // find any entry where we should put in the sequence being
384             // cross-referenced into the map
385             Mapping map = dbref.getMap();
386             if (map != null)
387             {
388               if (map.getTo() != null && map.getMap() != null)
389               {
390                 // TODO findInDataset requires exact sequence match but
391                 // 'congruent' test is only for the mapped part
392                 // maybe not a problem in practice since only ENA provide a
393                 // mapping and it is to the full protein translation of CDS
394                 SequenceI matched = findInDataset(dbref);
395                 // matcher.findIdMatch(map.getTo());
396                 if (matched != null)
397                 {
398                   /*
399                    * already got an xref to this sequence; update this
400                    * map to point to the same sequence, and add
401                    * any new dbrefs to it
402                    */
403                   DBRefEntry[] toRefs = map.getTo().getDBRefs();
404                   if (toRefs != null)
405                   {
406                     for (DBRefEntry ref : toRefs)
407                     {
408                       matched.addDBRef(ref); // add or update mapping
409                     }
410                   }
411                   map.setTo(matched);
412                 }
413                 else
414                 {
415                   matcher.add(map.getTo());
416                 }
417                 try
418                 {
419                   // compare ms with dss and replace with dss in mapping
420                   // if map is congruent
421                   SequenceI ms = map.getTo();
422                   int sf = map.getMap().getToLowest();
423                   int st = map.getMap().getToHighest();
424                   SequenceI mappedrg = ms.getSubSequence(sf, st);
425                   // SequenceI loc = dss.getSubSequence(sf, st);
426                   if (mappedrg.getLength() > 0
427                           && ms.getSequenceAsString().equals(
428                                   dss.getSequenceAsString()))
429                   // && mappedrg.getSequenceAsString().equals(
430                   // loc.getSequenceAsString()))
431                   {
432                     String msg = "Mapping updated from " + ms.getName()
433                             + " to retrieved crossreference "
434                             + dss.getName();
435                     System.out.println(msg);
436                     map.setTo(dss);
437
438                     /*
439                      * give the reverse reference the inverse mapping 
440                      * (if it doesn't have one already)
441                      */
442                     setReverseMapping(dss, dbref, cf);
443
444                     /*
445                      * copy sequence features as well, avoiding
446                      * duplication (e.g. same variation from two 
447                      * transcripts)
448                      */
449                     SequenceFeature[] sfs = ms.getSequenceFeatures();
450                     if (sfs != null)
451                     {
452                       for (SequenceFeature feat : sfs)
453                       {
454                         /*
455                          * make a flyweight feature object which ignores Parent
456                          * attribute in equality test; this avoids creating many
457                          * otherwise duplicate exon features on genomic sequence
458                          */
459                         SequenceFeature newFeature = new SequenceFeature(
460                                 feat)
461                         {
462                           @Override
463                           public boolean equals(Object o)
464                           {
465                             return super.equals(o, true);
466                           }
467                         };
468                         dss.addSequenceFeature(newFeature);
469                       }
470                     }
471                   }
472                   cf.addMap(retrievedDss, map.getTo(), map.getMap());
473                 } catch (Exception e)
474                 {
475                   System.err
476                           .println("Exception when consolidating Mapped sequence set...");
477                   e.printStackTrace(System.err);
478                 }
479               }
480             }
481           }
482         }
483         retrievedSequence.updatePDBIds();
484         rseqs.add(retrievedDss);
485         dataset.addSequence(retrievedDss);
486         matcher.add(retrievedDss);
487       }
488     }
489   }
490   /**
491    * Sets the inverse sequence mapping in the corresponding dbref of the mapped
492    * to sequence (if any). This is used after fetching a cross-referenced
493    * sequence, if the fetched sequence has a mapping to the original sequence,
494    * to set the mapping in the original sequence's dbref.
495    * 
496    * @param mapFrom
497    *          the sequence mapped from
498    * @param dbref
499    * @param mappings
500    */
501   void setReverseMapping(SequenceI mapFrom, DBRefEntry dbref,
502           AlignedCodonFrame mappings)
503   {
504     SequenceI mapTo = dbref.getMap().getTo();
505     if (mapTo == null)
506     {
507       return;
508     }
509     DBRefEntry[] dbrefs = mapTo.getDBRefs();
510     if (dbrefs == null)
511     {
512       return;
513     }
514     for (DBRefEntry toRef : dbrefs)
515     {
516       if (toRef.hasMap() && mapFrom == toRef.getMap().getTo())
517       {
518         /*
519          * found the reverse dbref; update its mapping if null
520          */
521         if (toRef.getMap().getMap() == null)
522         {
523           MapList inverse = dbref.getMap().getMap().getInverse();
524           toRef.getMap().setMap(inverse);
525           mappings.addMap(mapTo, mapFrom, inverse);
526         }
527       }
528     }
529   }
530
531   /**
532    * Returns the first identical sequence in the dataset if any, else null
533    * 
534    * @param xref
535    * @return
536    */
537   SequenceI findInDataset(DBRefEntry xref)
538   {
539     if (xref == null || !xref.hasMap() || xref.getMap().getTo() == null)
540     {
541       return null;
542     }
543     SequenceI mapsTo = xref.getMap().getTo();
544     String name = xref.getAccessionId();
545     String name2 = xref.getSource() + "|" + name;
546     SequenceI dss = mapsTo.getDatasetSequence() == null ? mapsTo : mapsTo
547             .getDatasetSequence();
548     for (SequenceI seq : dataset.getSequences())
549     {
550       /*
551        * clumsy alternative to using SequenceIdMatcher which currently
552        * returns sequences with a dbref to the matched accession id 
553        * which we don't want
554        */
555       if (name.equals(seq.getName()) || seq.getName().startsWith(name2))
556       {
557         if (sameSequence(seq, dss))
558         {
559           return seq;
560         }
561       }
562     }
563     return null;
564   }
565
566   /**
567    * Answers true if seq1 and seq2 contain exactly the same characters (ignoring
568    * case), else false. This method compares the lengths, then each character in
569    * turn, in order to 'fail fast'. For case-sensitive comparison, it would be
570    * possible to use Arrays.equals(seq1.getSequence(), seq2.getSequence()).
571    * 
572    * @param seq1
573    * @param seq2
574    * @return
575    */
576   // TODO move to Sequence / SequenceI
577   static boolean sameSequence(SequenceI seq1, SequenceI seq2)
578   {
579     if (seq1 == seq2)
580     {
581       return true;
582     }
583     if (seq1 == null || seq2 == null)
584     {
585       return false;
586     }
587     char[] c1 = seq1.getSequence();
588     char[] c2 = seq2.getSequence();
589     if (c1.length != c2.length)
590     {
591       return false;
592     }
593     for (int i = 0; i < c1.length; i++)
594     {
595       int diff = c1[i] - c2[i];
596       /*
597        * same char or differ in case only ('a'-'A' == 32)
598        */
599       if (diff != 0 && diff != 32 && diff != -32)
600       {
601         return false;
602       }
603     }
604     return true;
605   }
606
607   /**
608    * Updates any empty mappings in the cross-references with one to a compatible
609    * retrieved sequence if found, and adds any new mappings to the
610    * AlignedCodonFrame
611    * 
612    * @param mapFrom
613    * @param xrefs
614    * @param retrieved
615    * @param acf
616    */
617   void updateDbrefMappings(SequenceI mapFrom, DBRefEntry[] xrefs,
618           SequenceI[] retrieved, AlignedCodonFrame acf, boolean fromDna)
619   {
620     SequenceIdMatcher idMatcher = new SequenceIdMatcher(retrieved);
621     for (DBRefEntry xref : xrefs)
622     {
623       if (!xref.hasMap())
624       {
625         String targetSeqName = xref.getSource() + "|"
626                 + xref.getAccessionId();
627         SequenceI[] matches = idMatcher.findAllIdMatches(targetSeqName);
628         if (matches == null)
629         {
630           return;
631         }
632         for (SequenceI seq : matches)
633         {
634           constructMapping(mapFrom, seq, xref, acf, fromDna);
635         }
636       }
637     }
638   }
639
640   /**
641    * Tries to make a mapping between sequences. If successful, adds the mapping
642    * to the dbref and the mappings collection and answers true, otherwise
643    * answers false. The following methods of making are mapping are tried in
644    * turn:
645    * <ul>
646    * <li>if 'mapTo' holds a mapping to 'mapFrom', take the inverse; this is, for
647    * example, the case after fetching EMBL cross-references for a Uniprot
648    * sequence</li>
649    * <li>else check if the dna translates exactly to the protein (give or take
650    * start and stop codons></li>
651    * <li>else try to map based on CDS features on the dna sequence</li>
652    * </ul>
653    * 
654    * @param mapFrom
655    * @param mapTo
656    * @param xref
657    * @param mappings
658    * @return
659    */
660   boolean constructMapping(SequenceI mapFrom, SequenceI mapTo,
661           DBRefEntry xref, AlignedCodonFrame mappings, boolean fromDna)
662   {
663     MapList mapping = null;
664
665     /*
666      * look for a reverse mapping, if found make its inverse
667      */
668     if (mapTo.getDBRefs() != null)
669     {
670       for (DBRefEntry dbref : mapTo.getDBRefs())
671       {
672         String name = dbref.getSource() + "|" + dbref.getAccessionId();
673         if (dbref.hasMap() && mapFrom.getName().startsWith(name))
674         {
675           /*
676            * looks like we've found a map from 'mapTo' to 'mapFrom'
677            * - invert it to make the mapping the other way 
678            */
679           MapList reverse = dbref.getMap().getMap().getInverse();
680           xref.setMap(new Mapping(mapTo, reverse));
681           mappings.addMap(mapFrom, mapTo, reverse);
682           return true;
683         }
684       }
685     }
686
687     if (fromDna)
688     {
689       mapping = AlignmentUtils.mapCdnaToProtein(mapTo, mapFrom);
690     }
691     else
692     {
693       mapping = AlignmentUtils.mapCdnaToProtein(mapFrom, mapTo);
694       if (mapping != null)
695       {
696         mapping = mapping.getInverse();
697       }
698     }
699     if (mapping == null)
700     {
701       return false;
702     }
703     xref.setMap(new Mapping(mapTo, mapping));
704
705     /*
706      * and add a reverse DbRef with the inverse mapping
707      */
708     if (mapFrom.getDatasetSequence() != null
709             && mapFrom.getDatasetSequence().getSourceDBRef() != null)
710     {
711       DBRefEntry dbref = new DBRefEntry(mapFrom.getDatasetSequence()
712               .getSourceDBRef());
713       dbref.setMap(new Mapping(mapFrom.getDatasetSequence(), mapping
714               .getInverse()));
715       mapTo.addDBRef(dbref);
716     }
717
718     if (fromDna)
719     {
720       AlignmentUtils.computeProteinFeatures(mapFrom, mapTo, mapping);
721       mappings.addMap(mapFrom, mapTo, mapping);
722     }
723     else
724     {
725       mappings.addMap(mapTo, mapFrom, mapping.getInverse());
726     }
727
728     return true;
729   }
730
731   /**
732    * find references to lrfs in the cross-reference set of each sequence in
733    * dataset (that is not equal to sequenceI) Identifies matching DBRefEntry
734    * based on source and accession string only - Map and Version are nulled.
735    * 
736    * @param fromDna
737    *          - true if context was searching from Dna sequences, false if
738    *          context was searching from Protein sequences
739    * @param sequenceI
740    * @param lrfs
741    * @param foundSeqs
742    * @return true if matches were found.
743    */
744   private boolean searchDatasetXrefs(boolean fromDna, SequenceI sequenceI,
745           DBRefEntry[] lrfs, List<SequenceI> foundSeqs, AlignedCodonFrame cf)
746   {
747     boolean found = false;
748     if (lrfs == null)
749     {
750       return false;
751     }
752     for (int i = 0; i < lrfs.length; i++)
753     {
754       DBRefEntry xref = new DBRefEntry(lrfs[i]);
755       // add in wildcards
756       xref.setVersion(null);
757       xref.setMap(null);
758       found |= searchDataset(fromDna, sequenceI, xref, foundSeqs, cf, false);
759     }
760     return found;
761   }
762
763   /**
764    * Searches dataset for DBRefEntrys matching the given one (xrf) and adds the
765    * associated sequence to rseqs
766    * 
767    * @param fromDna
768    *          true if context was searching for refs *from* dna sequence, false
769    *          if context was searching for refs *from* protein sequence
770    * @param fromSeq
771    *          a sequence to ignore (start point of search)
772    * @param xrf
773    *          a cross-reference to try to match
774    * @param foundSeqs
775    *          result list to add to
776    * @param mappings
777    *          a set of sequence mappings to add to
778    * @param direct
779    *          - indicates the type of relationship between returned sequences,
780    *          xrf, and sequenceI that is required.
781    *          <ul>
782    *          <li>direct implies xrf is a primary reference for sequenceI AND
783    *          the sequences to be located (eg a uniprot ID for a protein
784    *          sequence, and a uniprot ref on a transcript sequence).</li>
785    *          <li>indirect means xrf is a cross reference with respect to
786    *          sequenceI or all the returned sequences (eg a genomic reference
787    *          associated with a locus and one or more transcripts)</li>
788    *          </ul>
789    * @return true if relationship found and sequence added.
790    */
791   boolean searchDataset(boolean fromDna, SequenceI fromSeq,
792           DBRefEntry xrf, List<SequenceI> foundSeqs, AlignedCodonFrame mappings,
793           boolean direct)
794   {
795     boolean found = false;
796     if (dataset == null)
797     {
798       return false;
799     }
800     if (dataset.getSequences() == null)
801     {
802       System.err.println("Empty dataset sequence set - NO VECTOR");
803       return false;
804     }
805     List<SequenceI> ds;
806     synchronized (ds = dataset.getSequences())
807     {
808       for (SequenceI nxt : ds)
809       {
810         if (nxt != null)
811         {
812           if (nxt.getDatasetSequence() != null)
813           {
814             System.err
815                     .println("Implementation warning: CrossRef initialised with a dataset alignment with non-dataset sequences in it! ("
816                             + nxt.getDisplayId(true)
817                             + " has ds reference "
818                             + nxt.getDatasetSequence().getDisplayId(true)
819                             + ")");
820           }
821           if (nxt == fromSeq || nxt == fromSeq.getDatasetSequence())
822           {
823             continue;
824           }
825           /*
826            * only look at same molecule type if 'direct', or
827            * complementary type if !direct
828            */
829           {
830             boolean isDna = !nxt.isProtein();
831             if (direct ? (isDna != fromDna) : (isDna == fromDna))
832             {
833               // skip this sequence because it is wrong molecule type
834               continue;
835             }
836           }
837
838           // look for direct or indirect references in common
839           DBRefEntry[] poss = nxt.getDBRefs();
840           List<DBRefEntry> cands = null;
841
842           // todo: indirect specifies we select either direct references to nxt
843           // that match xrf which is indirect to sequenceI, or indirect
844           // references to nxt that match xrf which is direct to sequenceI
845           cands = DBRefUtils.searchRefs(poss, xrf);
846           // else
847           // {
848           // poss = DBRefUtils.selectDbRefs(nxt.isProtein()!fromDna, poss);
849           // cands = DBRefUtils.searchRefs(poss, xrf);
850           // }
851           if (!cands.isEmpty())
852           {
853             if (!foundSeqs.contains(nxt))
854             {
855               found = true;
856               foundSeqs.add(nxt);
857               if (mappings != null && !direct)
858               {
859                 /*
860                  * if the matched sequence has mapped dbrefs to
861                  * protein product / cdna, add equivalent mappings to
862                  * our source sequence
863                  */
864                 for (DBRefEntry candidate : cands)
865                 {
866                   Mapping mapping = candidate.getMap();
867                   if (mapping != null)
868                   {
869                     MapList map = mapping.getMap();
870                     if (mapping.getTo() != null
871                             && map.getFromRatio() != map.getToRatio())
872                     {
873                       /*
874                        * add a mapping, as from dna to peptide sequence
875                        */
876                       if (map.getFromRatio() == 3)
877                       {
878                         mappings.addMap(nxt, fromSeq, map);
879                       }
880                       else
881                       {
882                         mappings.addMap(nxt, fromSeq, map.getInverse());
883                       }
884                     }
885                   }
886                 }
887               }
888             }
889           }
890         }
891       }
892     }
893     return found;
894   }
895 }