| Interface | Description |
|---|---|
| TaxaList |
| Class | Description |
|---|---|
| IdentifierSynonymizer |
User: Ed Date: Mar 30, 2005 Time: 1:39:47 PM
|
| TaxaListBuilder |
A builder for creating immutable
instances. Example: TaxaListBuilder tlb=new TaxaListBuilder();
for (int i = 0; i < 10; i++) {
Taxon at= new Taxon.Builder("Z"+i+":Line:mays:Zea")
.inbreedF(0.99f)
.parents("B73","B97")
.pedigree("(B73xB97)S6I1")
.build();
tlb.add(at);
}
TaxaList tl=tlb.build(); |
| TaxaListIOUtils |
Utilities for reading and writing IdGroup and PedigreeIdGroups.
|
| TaxaListTableReport | |
| TaxaListUtils | |
| TaxaTissueDist | |
| Taxon |
An identifier for some sampled data. This will most often be for example, the accession number of a DNA sequence, or the taxonomic name that the sequence represents, et cetera. The generally used class for defining a taxon. Contains its name, plus a series of optional annotations. Use the builder to create immutable instances.
|