phylotastic hackathon at NESCENT 120606
[jalview.git] / forester / java / src / org / forester / util / SequenceIdParser.java
1 // $Id:\r
2 // FORESTER -- software libraries and applications\r
3 // for evolutionary biology research and applications.\r
4 //\r
5 // Copyright (C) 2008-2009 Christian M. Zmasek\r
6 // Copyright (C) 2008-2009 Burnham Institute for Medical Research\r
7 // Copyright (C) 2000-2001 Washington University School of Medicine\r
8 // and Howard Hughes Medical Institute\r
9 // Copyright (C) 2003-2007 Ethalinda K.S. Cannon\r
10 // All rights reserved\r
11 //\r
12 // This library is free software; you can redistribute it and/or\r
13 // modify it under the terms of the GNU Lesser General Public\r
14 // License as published by the Free Software Foundation; either\r
15 // version 2.1 of the License, or (at your option) any later version.\r
16 //\r
17 // This library is distributed in the hope that it will be useful,\r
18 // but WITHOUT ANY WARRANTY; without even the implied warranty of\r
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r
20 // Lesser General Public License for more details.\r
21 //\r
22 // You should have received a copy of the GNU Lesser General Public\r
23 // License along with this library; if not, write to the Free Software\r
24 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\r
25 //\r
26 // Contact: phylosoft @ gmail . com\r
27 // WWW: www.phylosoft.org/forester\r
28 \r
29 package org.forester.util;\r
30 \r
31 import org.forester.phylogeny.data.Identifier;\r
32 \r
33 public final class SequenceIdParser {\r
34 \r
35     \r
36     // ref_XP_002434188_1_mites___ticks_\r
37     // ref_NP_001121530_1_frogs___toads_\r
38     // gb_ADF31344_1_segmented_worms_\r
39     // gb_AAA96518_1\r
40     // gb_EHB07727_1_rodents_\r
41     // dbj_BAF37827_1_turtles_\r
42     // emb_CAA73223_1_primates_\r
43     // lcl_91970_unknown_\r
44     \r
45     \r
46     public final static Identifier parse( final String s ) {\r
47         \r
48         return null;\r
49     }\r
50     \r
51     \r
52     private SequenceIdParser() {\r
53         // Hiding the constructor.\r
54     }\r
55     \r
56     \r
57     \r
58 }\r