package jalview.ws.dbsources; import jalview.datamodel.AlignmentI; public class YeastMine extends Intermine { public YeastMine() { this.name = "YeastMine"; this.baseUrl = "http://yeastmine.yeastgenome.org/yeastmine"; this.domain = "4932"; this.testQuery = "chrI"; } @Override public AlignmentI getSequenceRecords(String queries) throws Exception { return getAlignmentData(baseUrl, queries, domain, seqStart, seqEnd); } }