Interface ChromosomeService
-
- All Superinterfaces:
BaseReadOnlyService<Chromosome>
- All Known Implementing Classes:
ChromosomeServiceImpl
public interface ChromosomeService extends BaseReadOnlyService<Chromosome>
- Author:
- kelsey
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<Chromosome>
find(String name, Taxon taxon)
Locate by name e.g.-
Methods inherited from interface ubic.gemma.persistence.service.BaseReadOnlyService
countAll, find, findOrFail, getElementClass, load, load, loadAll, loadOrFail, loadOrFail, loadOrFail
-
-
-
-
Method Detail
-
find
Collection<Chromosome> find(String name, Taxon taxon)
Locate by name e.g. 'X'.- Parameters:
taxon
- taxon to look atname
- the name to look for, e.g. 'X'- Returns:
- all matching chromosomes
-
-