X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FIdentifyFile.java;fp=src%2Fjalview%2Fio%2FIdentifyFile.java;h=71f423769bb0d3031d7f126162c953f598f024f8;hb=4da7d6ec8ef5ff030c6d06d37a099da2d92d7246;hp=9b3c3351c762e3c9b48fe9ffb82cab948f13b6ac;hpb=43ee8686fab13cd6952335ade1382adf3226f7a1;p=jalview.git diff --git a/src/jalview/io/IdentifyFile.java b/src/jalview/io/IdentifyFile.java index 9b3c335..71f4237 100755 --- a/src/jalview/io/IdentifyFile.java +++ b/src/jalview/io/IdentifyFile.java @@ -30,7 +30,7 @@ import java.io.IOException; */ public class IdentifyFile { - public static final String GFF3File = "GFF v2 or v3"; + public static final String FeaturesFile = "GFF or Jalview features"; /** * Identify a datasource's file content. @@ -44,7 +44,7 @@ public class IdentifyFile * DOCUMENT ME! * @return ID String */ - public String Identify(String file, String protocol) + public String identify(String file, String protocol) { String emessage = "UNIDENTIFIED FILE PARSING ERROR"; FileParse parser = null; @@ -53,7 +53,7 @@ public class IdentifyFile parser = new FileParse(file, protocol); if (parser.isValid()) { - return Identify(parser); + return identify(parser); } } catch (Exception e) { @@ -68,9 +68,9 @@ public class IdentifyFile return emessage; } - public String Identify(FileParse source) + public String identify(FileParse source) { - return Identify(source, true); // preserves original behaviour prior to + return identify(source, true); // preserves original behaviour prior to // version 2.3 } @@ -82,11 +82,12 @@ public class IdentifyFile * @param closeSource * @return filetype string */ - public String Identify(FileParse source, boolean closeSource) + public String identify(FileParse source, boolean closeSource) { String reply = "PFAM"; String data; - int length = 0; + int bytesRead = 0; + int trimmedLength = 0; boolean lineswereskipped = false; boolean isBinary = false; // true if length is non-zero and non-printable // characters are encountered @@ -98,7 +99,8 @@ public class IdentifyFile } while ((data = source.nextLine()) != null) { - length += data.trim().length(); + bytesRead += data.length(); + trimmedLength += data.trim().length(); if (!lineswereskipped) { for (int i = 0; !isBinary && i < data.length(); i++) @@ -134,7 +136,13 @@ public class IdentifyFile if (data.startsWith("##GFF-VERSION")) { - reply = GFF3File; + // GFF - possibly embedded in a Jalview features file! + reply = FeaturesFile; + break; + } + if (looksLikeFeatureData(data)) + { + reply = FeaturesFile; break; } if (data.indexOf("# STOCKHOLM") > -1) @@ -245,6 +253,7 @@ public class IdentifyFile if ((data.indexOf("<") > -1)) // possible Markup Language data i.e HTML, // RNAML, XML { + // FIXME this is nuts - it consumes the rest of the file if no match boolean identified = false; do { @@ -316,23 +325,13 @@ public class IdentifyFile reply = PhylipFile.FILE_DESC; break; } - - /* - * // TODO comment out SimpleBLAST identification for Jalview 2.4.1 else - * if (!lineswereskipped && data.indexOf("BLAST")<4) { reply = - * "SimpleBLAST"; break; - * - * } // end comments for Jalview 2.4.1 - */ - else if (!lineswereskipped && data.charAt(0) != '*' - && data.charAt(0) != ' ' - && data.indexOf(":") < data.indexOf(",")) // && - // data.indexOf(",") -1 + && commaPos > -1 && colonPos < commaPos; + // && data.indexOf(",")