27020ecd99f829a56fb1caeaf1c30c756c4e4553
[proteocache.git] / datadb / compbio / cassandra / JpredParser.java
1 package compbio.cassandra;
2
3 import java.io.IOException;
4
5 public interface JpredParser {
6
7         /*
8          * Defines a source file with metainformation of Jpred Jobs
9          **/
10         void setSource (String newsourceprefix);
11         
12         /*
13          * Makes real parsing of the source file
14          **/
15         void Parsing(String source, int nDays) throws IOException;
16 }