Class OneOfPosition
source code
AbstractPosition --+
|
OneOfPosition
Specify a position where the location can be multiple positions.
This models the GenBank 'one-of(1888,1901)' function, and tries to
make this fit within the Biopython Position models. In our case the
position of the "one-of" is set as the lowest choice, and the
extension is the range to the highest choice.
__init__(self,
position_list)
(Constructor)
| source code
|
Initialie with a set of posssible positions.
position_list is a list of AbstractPosition derived objects,
specifying possible locations.
- Overrides:
AbstractPosition.__init__
|