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