Further tweaks to get tests passing
[jalview.git] / src / jalview / io / IdentifyFile.java
index 89fc3cd..f8d8415 100755 (executable)
@@ -30,8 +30,6 @@ import java.io.IOException;
  */
 public class IdentifyFile
 {
-  public static final String FeaturesFile = "GFF or Jalview features";
-
   /**
    * Identify a datasource's file content.
    *
@@ -74,6 +72,13 @@ public class IdentifyFile
     // preserves original behaviour prior to version 2.3
   }
 
+  public FileFormatI identify(AlignmentFileI file, boolean closeSource)
+          throws IOException
+  {
+    FileParse fp = new FileParse(file.getInFile(), file.getDataSourceType());
+    return identify(fp, closeSource);
+  }
+
   /**
    * Identify contents of source, closing it or resetting source to start
    * afterwards.
@@ -343,6 +348,7 @@ public class IdentifyFile
               .println("File Identification failed! - Empty file was read.");
       throw new FileFormatException("EMPTY DATA FILE");
     }
+    System.out.println("File format identified as " + reply.toString());
     return reply;
   }