/* * Genoogle: Similar DNA Sequences Searching Engine and Tools. (http://genoogle.pih.bio.br) * Copyright (C) 2008,2009 Felipe Fernandes Albrecht (felipe.albrecht@gmail.com) * * For further information check the LICENSE file. */ package bio.pih.genoogle.search; import java.util.concurrent.Callable; import bio.pih.genoogle.io.AbstractSequenceDataBank; import bio.pih.genoogle.search.results.SearchResults; /** * This interface defines the methods that are presents in a similar sequence * searcher. * * The doSearch method works asynchronous, returning an unique identifier for * the solicited search. The verifySearch return the current status of the * search. Others methods are for * * @author albrecht */ public abstract class AbstractSearcher implements Callable<SearchResults> { protected final long id; protected final SearchParams sp; protected final SearchResults sr; /** * @param id * @param sp * Parameter of the search * @param databank * Sequence data bank where the search will be performed. */ public AbstractSearcher(long id, SearchParams sp, AbstractSequenceDataBank databank) { this.id = id; this.sp = sp; this.sr = new SearchResults(sp); } /** * @return the results of the search */ public SearchResults getSearchResults() { return sr; } }