Package Bio :: Module SeqFeature :: Class AfterPosition
[hide private]
[frames] | no frames]

Class AfterPosition

source code

AbstractPosition --+
                   |
                  AfterPosition

Specify a position where the actual location is found after it.

Arguments: o position - The lower boundary of where the location can occur. o extension - An optional argument which must be zero since we don't have an extension. The argument is provided so that the same number of arguments can be passed to all position types.

This is used to specify positions like (>10..100) where the location occurs somewhere after position 10.

Instance Methods [hide private]
 
__init__(self, position, extension=0) source code
 
__repr__(self)
A string representation of the location for debugging.
source code
 
__str__(self) source code

Inherited from AbstractPosition: __cmp__

Method Details [hide private]

__init__(self, position, extension=0)
(Constructor)

source code 
Overrides: AbstractPosition.__init__

__repr__(self)
(Representation operator)

source code 

A string representation of the location for debugging.

Overrides: AbstractPosition.__repr__