2 * Jalview - A Sequence Alignment Editor and Viewer
\r
3 * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
\r
5 * This program is free software; you can redistribute it and/or
\r
6 * modify it under the terms of the GNU General Public License
\r
7 * as published by the Free Software Foundation; either version 2
\r
8 * of the License, or (at your option) any later version.
\r
10 * This program is distributed in the hope that it will be useful,
\r
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
13 * GNU General Public License for more details.
\r
15 * You should have received a copy of the GNU General Public License
\r
16 * along with this program; if not, write to the Free Software
\r
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\r
21 import jalview.datamodel.*;
\r
23 import java.util.Vector;
\r
30 * @version $Revision$
\r
32 public class AppletFormatAdapter
\r
34 /** DOCUMENT ME!! */
\r
35 public static final Vector formats = new Vector();
\r
37 public static String INVALID_CHARACTERS = "Contains invalid characters";
\r
39 public static String SUPPORTED_FORMATS = "Formats currently supported are\n" +
\r
40 "Fasta, MSF, Clustal, BLC, PIR, MSP, and PFAM";
\r
44 formats.addElement("BLC");
\r
45 formats.addElement("CLUSTAL");
\r
46 formats.addElement("FASTA");
\r
47 formats.addElement("MSF");
\r
48 formats.addElement("PileUp");
\r
49 formats.addElement("PIR");
\r
50 formats.addElement("PFAM");
\r
51 formats.addElement("PDB");
\r
55 public static String FILE = "File";
\r
56 public static String URL = "URL";
\r
57 public static String PASTE = "Paste";
\r
58 public static String CLASSLOADER = "ClassLoader";
\r
60 AlignFile afile = null;
\r
66 * @param inFile DOCUMENT ME!
\r
67 * @param type DOCUMENT ME!
\r
68 * @param format DOCUMENT ME!
\r
70 * @return DOCUMENT ME!
\r
72 public SequenceI[] readFile(String inFile, String type, String format)
\r
73 throws java.io.IOException
\r
75 this.inFile = inFile;
\r
78 if (format.equals("FASTA"))
\r
80 afile = new FastaFile(inFile, type);
\r
82 else if (format.equals("MSF"))
\r
84 afile = new MSFfile(inFile, type);
\r
86 else if (format.equals("PileUp"))
\r
88 afile = new PileUpfile(inFile, type);
\r
90 else if (format.equals("CLUSTAL"))
\r
92 afile = new ClustalFile(inFile, type);
\r
94 else if (format.equals("BLC"))
\r
96 afile = new BLCFile(inFile, type);
\r
98 else if (format.equals("PIR"))
\r
100 afile = new PIRFile(inFile, type);
\r
102 else if (format.equals("PFAM"))
\r
104 afile = new PfamFile(inFile, type);
\r
106 else if (format.equals("JnetFile"))
\r
108 afile = new JPredFile(inFile, type);
\r
109 ( (JPredFile) afile).removeNonSequences();
\r
111 else if (format.equals("PDB"))
\r
113 afile = new MCview.PDBfile(inFile, type);
\r
116 return afile.getSeqsAsArray();
\r
118 catch (Exception e)
\r
120 e.printStackTrace();
\r
121 System.err.println("Failed to read alignment using the '" + format +
\r
124 if(e.getMessage()!=null && e.getMessage().startsWith(INVALID_CHARACTERS))
\r
125 throw new java.io.IOException(e.getMessage());
\r
127 // Finally test if the user has pasted just the sequence, no id
\r
128 if(type.equalsIgnoreCase("Paste"))
\r
131 // Possible sequence is just residues with no label
\r
132 afile = new FastaFile(">UNKNOWN\n" + inFile, "Paste");
\r
133 return afile.getSeqsAsArray();
\r
135 catch(Exception ex)
\r
137 if(ex.toString().startsWith(INVALID_CHARACTERS))
\r
138 throw new java.io.IOException(e.getMessage());
\r
140 ex.printStackTrace();
\r
144 // If we get to this stage, the format was not supported
\r
145 throw new java.io.IOException(SUPPORTED_FORMATS);
\r
153 * @param format DOCUMENT ME!
\r
154 * @param seqs DOCUMENT ME!
\r
156 * @return DOCUMENT ME!
\r
158 public String formatSequences(String format,
\r
162 SequenceI[] s = new SequenceI[seqs.size()];
\r
164 for (int i = 0; i < seqs.size(); i++)
\r
165 s[i] = (SequenceI) seqs.elementAt(i);
\r
169 AlignFile afile = null;
\r
171 if (format.equalsIgnoreCase("FASTA"))
\r
173 afile = new FastaFile();
\r
175 else if (format.equalsIgnoreCase("MSF"))
\r
177 afile = new MSFfile();
\r
179 else if (format.equalsIgnoreCase("PileUp"))
\r
181 afile = new PileUpfile();
\r
183 else if (format.equalsIgnoreCase("CLUSTAL"))
\r
185 afile = new ClustalFile();
\r
187 else if (format.equalsIgnoreCase("BLC"))
\r
189 afile = new BLCFile();
\r
191 else if (format.equalsIgnoreCase("PIR"))
\r
193 afile = new PIRFile();
\r
195 else if (format.equalsIgnoreCase("PFAM"))
\r
197 afile = new PfamFile();
\r
200 afile.addJVSuffix(jvsuffix);
\r
204 return afile.print();
\r
206 catch (Exception e)
\r
208 System.err.println("Failed to write alignment as a '" + format +
\r
210 e.printStackTrace();
\r