2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
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
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import java.io.IOException;
31 public class IdentifyFile
34 * Identify a datasource's file content.
36 * @note Do not use this method for stream sources - create a FileParse object
42 * @throws FileFormatException
44 public FileFormatI identify(String file, DataSourceType sourceType)
45 throws FileFormatException
47 String emessage = "UNIDENTIFIED FILE PARSING ERROR";
48 FileParse parser = null;
51 parser = new FileParse(file, sourceType);
54 return identify(parser);
58 System.err.println("Error whilst identifying");
59 e.printStackTrace(System.err);
60 emessage = e.getMessage();
64 throw new FileFormatException(parser.errormessage);
66 throw new FileFormatException(emessage);
69 public FileFormatI identify(FileParse source) throws FileFormatException
71 return identify(source, true);
72 // preserves original behaviour prior to version 2.3
75 public FileFormatI identify(AlignmentFileReaderI file,
76 boolean closeSource) throws IOException
78 FileParse fp = new FileParse(file.getInFile(),
79 file.getDataSourceType());
80 return identify(fp, closeSource);
84 * Identify contents of source, closing it or resetting source to start
89 * @return (best guess at) file format
90 * @throws FileFormatException
92 public FileFormatI identify(FileParse source, boolean closeSource)
93 throws FileFormatException
95 FileFormatI reply = FileFormat.Pfam;
98 int trimmedLength = 0;
99 boolean lineswereskipped = false;
100 boolean isBinary = false; // true if length is non-zero and non-printable
101 // characters are encountered
109 boolean aaIndexHeaderRead = false;
111 while ((data = source.nextLine()) != null)
113 bytesRead += data.length();
114 trimmedLength += data.trim().length();
115 if (!lineswereskipped)
117 for (int i = 0; !isBinary && i < data.length(); i++)
119 char c = data.charAt(i);
120 isBinary = (c < 32 && c != '\t' && c != '\n' && c != '\r'
121 && c != 5 && c != 27); // nominal binary character filter
122 // excluding CR, LF, tab,DEL and ^E
123 // for certain blast ids
128 // jar files are special - since they contain all sorts of random
130 if (source.inFile != null)
132 String fileStr = source.inFile.getName();
133 // possibly a Jalview archive.
134 if (fileStr.lastIndexOf(".jar") > -1
135 || fileStr.lastIndexOf(".zip") > -1)
137 reply = FileFormat.Jalview;
138 // TODO shouldn't there be a break here?
140 else if (fileStr.lastIndexOf(".bam") > -1)
142 reply = FileFormat.Bam;
146 if (!lineswereskipped && data.startsWith("PK"))
148 reply = FileFormat.Jalview; // archive.
152 data = data.toUpperCase();
154 if (data.startsWith(ScoreMatrixFile.SCOREMATRIX))
156 reply = FileFormat.ScoreMatrix;
159 if (data.startsWith("H ") && !aaIndexHeaderRead)
161 aaIndexHeaderRead = true;
163 if (data.startsWith("D ") && aaIndexHeaderRead)
165 reply = FileFormat.ScoreMatrix;
168 if (data.startsWith("##GFF-VERSION"))
170 // GFF - possibly embedded in a Jalview features file!
171 reply = FileFormat.Features;
174 if (looksLikeFeatureData(data))
176 reply = FileFormat.Features;
179 if (data.indexOf("# STOCKHOLM") > -1)
181 reply = FileFormat.Stockholm;
184 if (data.indexOf("_ENTRY.ID") > -1
185 || data.indexOf("_AUDIT_AUTHOR.NAME") > -1
186 || data.indexOf("_ATOM_SITE.") > -1)
188 reply = FileFormat.MMCif;
191 // if (data.indexOf(">") > -1)
192 if (data.startsWith(">"))
194 // FASTA, PIR file or BLC file
195 boolean checkPIR = false, starterm = false;
196 if ((data.indexOf(">P1;") > -1) || (data.indexOf(">DL;") > -1))
198 // watch for PIR file attributes
200 reply = FileFormat.PIR;
202 // could also be BLC file, read next line to confirm
203 data = source.nextLine();
205 if (data.indexOf(">") > -1)
207 reply = FileFormat.BLC;
211 // Is this a single line BLC file?
212 String data1 = source.nextLine();
213 String data2 = source.nextLine();
217 starterm = (data1 != null && data1.indexOf("*") > -1)
218 || (data2 != null && data2.indexOf("*") > -1);
220 if (data2 != null && (c1 = data.indexOf("*")) > -1)
222 if (c1 == 0 && c1 == data2.indexOf("*"))
224 reply = FileFormat.BLC;
228 reply = FileFormat.Fasta; // possibly a bad choice - may be
232 // otherwise can still possibly be a PIR file
236 reply = FileFormat.Fasta;
237 // TODO : AMSA File is indicated if there is annotation in the
238 // FASTA file - but FASTA will automatically generate this at the
246 // final check for PIR content. require
247 // >P1;title\n<blah>\nterminated sequence to occur at least once.
249 // TODO the PIR/fasta ambiguity may be the use case that is needed to
251 // a 'Parse as type XXX' parameter for the applet/application.
261 dta = source.nextLine();
262 } catch (IOException ex)
265 if (dta != null && dta.indexOf("*") > -1)
269 } while (dta != null && !starterm);
273 reply = FileFormat.PIR;
278 reply = FileFormat.Fasta; // probably a bad choice!
281 // read as a FASTA (probably)
284 if (data.indexOf("{\"") > -1)
286 reply = FileFormat.Json;
289 int lessThan = data.indexOf("<");
290 if ((lessThan > -1)) // possible Markup Language data i.e HTML,
293 String upper = data.toUpperCase();
294 if (upper.substring(lessThan).startsWith("<HTML"))
296 reply = FileFormat.Html;
299 if (upper.substring(lessThan).startsWith("<RNAML"))
301 reply = FileFormat.Rnaml;
306 if ((data.length() < 1) || (data.indexOf("#") == 0))
308 lineswereskipped = true;
312 if (data.indexOf("PILEUP") > -1)
314 reply = FileFormat.Pileup;
319 if ((data.indexOf("//") == 0) || ((data.indexOf("!!") > -1) && (data
320 .indexOf("!!") < data.indexOf("_MULTIPLE_ALIGNMENT "))))
322 reply = FileFormat.MSF;
326 else if (data.indexOf("CLUSTAL") > -1)
328 reply = FileFormat.Clustal;
333 else if (data.indexOf("HEADER") == 0 || data.indexOf("ATOM") == 0)
335 reply = FileFormat.PDB;
338 else if (data.matches("\\s*\\d+\\s+\\d+\\s*"))
340 reply = FileFormat.Phylip;
345 if (!lineswereskipped && looksLikeJnetData(data))
347 reply = FileFormat.Jnet;
352 lineswereskipped = true; // this means there was some junk before any
353 // key file signature
361 source.reset(bytesRead); // so the file can be parsed from the mark
363 } catch (Exception ex)
365 System.err.println("File Identification failed!\n" + ex);
366 throw new FileFormatException(source.errormessage);
368 if (trimmedLength == 0)
371 "File Identification failed! - Empty file was read.");
372 throw new FileFormatException("EMPTY DATA FILE");
374 System.out.println("File format identified as " + reply.toString());
379 * Returns true if the data appears to be Jnet concise annotation format
384 protected boolean looksLikeJnetData(String data)
386 char firstChar = data.charAt(0);
387 int colonPos = data.indexOf(":");
388 int commaPos = data.indexOf(",");
389 boolean isJnet = firstChar != '*' && firstChar != ' ' && colonPos > -1
390 && commaPos > -1 && colonPos < commaPos;
391 // && data.indexOf(",")<data.indexOf(",", data.indexOf(","))) / ??
396 * Returns true if the data has at least 6 tab-delimited fields _and_ fields 4
397 * and 5 are integer (start/end)
402 protected boolean looksLikeFeatureData(String data)
408 String[] columns = data.split("\t");
409 if (columns.length < 6)
413 for (int col = 3; col < 5; col++)
417 Integer.parseInt(columns[col]);
418 } catch (NumberFormatException e)
426 public static void main(String[] args)
428 for (int i = 0; args != null && i < args.length; i++)
430 IdentifyFile ider = new IdentifyFile();
431 FileFormatI type = null;
434 type = ider.identify(args[i], DataSourceType.FILE);
435 } catch (FileFormatException e)
438 String.format("Error '%s' identifying file type for %s",
439 args[i], e.getMessage()));
441 System.out.println("Type of " + args[i] + " is " + type);
443 if (args == null || args.length == 0)
445 System.err.println("Usage: <Filename> [<Filename> ...]");