507d28cb992edd5714adbdfe3151e390f6a34f75
[jalview.git] / forester / java / src / org / forester / archaeopteryx / tools / SequenceDataRetriver.java
1 // Exp $
2 // forester -- software libraries and applications
3 // for genomics and evolutionary biology research.
4 //
5 // Copyright (C) 2010 Christian M Zmasek
6 // Copyright (C) 2010 Sanford-Burnham Medical Research Institute
7 // All rights reserved
8 //
9 // This library is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU Lesser General Public
11 // License as published by the Free Software Foundation; either
12 // version 2.1 of the License, or (at your option) any later version.
13 //
14 // This library is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 // Lesser General Public License for more details.
18 //
19 // You should have received a copy of the GNU Lesser General Public
20 // License along with this library; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 //
23 // Contact: phylosoft @ gmail . com
24 // WWW: www.phylosoft.org/forester
25
26 package org.forester.archaeopteryx.tools;
27
28 import java.io.FileNotFoundException;
29 import java.io.IOException;
30 import java.net.UnknownHostException;
31 import java.util.SortedSet;
32 import java.util.TreeSet;
33
34 import javax.swing.JOptionPane;
35
36 import org.forester.archaeopteryx.MainFrameApplication;
37 import org.forester.archaeopteryx.TreePanel;
38 import org.forester.phylogeny.Phylogeny;
39 import org.forester.phylogeny.PhylogenyNode;
40 import org.forester.phylogeny.data.Accession;
41 import org.forester.phylogeny.data.Identifier;
42 import org.forester.phylogeny.data.Sequence;
43 import org.forester.phylogeny.data.Taxonomy;
44 import org.forester.phylogeny.iterators.PhylogenyNodeIterator;
45 import org.forester.util.ForesterUtil;
46 import org.forester.util.SequenceIdParser;
47 import org.forester.ws.uniprot.SequenceDatabaseEntry;
48 import org.forester.ws.uniprot.UniProtWsTools;
49
50 public final class SequenceDataRetriver extends RunnableProcess {
51
52     private final Phylogeny            _phy;
53     private final MainFrameApplication _mf;
54     private final TreePanel            _treepanel;
55     private final static boolean       DEBUG = true;
56
57     private enum Db {
58         UNIPROT, EMBL, NCBI, NONE;
59     }
60
61     public SequenceDataRetriver( final MainFrameApplication mf, final TreePanel treepanel, final Phylogeny phy ) {
62         _phy = phy;
63         _mf = mf;
64         _treepanel = treepanel;
65     }
66
67     private void execute() {
68         start( _mf, "sequence data" );
69         SortedSet<String> not_found = null;
70         try {
71             not_found = obtainSeqInformation( _phy );
72         }
73         catch ( final UnknownHostException e ) {
74             final String what = "_"; //TODO FIXME 
75             JOptionPane.showMessageDialog( _mf,
76                                            "Could not connect to \"" + what + "\"",
77                                            "Network error during taxonomic information gathering",
78                                            JOptionPane.ERROR_MESSAGE );
79             return;
80         }
81         catch ( final IOException e ) {
82             e.printStackTrace();
83             JOptionPane.showMessageDialog( _mf,
84                                            e.toString(),
85                                            "Failed to obtain taxonomic information",
86                                            JOptionPane.ERROR_MESSAGE );
87             return;
88         }
89         finally {
90             end( _mf );
91         }
92         _treepanel.setTree( _phy );
93         _mf.showWhole();
94         _treepanel.setEdited( true );
95         if ( ( not_found != null ) && ( not_found.size() > 0 ) ) {
96             int max = not_found.size();
97             boolean more = false;
98             if ( max > 20 ) {
99                 more = true;
100                 max = 20;
101             }
102             final StringBuffer sb = new StringBuffer();
103             if ( not_found.size() == 1 ) {
104                 sb.append( "Data for the following sequence identifier was not found:\n" );
105             }
106             else {
107                 sb.append( "Data for the following sequence identifiers was not found (total: " + not_found.size()
108                         + "):\n" );
109             }
110             int i = 0;
111             for( final String string : not_found ) {
112                 if ( i > 19 ) {
113                     break;
114                 }
115                 sb.append( string );
116                 sb.append( "\n" );
117                 ++i;
118             }
119             if ( more ) {
120                 sb.append( "..." );
121             }
122             try {
123                 JOptionPane.showMessageDialog( _mf,
124                                                sb.toString(),
125                                                "Sequence Tool Completed",
126                                                JOptionPane.WARNING_MESSAGE );
127             }
128             catch ( final Exception e ) {
129                 // Not important if this fails, do nothing. 
130             }
131         }
132         else {
133             try {
134                 JOptionPane.showMessageDialog( _mf,
135                                                "Sequence tool successfully completed",
136                                                "Sequence Tool Completed",
137                                                JOptionPane.INFORMATION_MESSAGE );
138             }
139             catch ( final Exception e ) {
140                 // Not important if this fails, do nothing.
141             }
142         }
143     }
144
145     public static SortedSet<String> obtainSeqInformation( final Phylogeny phy ) throws IOException {
146         final SortedSet<String> not_found = new TreeSet<String>();
147         for( final PhylogenyNodeIterator iter = phy.iteratorPostorder(); iter.hasNext(); ) {
148             final PhylogenyNode node = iter.next();
149             final Sequence seq = node.getNodeData().isHasSequence() ?  node.getNodeData().getSequence() : new Sequence() ;
150             final Taxonomy tax = node.getNodeData().isHasTaxonomy() ? node.getNodeData().getTaxonomy() : new Taxonomy() ;
151             
152            
153             String query = null;
154             Identifier id = null;
155             Db db = Db.NONE;
156             if ( node.getNodeData().isHasSequence() && ( node.getNodeData().getSequence().getAccession() != null )
157                     && !ForesterUtil.isEmpty( node.getNodeData().getSequence().getAccession().getSource() )
158                     && !ForesterUtil.isEmpty( node.getNodeData().getSequence().getAccession().getValue() )
159                     && node.getNodeData().getSequence().getAccession().getValue().toLowerCase().startsWith( "uniprot" ) ) {
160                 query = node.getNodeData().getSequence().getAccession().getValue();
161                 db = Db.UNIPROT;
162             }
163             else if ( node.getNodeData().isHasSequence()
164                     && ( node.getNodeData().getSequence().getAccession() != null )
165                     && !ForesterUtil.isEmpty( node.getNodeData().getSequence().getAccession().getSource() )
166                     && !ForesterUtil.isEmpty( node.getNodeData().getSequence().getAccession().getValue() )
167                     && ( node.getNodeData().getSequence().getAccession().getValue().toLowerCase().startsWith( "embl" ) || node
168                             .getNodeData().getSequence().getAccession().getValue().toLowerCase().startsWith( "ebi" ) ) ) {
169                 query = node.getNodeData().getSequence().getAccession().getValue();
170                 db = Db.EMBL;
171             }
172             else if ( !ForesterUtil.isEmpty( node.getName() ) ) {
173                 if ( ( query = UniProtWsTools.parseUniProtAccessor( node.getName() ) ) != null ) {
174                     db = Db.UNIPROT;
175                 }
176                 else if ( ( id = SequenceIdParser.parse( node.getName() ) ) != null ) {
177                     db = Db.NCBI;
178                 }
179             }
180             SequenceDatabaseEntry db_entry = null;
181             if ( !ForesterUtil.isEmpty( query ) ) {
182                 if ( db == Db.UNIPROT ) {
183                     if ( DEBUG ) {
184                         System.out.println( "uniprot: " + query );
185                     }
186                   
187                     db_entry = UniProtWsTools.obtainUniProtEntry( query, 200 );
188                   
189                 }
190                 if ( ( db == Db.EMBL ) || ( ( db == Db.UNIPROT ) && ( db_entry == null ) ) ) {
191                     if ( DEBUG ) {
192                         System.out.println( "embl: " + query );
193                     }
194                     
195                     db_entry = UniProtWsTools.obtainEmblEntry( query, 200 );
196                    
197                     if ( ( db == Db.UNIPROT ) && ( db_entry != null ) ) {
198                         db = Db.EMBL;
199                     }
200                 }
201             }
202             else if ( ( db == Db.NCBI ) && ( id != null ) ) {
203                 System.out.println( "db == Db.NCBI && id != null" );
204                 db_entry = UniProtWsTools.obtainrefSeqentryFromEmbl( id, 200 );
205             }
206             if ( ( db_entry != null ) && !db_entry.isEmpty() ) {
207                 if ( !ForesterUtil.isEmpty( db_entry.getAccession() ) ) {
208                     String type = null;
209                     if ( db == Db.EMBL ) {
210                         type = "embl";
211                     }
212                     else if ( db == Db.UNIPROT ) {
213                         type = "uniprot";
214                     }
215                     seq.setAccession( new Accession( db_entry.getAccession(), type ) );
216                 }
217                 if ( !ForesterUtil.isEmpty( db_entry.getSequenceName() ) ) {
218                     seq.setName( db_entry.getSequenceName() );
219                 }
220                 if ( !ForesterUtil.isEmpty( db_entry.getSequenceSymbol() ) ) {
221                     seq.setSymbol( db_entry.getSequenceSymbol() );
222                 }
223                 if ( !ForesterUtil.isEmpty( db_entry.getTaxonomyScientificName() ) ) {
224                     tax.setScientificName( db_entry.getTaxonomyScientificName() );
225                 }
226                 if ( !ForesterUtil.isEmpty( db_entry.getTaxonomyIdentifier() ) ) {
227                     tax.setIdentifier( new Identifier( db_entry.getTaxonomyIdentifier(), "uniprot" ) );
228                 }
229                 node.getNodeData().setTaxonomy( tax );
230                 node.getNodeData().setSequence( seq );
231             }
232             else if ( db != Db.NONE ) {
233                 not_found.add( node.getName() );
234             }
235         }
236         return not_found;
237     }
238
239     @Override
240     public void run() {
241         execute();
242     }
243 }