inprogress
[jalview.git] / forester / java / src / org / forester / ws / seqdb / EbiDbEntry.java
1 // $Id:
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: https://sites.google.com/site/cmzmasek/home/software/forester
25
26 package org.forester.ws.seqdb;
27
28 import java.util.List;
29
30 import org.forester.util.ForesterUtil;
31
32 public final class EbiDbEntry implements SequenceDatabaseEntry {
33
34     //http://www.ebi.ac.uk/Tools/dbfetch/dbfetch/emb/AAR37336/
35     private String _pa;
36     private String _de;
37     private String _os;
38     private String _tax_id;
39     private String _symbol;
40     private String _provider;
41
42     private EbiDbEntry() {
43     }
44
45     @Override
46     public Object clone() throws CloneNotSupportedException {
47         throw new CloneNotSupportedException();
48     }
49
50     public static SequenceDatabaseEntry createInstanceFromPlainTextForRefSeq( final List<String> lines ) {
51         final EbiDbEntry e = new EbiDbEntry();
52         for( final String line : lines ) {
53             //  System.out.println( "-" + line );
54             if ( line.startsWith( "ACCESSION" ) ) {
55                 e.setPA( DatabaseTools.extract( line, "ACCESSION" ) );
56             }
57             else if ( line.startsWith( "DEFINITION" ) ) {
58                 if ( line.indexOf( "[" ) > 0 ) {
59                     e.setDe( DatabaseTools.extract( line, "DEFINITION", "[" ) );
60                 }
61                 else {
62                     e.setDe( DatabaseTools.extract( line, "DEFINITION" ) );
63                 }
64             }
65             else if ( line.startsWith( "SOURCE" ) ) {
66                 if ( line.indexOf( "(" ) > 0 ) {
67                     e.setOs( DatabaseTools.extract( line, "SOURCE", "(" ) );
68                 }
69                 else {
70                     e.setOs( DatabaseTools.extract( line, "SOURCE" ) );
71                 }
72             }
73         }
74         return e;
75     }
76
77     public static SequenceDatabaseEntry createInstanceFromPlainText( final List<String> lines ) {
78         final EbiDbEntry e = new EbiDbEntry();
79         for( final String line : lines ) {
80             if ( line.startsWith( "PA" ) ) {
81                 e.setPA( DatabaseTools.extract( line, "PA" ) );
82             }
83             else if ( line.startsWith( "DE" ) ) {
84                 e.setDe( DatabaseTools.extract( line, "DE" ) );
85             }
86             else if ( line.startsWith( "OS" ) ) {
87                 if ( line.indexOf( "(" ) > 0 ) {
88                     e.setOs( DatabaseTools.extract( line, "OS", "(" ) );
89                 }
90                 else {
91                     e.setOs( DatabaseTools.extract( line, "OS" ) );
92                 }
93             }
94             else if ( line.startsWith( "OX" ) ) {
95                 if ( line.indexOf( "NCBI_TaxID=" ) > 0 ) {
96                     e.setTaxId( DatabaseTools.extract( line, "NCBI_TaxID=", ";" ) );
97                 }
98             }
99         }
100         return e;
101     }
102
103     @Override
104     public String getAccession() {
105         return _pa;
106     }
107
108     private void setPA( final String pa ) {
109         if ( _pa == null ) {
110             _pa = pa;
111         }
112     }
113
114     @Override
115     public String getSequenceName() {
116         return _de;
117     }
118
119     private void setDe( final String rec_name ) {
120         if ( _de == null ) {
121             _de = rec_name;
122         }
123     }
124
125     @Override
126     public String getTaxonomyScientificName() {
127         return _os;
128     }
129
130     private void setOs( final String os ) {
131         if ( _os == null ) {
132             _os = os;
133         }
134     }
135
136     @Override
137     public String getTaxonomyIdentifier() {
138         return _tax_id;
139     }
140
141     private void setTaxId( final String tax_id ) {
142         if ( _tax_id == null ) {
143             _tax_id = tax_id;
144         }
145     }
146
147     @Override
148     public String getSequenceSymbol() {
149         return _symbol;
150     }
151
152     @Override
153     public boolean isEmpty() {
154         return ( ForesterUtil.isEmpty( getAccession() ) && ForesterUtil.isEmpty( getSequenceName() )
155                 && ForesterUtil.isEmpty( getTaxonomyScientificName() )
156                 && ForesterUtil.isEmpty( getTaxonomyIdentifier() ) && ForesterUtil.isEmpty( getSequenceSymbol() ) );
157     }
158
159     @Override
160     public String getProvider() {
161         return _provider;
162     }
163
164     public void setProvider( final String provider ) {
165         _provider = provider;
166     }
167
168     @Override
169     public String getGeneName() {
170         return null;
171     }
172 }