2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.5)
3 * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle
5 * This file is part of Jalview.
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 of the License, or (at your option) any later version.
11 * Jalview is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty
13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along with Jalview. If not, see <http://www.gnu.org/licenses/>.
29 public class IdentifyFile
32 * Identify a datasource's file content.
34 * @note Do not use this method for stream sources - create a FileParse object
43 public String Identify(String file, String protocol)
45 String emessage = "UNIDENTIFIED FILE PARSING ERROR";
46 FileParse parser = null;
49 parser = new FileParse(file, protocol);
52 return Identify(parser);
56 System.err.println("Error whilst identifying");
57 e.printStackTrace(System.err);
58 emessage = e.getMessage();
61 return parser.errormessage;
65 public String Identify(FileParse source)
67 return Identify(source, true); // preserves original behaviour prior to
72 * Identify contents of source, closing it or resetting source to start
77 * @return filetype string
79 public String Identify(FileParse source, boolean closeSource)
81 String reply = "PFAM";
84 boolean lineswereskipped = false;
85 boolean isBinary = false; // true if length is non-zero and non-printable
86 // characters are encountered
93 while ((data = source.nextLine()) != null)
95 length += data.length();
96 if (!lineswereskipped)
98 for (int i = 0; !isBinary && i < data.length(); i++)
100 char c = data.charAt(i);
101 isBinary = (c < 32 && c != '\t' && c != '\n' && c != '\r'
102 && c != 5 && c != 27); // nominal binary character filter
103 // excluding CR, LF, tab,DEL and ^E
104 // for certain blast ids
109 // jar files are special - since they contain all sorts of random
111 if (source.inFile != null)
113 String fileStr = source.inFile.getName();
114 // possibly a Jalview archive.
115 if (fileStr.lastIndexOf(".jar") > -1
116 || fileStr.lastIndexOf(".zip") > -1)
121 if (!lineswereskipped && data.startsWith("PK"))
123 reply = "Jalview"; // archive.
127 data = data.toUpperCase();
129 if ((data.indexOf("# STOCKHOLM") > -1))
136 if ((data.length() < 1) || (data.indexOf("#") == 0))
138 lineswereskipped = true;
142 if (data.indexOf("PILEUP") > -1)
149 if ((data.indexOf("//") == 0)
150 || ((data.indexOf("!!") > -1) && (data.indexOf("!!") < data
151 .indexOf("_MULTIPLE_ALIGNMENT "))))
157 else if (data.indexOf("CLUSTAL") > -1)
163 else if (data.indexOf(">") > -1)
165 // FASTA, PIR file or BLC file
166 boolean checkPIR = false;
167 if ((data.indexOf(">P1;") > -1) || (data.indexOf(">DL;") > -1))
169 // watch for PIR file attributes
173 // could also be BLC file, read next line to confirm
174 data = source.nextLine();
176 if (data.indexOf(">") > -1)
182 // Is this a single line BLC file?
184 String data2 = source.nextLine();
185 if (data2 != null && data.indexOf("*") > -1)
187 if (data.indexOf("*") == data2.indexOf("*"))
191 // otherwise can still possibly be a PIR file
196 // TODO : AMSA File is indicated if there is annotation in the
197 // FASTA file - but FASTA will automatically generate this at the
202 // TODO final check for PIR content. require
203 // >P1;title\n<blah>\nterminated sequence to occur at least once.
204 // the PIR/fasta ambiguity may be the use case that is needed to have
205 // a 'Parse as type XXX' parameter for the applet/application.
208 else if (data.indexOf("HEADER") == 0 || data.indexOf("ATOM") == 0)
214 * // TODO comment out SimpleBLAST identification for Jalview 2.4.1 else
215 * if (!lineswereskipped && data.indexOf("BLAST")<4) { reply =
216 * "SimpleBLAST"; break;
218 * } // end comments for Jalview 2.4.1
220 else if (!lineswereskipped && data.charAt(0) != '*'
221 && data.charAt(0) != ' '
222 && data.indexOf(":") < data.indexOf(",")) // &&
223 // data.indexOf(",")<data.indexOf(",",
224 // data.indexOf(",")))
226 // file looks like a concise JNet file
231 lineswereskipped = true; // this means there was some junk before any
232 // key file signature
240 source.reset(); // so the file can be parsed from the beginning again.
242 } catch (Exception ex)
244 System.err.println("File Identification failed!\n" + ex);
245 return source.errormessage;
250 .println("File Identification failed! - Empty file was read.");
251 return "EMPTY DATA FILE";
256 public static void main(String[] args)
258 for (int i = 0; args != null && i < args.length; i++)
260 IdentifyFile ider = new IdentifyFile();
261 String type = ider.Identify(args[i], AppletFormatAdapter.FILE);
262 System.out.println("Type of " + args[i] + " is " + type);
264 if (args == null || args.length == 0)
266 System.err.println("Usage: <Filename> [<Filename> ...]");