package compbio.cassandra; import java.io.IOException; 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) throws IOException; }