Add another parser for local files with metainformation
[proteocache.git] / datadb / compbio / cassandra / JpredParser.java
diff --git a/datadb/compbio/cassandra/JpredParser.java b/datadb/compbio/cassandra/JpredParser.java
new file mode 100644 (file)
index 0000000..56f3770
--- /dev/null
@@ -0,0 +1,14 @@
+package compbio.cassandra;
+
+public interface JpredParser {
+
+       /*
+        * Defines a source file with metainformation of Jpred Jobs
+        **/
+       void setSource (String newsourceprefix);
+       
+       /*
+        * Makes real parsing of the source file
+        **/
+       void Parsing(String source, int nDays);
+}