Bio.SeqFeature module

Represent a Sequence Feature holding info about a part of a sequence.

This is heavily modeled after the Biocorba SeqFeature objects, and may be pretty biased towards GenBank stuff since I’m writing it for the GenBank parser output…

What’s here:

Base class to hold a Feature

Classes:
  • SeqFeature

Hold information about a Reference

This is an attempt to create a General class to hold Reference type information.

Classes:
  • Reference

Specify locations of a feature on a Sequence

This aims to handle, in Ewan Birney’s words, ‘the dreaded fuzziness issue’. This has the advantages of allowing us to handle fuzzy stuff in case anyone needs it, and also be compatible with BioPerl etc and BioSQL.

Classes:
  • FeatureLocation - Specify the start and end location of a feature.

  • CompoundLocation - Collection of FeatureLocation objects (for joins etc).

  • ExactPosition - Specify the position as being exact.

  • WithinPosition - Specify a position occurring within some range.

  • BetweenPosition - Specify a position occurring between a range (OBSOLETE?).

  • BeforePosition - Specify the position as being found before some base.

  • AfterPosition - Specify the position as being found after some base.

  • OneOfPosition - Specify a position where the location can be multiple positions.

  • UncertainPosition - Specify a specific position which is uncertain.

  • UnknownPosition - Represents missing information like ‘?’ in UniProt.

class Bio.SeqFeature.SeqFeature(location=None, type='', location_operator='', strand=None, id='<unknown id>', qualifiers=None, sub_features=None, ref=None, ref_db=None)

Bases: object

Represent a Sequence Feature on an object.

Attributes:
  • location - the location of the feature on the sequence (FeatureLocation)

  • type - the specified type of the feature (ie. CDS, exon, repeat…)

  • location_operator - a string specifying how this SeqFeature may be related to others. For example, in the example GenBank feature shown below, the location_operator would be “join”. This is a proxy for feature.location.operator and only applies to compound locations.

  • strand - A value specifying on which strand (of a DNA sequence, for instance) the feature deals with. 1 indicates the plus strand, -1 indicates the minus strand, 0 indicates stranded but unknown (? in GFF3), while the default of None indicates that strand doesn’t apply (dot in GFF3, e.g. features on proteins). Note this is a shortcut for accessing the strand property of the feature’s location.

  • id - A string identifier for the feature.

  • ref - A reference to another sequence. This could be an accession number for some different sequence. Note this is a shortcut for the reference property of the feature’s location.

  • ref_db - A different database for the reference accession number. Note this is a shortcut for the reference property of the location

  • qualifiers - A dictionary of qualifiers on the feature. These are analogous to the qualifiers from a GenBank feature table. The keys of the dictionary are qualifier names, the values are the qualifier values. As of Biopython 1.69 this is an ordered dictionary.

__init__(self, location=None, type='', location_operator='', strand=None, id='<unknown id>', qualifiers=None, sub_features=None, ref=None, ref_db=None)

Initialize a SeqFeature on a Sequence.

location can either be a FeatureLocation (with strand argument also given if required), or None.

e.g. With no strand, on the forward strand, and on the reverse strand:

>>> from Bio.SeqFeature import SeqFeature, FeatureLocation
>>> f1 = SeqFeature(FeatureLocation(5, 10), type="domain")
>>> f1.strand == f1.location.strand == None
True
>>> f2 = SeqFeature(FeatureLocation(7, 110, strand=1), type="CDS")
>>> f2.strand == f2.location.strand == +1
True
>>> f3 = SeqFeature(FeatureLocation(9, 108, strand=-1), type="CDS")
>>> f3.strand == f3.location.strand == -1
True

An invalid strand will trigger an exception:

>>> f4 = SeqFeature(FeatureLocation(50, 60), strand=2)
Traceback (most recent call last):
   ...
ValueError: Strand should be +1, -1, 0 or None, not 2

Similarly if set via the FeatureLocation directly:

>>> loc4 = FeatureLocation(50, 60, strand=2)
Traceback (most recent call last):
   ...
ValueError: Strand should be +1, -1, 0 or None, not 2

For exact start/end positions, an integer can be used (as shown above) as shorthand for the ExactPosition object. For non-exact locations, the FeatureLocation must be specified via the appropriate position objects.

Note that the strand, ref and ref_db arguments to the SeqFeature are now obsolete and will be deprecated in a future release (which will give warning messages) and later removed. Set them via the location object instead.

Note that location_operator and sub_features arguments can no longer be used, instead do this via the CompoundLocation object.

property strand

Feature’s strand

This is a shortcut for feature.location.strand

property ref

Feature location reference (e.g. accession).

This is a shortcut for feature.location.ref

property ref_db

Feature location reference’s database.

This is a shortcut for feature.location.ref_db

property location_operator

Location operator for compound locations (e.g. join).

__repr__(self)

Represent the feature as a string for debugging.

__str__(self)

Return the full feature as a python string.

extract(self, parent_sequence)

Extract the feature’s sequence from supplied parent sequence.

The parent_sequence can be a Seq like object or a string, and will generally return an object of the same type. The exception to this is a MutableSeq as the parent sequence will return a Seq object.

This should cope with complex locations including complements, joins and fuzzy positions. Even mixed strand features should work! This also covers features on protein sequences (e.g. domains), although here reverse strand features are not permitted.

>>> from Bio.Seq import Seq
>>> from Bio.Alphabet import generic_protein
>>> from Bio.SeqFeature import SeqFeature, FeatureLocation
>>> seq = Seq("MKQHKAMIVALIVICITAVVAAL", generic_protein)
>>> f = SeqFeature(FeatureLocation(8, 15), type="domain")
>>> f.extract(seq)
Seq('VALIVIC', ProteinAlphabet())

If the FeatureLocation is None, e.g. when parsing invalid locus locations in the GenBank parser, extract() will raise a ValueError.

>>> from Bio.Seq import Seq
>>> from Bio.SeqFeature import SeqFeature
>>> seq = Seq("MKQHKAMIVALIVICITAVVAAL", generic_protein)
>>> f = SeqFeature(None, type="domain")
>>> f.extract(seq)
Traceback (most recent call last):
   ...
ValueError: The feature's .location is None. Check the sequence file for a valid location.

Note - currently only compound features of type “join” are supported.

translate(self, parent_sequence, table='Standard', start_offset=None, stop_symbol='*', to_stop=False, cds=None, gap=None)

Get a translation of the feature’s sequence.

This method is intended for CDS or other features that code proteins and is a shortcut that will both extract the feature and translate it, taking into account the codon_start and transl_table qualifiers, if they are present. If they are not present the value of the arguments “table” and “start_offset” are used.

The “cds” parameter is set to “True” if the feature is of type “CDS” but can be overridden by giving an explicit argument.

The arguments stop_symbol, to_stop and gap have the same meaning as Seq.translate, refer to that documentation for further information.

Arguments:
  • parent_sequence - This method will translate DNA or RNA sequences, and those with a nucleotide or generic alphabet. Trying to translate a protein sequence raises an exception.

  • table - Which codon table to use if there is no transl_table qualifier for this feature. This can be either a name (string), an NCBI identifier (integer), or a CodonTable object (useful for non-standard genetic codes). This defaults to the “Standard” table.

  • start_offset - offset at which the first complete codon of a coding feature can be found, relative to the first base of that feature. Has a valid value of 0, 1 or 2. NOTE: this uses python’s 0-based numbering whereas the codon_start qualifier in files from NCBI use 1-based numbering. Will override a codon_start qualifier

>>> from Bio.Seq import Seq
>>> from Bio.Alphabet import generic_dna
>>> from Bio.SeqFeature import SeqFeature, FeatureLocation
>>> seq = Seq("GGTTACACTTACCGATAATGTCTCTGATGA", generic_dna)
>>> f = SeqFeature(FeatureLocation(0, 30), type="CDS")
>>> f.qualifiers['transl_table'] = [11]

Note that features of type CDS are subject to the usual checks at translation. But you can override this behaviour by giving explicit arguments:

>>> f.translate(seq, cds=False)
Seq('GYTYR*CL**', HasStopCodon(ExtendedIUPACProtein(), '*'))

Now use the start_offset argument to change the frame. Note this uses python 0-based numbering.

>>> f.translate(seq, start_offset=1, cds=False)
Seq('VTLTDNVSD', ExtendedIUPACProtein())

Alternatively use the codon_start qualifier to do the same thing. Note: this uses 1-based numbering, which is found in files from NCBI.

>>> f.qualifiers['codon_start'] = [2]
>>> f.translate(seq, cds=False)
Seq('VTLTDNVSD', ExtendedIUPACProtein())
__bool__(self)

Boolean value of an instance of this class (True).

This behaviour is for backwards compatibility, since until the __len__ method was added, a SeqFeature always evaluated as True.

Note that in comparison, Seq objects, strings, lists, etc, will all evaluate to False if they have length zero.

WARNING: The SeqFeature may in future evaluate to False when its length is zero (in order to better match normal python behaviour)!

__len__(self)

Return the length of the region where the feature is located.

>>> from Bio.Seq import Seq
>>> from Bio.Alphabet import generic_protein
>>> from Bio.SeqFeature import SeqFeature, FeatureLocation
>>> seq = Seq("MKQHKAMIVALIVICITAVVAAL", generic_protein)
>>> f = SeqFeature(FeatureLocation(8, 15), type="domain")
>>> len(f)
7
>>> f.extract(seq)
Seq('VALIVIC', ProteinAlphabet())
>>> len(f.extract(seq))
7

This is a proxy for taking the length of the feature’s location:

>>> len(f.location)
7

For simple features this is the same as the region spanned (end position minus start position using Pythonic counting). However, for a compound location (e.g. a CDS as the join of several exons) the gaps are not counted (e.g. introns). This ensures that len(f) matches len(f.extract(parent_seq)), and also makes sure things work properly with features wrapping the origin etc.

__iter__(self)

Iterate over the parent positions within the feature.

The iteration order is strand aware, and can be thought of as moving along the feature using the parent sequence coordinates:

>>> from Bio.SeqFeature import SeqFeature, FeatureLocation
>>> f = SeqFeature(FeatureLocation(5, 10), type="domain", strand=-1)
>>> len(f)
5
>>> for i in f: print(i)
9
8
7
6
5
>>> list(f)
[9, 8, 7, 6, 5]

This is a proxy for iterating over the location,

>>> list(f.location)
[9, 8, 7, 6, 5]
__contains__(self, value)

Check if an integer position is within the feature.

>>> from Bio.SeqFeature import SeqFeature, FeatureLocation
>>> f = SeqFeature(FeatureLocation(5, 10), type="domain", strand=-1)
>>> len(f)
5
>>> [i for i in range(15) if i in f]
[5, 6, 7, 8, 9]

For example, to see which features include a SNP position, you could use this:

>>> from Bio import SeqIO
>>> record = SeqIO.read("GenBank/NC_000932.gb", "gb")
>>> for f in record.features:
...     if 1750 in f:
...         print("%s %s" % (f.type, f.location))
source [0:154478](+)
gene [1716:4347](-)
tRNA join{[4310:4347](-), [1716:1751](-)}

Note that for a feature defined as a join of several subfeatures (e.g. the union of several exons) the gaps are not checked (e.g. introns). In this example, the tRNA location is defined in the GenBank file as complement(join(1717..1751,4311..4347)), so that position 1760 falls in the gap:

>>> for f in record.features:
...     if 1760 in f:
...         print("%s %s" % (f.type, f.location))
source [0:154478](+)
gene [1716:4347](-)

Note that additional care may be required with fuzzy locations, for example just before a BeforePosition:

>>> from Bio.SeqFeature import SeqFeature, FeatureLocation
>>> from Bio.SeqFeature import BeforePosition
>>> f = SeqFeature(FeatureLocation(BeforePosition(3), 8), type="domain")
>>> len(f)
5
>>> [i for i in range(10) if i in f]
[3, 4, 5, 6, 7]

Note that is is a proxy for testing membership on the location.

>>> [i for i in range(10) if i in f.location]
[3, 4, 5, 6, 7]
class Bio.SeqFeature.Reference

Bases: object

Represent a Generic Reference object.

Attributes:
  • location - A list of Location objects specifying regions of the sequence that the references correspond to. If no locations are specified, the entire sequence is assumed.

  • authors - A big old string, or a list split by author, of authors for the reference.

  • title - The title of the reference.

  • journal - Journal the reference was published in.

  • medline_id - A medline reference for the article.

  • pubmed_id - A pubmed reference for the article.

  • comment - A place to stick any comments about the reference.

__init__(self)

Initialize the class.

__str__(self)

Return the full Reference object as a python string.

__repr__(self)

Represent the Reference object as a string for debugging.

__eq__(self, other)

Check if two Reference objects should be considered equal.

Note prior to Biopython 1.70 the location was not compared, as until then __eq__ for the FeatureLocation class was not defined.

__hash__ = None
class Bio.SeqFeature.FeatureLocation(start, end, strand=None, ref=None, ref_db=None)

Bases: object

Specify the location of a feature along a sequence.

The FeatureLocation is used for simple continuous features, which can be described as running from a start position to and end position (optionally with a strand and reference information). More complex locations made up from several non-continuous parts (e.g. a coding sequence made up of several exons) are described using a SeqFeature with a CompoundLocation.

Note that the start and end location numbering follow Python’s scheme, thus a GenBank entry of 123..150 (one based counting) becomes a location of [122:150] (zero based counting).

>>> from Bio.SeqFeature import FeatureLocation
>>> f = FeatureLocation(122, 150)
>>> print(f)
[122:150]
>>> print(f.start)
122
>>> print(f.end)
150
>>> print(f.strand)
None

Note the strand defaults to None. If you are working with nucleotide sequences you’d want to be explicit if it is the forward strand:

>>> from Bio.SeqFeature import FeatureLocation
>>> f = FeatureLocation(122, 150, strand=+1)
>>> print(f)
[122:150](+)
>>> print(f.strand)
1

Note that for a parent sequence of length n, the FeatureLocation start and end must satisfy the inequality 0 <= start <= end <= n. This means even for features on the reverse strand of a nucleotide sequence, we expect the ‘start’ coordinate to be less than the ‘end’.

>>> from Bio.SeqFeature import FeatureLocation
>>> r = FeatureLocation(122, 150, strand=-1)
>>> print(r)
[122:150](-)
>>> print(r.start)
122
>>> print(r.end)
150
>>> print(r.strand)
-1

i.e. Rather than thinking of the ‘start’ and ‘end’ biologically in a strand aware manner, think of them as the ‘left most’ or ‘minimum’ boundary, and the ‘right most’ or ‘maximum’ boundary of the region being described. This is particularly important with compound locations describing non-continuous regions.

In the example above we have used standard exact positions, but there are also specialised position objects used to represent fuzzy positions as well, for example a GenBank location like complement(<123..150) would use a BeforePosition object for the start.

__init__(self, start, end, strand=None, ref=None, ref_db=None)

Initialize the class.

start and end arguments specify the values where the feature begins and ends. These can either by any of the *Position objects that inherit from AbstractPosition, or can just be integers specifying the position. In the case of integers, the values are assumed to be exact and are converted in ExactPosition arguments. This is meant to make it easy to deal with non-fuzzy ends.

i.e. Short form:

>>> from Bio.SeqFeature import FeatureLocation
>>> loc = FeatureLocation(5, 10, strand=-1)
>>> print(loc)
[5:10](-)

Explicit form:

>>> from Bio.SeqFeature import FeatureLocation, ExactPosition
>>> loc = FeatureLocation(ExactPosition(5), ExactPosition(10), strand=-1)
>>> print(loc)
[5:10](-)

Other fuzzy positions are used similarly,

>>> from Bio.SeqFeature import FeatureLocation
>>> from Bio.SeqFeature import BeforePosition, AfterPosition
>>> loc2 = FeatureLocation(BeforePosition(5), AfterPosition(10), strand=-1)
>>> print(loc2)
[<5:>10](-)

For nucleotide features you will also want to specify the strand, use 1 for the forward (plus) strand, -1 for the reverse (negative) strand, 0 for stranded but strand unknown (? in GFF3), or None for when the strand does not apply (dot in GFF3), e.g. features on proteins.

>>> loc = FeatureLocation(5, 10, strand=+1)
>>> print(loc)
[5:10](+)
>>> print(loc.strand)
1

Normally feature locations are given relative to the parent sequence you are working with, but an explicit accession can be given with the optional ref and db_ref strings:

>>> loc = FeatureLocation(105172, 108462, ref="AL391218.9", strand=1)
>>> print(loc)
AL391218.9[105172:108462](+)
>>> print(loc.ref)
AL391218.9
property strand

Strand of the location (+1, -1, 0 or None).

__str__(self)

Return a representation of the FeatureLocation object (with python counting).

For the simple case this uses the python splicing syntax, [122:150] (zero based counting) which GenBank would call 123..150 (one based counting).

__repr__(self)

Represent the FeatureLocation object as a string for debugging.

__add__(self, other)

Combine location with another FeatureLocation object, or shift it.

You can add two feature locations to make a join CompoundLocation:

>>> from Bio.SeqFeature import FeatureLocation
>>> f1 = FeatureLocation(5, 10)
>>> f2 = FeatureLocation(20, 30)
>>> combined = f1 + f2
>>> print(combined)
join{[5:10], [20:30]}

This is thus equivalent to:

>>> from Bio.SeqFeature import CompoundLocation
>>> join = CompoundLocation([f1, f2])
>>> print(join)
join{[5:10], [20:30]}

You can also use sum(…) in this way:

>>> join = sum([f1, f2])
>>> print(join)
join{[5:10], [20:30]}

Furthermore, you can combine a FeatureLocation with a CompoundLocation in this way.

Separately, adding an integer will give a new FeatureLocation with its start and end offset by that amount. For example:

>>> print(f1)
[5:10]
>>> print(f1 + 100)
[105:110]
>>> print(200 + f1)
[205:210]

This can be useful when editing annotation.

__radd__(self, other)

Add a feature locationanother FeatureLocation object to the left.

__nonzero__(self)

Return True regardless of the length of the feature.

This behaviour is for backwards compatibility, since until the __len__ method was added, a FeatureLocation always evaluated as True.

Note that in comparison, Seq objects, strings, lists, etc, will all evaluate to False if they have length zero.

WARNING: The FeatureLocation may in future evaluate to False when its length is zero (in order to better match normal python behaviour)!

__len__(self)

Return the length of the region described by the FeatureLocation object.

Note that extra care may be needed for fuzzy locations, e.g.

>>> from Bio.SeqFeature import FeatureLocation
>>> from Bio.SeqFeature import BeforePosition, AfterPosition
>>> loc = FeatureLocation(BeforePosition(5), AfterPosition(10))
>>> len(loc)
5
__contains__(self, value)

Check if an integer position is within the FeatureLocation object.

Note that extra care may be needed for fuzzy locations, e.g.

>>> from Bio.SeqFeature import FeatureLocation
>>> from Bio.SeqFeature import BeforePosition, AfterPosition
>>> loc = FeatureLocation(BeforePosition(5), AfterPosition(10))
>>> len(loc)
5
>>> [i for i in range(15) if i in loc]
[5, 6, 7, 8, 9]
__iter__(self)

Iterate over the parent positions within the FeatureLocation object.

>>> from Bio.SeqFeature import FeatureLocation
>>> from Bio.SeqFeature import BeforePosition, AfterPosition
>>> loc = FeatureLocation(BeforePosition(5), AfterPosition(10))
>>> len(loc)
5
>>> for i in loc: print(i)
5
6
7
8
9
>>> list(loc)
[5, 6, 7, 8, 9]
>>> [i for i in range(15) if i in loc]
[5, 6, 7, 8, 9]

Note this is strand aware:

>>> loc = FeatureLocation(BeforePosition(5), AfterPosition(10), strand = -1)
>>> list(loc)
[9, 8, 7, 6, 5]
__eq__(self, other)

Implement equality by comparing all the location attributes.

property parts

Read only list of sections (always one, the FeatureLocation object).

This is a convenience property allowing you to write code handling both simple FeatureLocation objects (with one part) and more complex CompoundLocation objects (with multiple parts) interchangeably.

property start

Start location - left most (minimum) value, regardless of strand.

Read only, returns an integer like position object, possibly a fuzzy position.

property end

End location - right most (maximum) value, regardless of strand.

Read only, returns an integer like position object, possibly a fuzzy position.

property nofuzzy_start

Start position (integer, approximated if fuzzy, read only) (OBSOLETE).

This is now an alias for int(feature.start), which should be used in preference – unless you are trying to support old versions of Biopython.

property nofuzzy_end

End position (integer, approximated if fuzzy, read only) (OBSOLETE).

This is now an alias for int(feature.end), which should be used in preference – unless you are trying to support old versions of Biopython.

extract(self, parent_sequence)

Extract the sequence from supplied parent sequence using the FeatureLocation object.

The parent_sequence can be a Seq like object or a string, and will generally return an object of the same type. The exception to this is a MutableSeq as the parent sequence will return a Seq object.

>>> from Bio.Seq import Seq
>>> from Bio.Alphabet import generic_protein
>>> from Bio.SeqFeature import FeatureLocation
>>> seq = Seq("MKQHKAMIVALIVICITAVVAAL", generic_protein)
>>> feature_loc = FeatureLocation(8, 15)
>>> feature_loc.extract(seq)
Seq('VALIVIC', ProteinAlphabet())
__hash__ = None
class Bio.SeqFeature.CompoundLocation(parts, operator='join')

Bases: object

For handling joins etc where a feature location has several parts.

__init__(self, parts, operator='join')

Initialize the class.

>>> from Bio.SeqFeature import FeatureLocation, CompoundLocation
>>> f1 = FeatureLocation(10, 40, strand=+1)
>>> f2 = FeatureLocation(50, 59, strand=+1)
>>> f = CompoundLocation([f1, f2])
>>> len(f) == len(f1) + len(f2) == 39 == len(list(f))
True
>>> print(f.operator)
join
>>> 5 in f
False
>>> 15 in f
True
>>> f.strand
1

Notice that the strand of the compound location is computed automatically - in the case of mixed strands on the sub-locations the overall strand is set to None.

>>> f = CompoundLocation([FeatureLocation(3, 6, strand=+1),
...                       FeatureLocation(10, 13, strand=-1)])
>>> print(f.strand)
None
>>> len(f)
6
>>> list(f)
[3, 4, 5, 12, 11, 10]

The example above doing list(f) iterates over the coordinates within the feature. This allows you to use max and min on the location, to find the range covered:

>>> min(f)
3
>>> max(f)
12

More generally, you can use the compound location’s start and end which give the full span covered, 0 <= start <= end <= full sequence length.

>>> f.start == min(f)
True
>>> f.end == max(f) + 1
True

This is consistent with the behaviour of the simple FeatureLocation for a single region, where again the ‘start’ and ‘end’ do not necessarily give the biological start and end, but rather the ‘minimal’ and ‘maximal’ coordinate boundaries.

Note that adding locations provides a more intuitive method of construction:

>>> f = FeatureLocation(3, 6, strand=+1) + FeatureLocation(10, 13, strand=-1)
>>> len(f)
6
>>> list(f)
[3, 4, 5, 12, 11, 10]
__str__(self)

Return a representation of the CompoundLocation object (with python counting).

__repr__(self)

Represent the CompoundLocation object as string for debugging.

property strand

Overall strand of the compound location.

If all the parts have the same strand, that is returned. Otherwise for mixed strands, this returns None.

>>> from Bio.SeqFeature import FeatureLocation, CompoundLocation
>>> f1 = FeatureLocation(15, 17, strand=1)
>>> f2 = FeatureLocation(20, 30, strand=-1)
>>> f = f1 + f2
>>> f1.strand
1
>>> f2.strand
-1
>>> f.strand
>>> f.strand is None
True

If you set the strand of a CompoundLocation, this is applied to all the parts - use with caution:

>>> f.strand = 1
>>> f1.strand
1
>>> f2.strand
1
>>> f.strand
1
__add__(self, other)

Combine locations, or shift the location by an integer offset.

>>> from Bio.SeqFeature import FeatureLocation, CompoundLocation
>>> f1 = FeatureLocation(15, 17) + FeatureLocation(20, 30)
>>> print(f1)
join{[15:17], [20:30]}

You can add another FeatureLocation:

>>> print(f1 + FeatureLocation(40, 50))
join{[15:17], [20:30], [40:50]}
>>> print(FeatureLocation(5, 10) + f1)
join{[5:10], [15:17], [20:30]}

You can also add another CompoundLocation:

>>> f2 = FeatureLocation(40, 50) + FeatureLocation(60, 70)
>>> print(f2)
join{[40:50], [60:70]}
>>> print(f1 + f2)
join{[15:17], [20:30], [40:50], [60:70]}

Also, as with the FeatureLocation, adding an integer shifts the location’s co-ordinates by that offset:

>>> print(f1 + 100)
join{[115:117], [120:130]}
>>> print(200 + f1)
join{[215:217], [220:230]}
>>> print(f1 + (-5))
join{[10:12], [15:25]}
__radd__(self, other)

Add a feature to the left.

__contains__(self, value)

Check if an integer position is within the CompoundLocation object.

__nonzero__(self)

Return True regardless of the length of the feature.

This behaviour is for backwards compatibility, since until the __len__ method was added, a FeatureLocation always evaluated as True.

Note that in comparison, Seq objects, strings, lists, etc, will all evaluate to False if they have length zero.

WARNING: The FeatureLocation may in future evaluate to False when its length is zero (in order to better match normal python behaviour)!

__len__(self)

Return the length of the CompoundLocation object.

__iter__(self)

Iterate over the parent positions within the CompoundLocation object.

__eq__(self, other)

Check if all parts of CompoundLocation are equal to all parts of other CompoundLocation.

property start

Start location - left most (minimum) value, regardless of strand.

Read only, returns an integer like position object, possibly a fuzzy position.

For the special case of a CompoundLocation wrapping the origin of a circular genome, this will return zero.

property end

End location - right most (maximum) value, regardless of strand.

Read only, returns an integer like position object, possibly a fuzzy position.

For the special case of a CompoundLocation wrapping the origin of a circular genome this will match the genome length (minus one given how Python counts from zero).

property nofuzzy_start

Start position (integer, approximated if fuzzy, read only) (OBSOLETE).

This is an alias for int(feature.start), which should be used in preference – unless you are trying to support old versions of Biopython.

property nofuzzy_end

End position (integer, approximated if fuzzy, read only) (OBSOLETE).

This is an alias for int(feature.end), which should be used in preference – unless you are trying to support old versions of Biopython.

property ref

Not present in CompoundLocation, dummy method for API compatibility.

property ref_db

Not present in CompoundLocation, dummy method for API compatibility.

extract(self, parent_sequence)

Extract the sequence from supplied parent sequence using the CompoundLocation object.

The parent_sequence can be a Seq like object or a string, and will generally return an object of the same type. The exception to this is a MutableSeq as the parent sequence will return a Seq object.

>>> from Bio.Seq import Seq
>>> from Bio.Alphabet import generic_protein
>>> from Bio.SeqFeature import FeatureLocation, CompoundLocation
>>> seq = Seq("MKQHKAMIVALIVICITAVVAAL", generic_protein)
>>> fl1 = FeatureLocation(2, 8)
>>> fl2 = FeatureLocation(10, 15)
>>> fl3 = CompoundLocation([fl1,fl2])
>>> fl3.extract(seq)
Seq('QHKAMILIVIC', ProteinAlphabet())
__hash__ = None
class Bio.SeqFeature.AbstractPosition

Bases: object

Abstract base class representing a position.

__repr__(self)

Represent the AbstractPosition object as a string for debugging.

class Bio.SeqFeature.ExactPosition(position, extension=0)

Bases: int, Bio.SeqFeature.AbstractPosition

Specify the specific position of a boundary.

Arguments:
  • position - The position of the boundary.

  • 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.

In this case, there is no fuzziness associated with the position.

>>> p = ExactPosition(5)
>>> p
ExactPosition(5)
>>> print(p)
5
>>> isinstance(p, AbstractPosition)
True
>>> isinstance(p, int)
True

Integer comparisons and operations should work as expected:

>>> p == 5
True
>>> p < 6
True
>>> p <= 5
True
>>> p + 10
15
static __new__(cls, position, extension=0)

Create an ExactPosition object.

__str__(self)

Return a representation of the ExactPosition object (with python counting).

__repr__(self)

Represent the ExactPosition object as a string for debugging.

property position

Legacy attribute to get position as integer (OBSOLETE).

property extension

Not present in this object, return zero (OBSOLETE).

class Bio.SeqFeature.UncertainPosition(position, extension=0)

Bases: Bio.SeqFeature.ExactPosition

Specify a specific position which is uncertain.

This is used in UniProt, e.g. ?222 for uncertain position 222, or in the XML format explicitly marked as uncertain. Does not apply to GenBank/EMBL.

class Bio.SeqFeature.UnknownPosition

Bases: Bio.SeqFeature.AbstractPosition

Specify a specific position which is unknown (has no position).

This is used in UniProt, e.g. ? or in the XML as unknown.

__repr__(self)

Represent the UnknownPosition object as a string for debugging.

__hash__(self)

Return the hash value of the UnknownPosition object.

property position

Legacy attribute to get location (None) (OBSOLETE).

property extension

Legacy attribute to get extension (zero) as integer (OBSOLETE).

class Bio.SeqFeature.WithinPosition(position, left, right)

Bases: int, Bio.SeqFeature.AbstractPosition

Specify the position of a boundary within some coordinates.

Arguments: - position - The default integer position - left - The start (left) position of the boundary - right - The end (right) position of the boundary

This allows dealing with a location like ((1.4)..100). This indicates that the start of the sequence is somewhere between 1 and 4. Since this is a start coordinate, it should acts like it is at position 1 (or in Python counting, 0).

>>> p = WithinPosition(10, 10, 13)
>>> p
WithinPosition(10, left=10, right=13)
>>> print(p)
(10.13)
>>> int(p)
10

Basic integer comparisons and operations should work as though this were a plain integer:

>>> p == 10
True
>>> p in [9, 10, 11]
True
>>> p < 11
True
>>> p + 10
20
>>> isinstance(p, WithinPosition)
True
>>> isinstance(p, AbstractPosition)
True
>>> isinstance(p, int)
True

Note this also applies for comparison to other position objects, where again the integer behaviour is used:

>>> p == 10
True
>>> p == ExactPosition(10)
True
>>> p == BeforePosition(10)
True
>>> p == AfterPosition(10)
True

If this were an end point, you would want the position to be 13:

>>> p2 = WithinPosition(13, 10, 13)
>>> p2
WithinPosition(13, left=10, right=13)
>>> print(p2)
(10.13)
>>> int(p2)
13
>>> p2 == 13
True
>>> p2 == ExactPosition(13)
True

The old legacy properties of position and extension give the starting/lower/left position as an integer, and the distance to the ending/higher/right position as an integer. Note that the position object will act like either the left or the right end-point depending on how it was created:

>>> p.position == p2.position == 10
True
>>> p.extension == p2.extension == 3
True
>>> int(p) == int(p2)
False
>>> p == 10
True
>>> p2 == 13
True
static __new__(cls, position, left, right)

Create a WithinPosition object.

__getnewargs__(self)

Return the arguments accepted by __new__.

Necessary to allow pickling and unpickling of class instances.

__repr__(self)

Represent the WithinPosition object as a string for debugging.

__str__(self)

Return a representation of the WithinPosition object (with python counting).

property position

Legacy attribute to get (left) position as integer (OBSOLETE).

property extension

Legacy attribute to get extension (from left to right) as an integer (OBSOLETE).

class Bio.SeqFeature.BetweenPosition(position, left, right)

Bases: int, Bio.SeqFeature.AbstractPosition

Specify the position of a boundary between two coordinates (OBSOLETE?).

Arguments:
  • position - The default integer position

  • left - The start (left) position of the boundary

  • right - The end (right) position of the boundary

This allows dealing with a position like 123^456. This indicates that the start of the sequence is somewhere between 123 and 456. It is up to the parser to set the position argument to either boundary point (depending on if this is being used as a start or end of the feature). For example as a feature end:

>>> p = BetweenPosition(456, 123, 456)
>>> p
BetweenPosition(456, left=123, right=456)
>>> print(p)
(123^456)
>>> int(p)
456

Integer equality and comparison use the given position,

>>> p == 456
True
>>> p in [455, 456, 457]
True
>>> p > 300
True

The old legacy properties of position and extension give the starting/lower/left position as an integer, and the distance to the ending/higher/right position as an integer. Note that the position object will act like either the left or the right end-point depending on how it was created:

>>> p2 = BetweenPosition(123, left=123, right=456)
>>> p.position == p2.position == 123
True
>>> p.extension
333
>>> p2.extension
333
>>> p.extension == p2.extension == 333
True
>>> int(p) == int(p2)
False
>>> p == 456
True
>>> p2 == 123
True

Note this potentially surprising behaviour:

>>> BetweenPosition(123, left=123, right=456) == ExactPosition(123)
True
>>> BetweenPosition(123, left=123, right=456) == BeforePosition(123)
True
>>> BetweenPosition(123, left=123, right=456) == AfterPosition(123)
True

i.e. For equality (and sorting) the position objects behave like integers.

static __new__(cls, position, left, right)

Create a new instance in BetweenPosition object.

__getnewargs__(self)

Return the arguments accepted by __new__.

Necessary to allow pickling and unpickling of class instances.

__repr__(self)

Represent the BetweenPosition object as a string for debugging.

__str__(self)

Return a representation of the BetweenPosition object (with python counting).

property position

Legacy attribute to get (left) position as integer (OBSOLETE).

property extension

Legacy attribute to get extension (from left to right) as an integer (OBSOLETE).

class Bio.SeqFeature.BeforePosition(position, extension=0)

Bases: int, Bio.SeqFeature.AbstractPosition

Specify a position where the actual location occurs before it.

Arguments:
  • position - The upper boundary of where the location can occur.

  • 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 before position 10.

>>> p = BeforePosition(5)
>>> p
BeforePosition(5)
>>> print(p)
<5
>>> int(p)
5
>>> p + 10
15

Note this potentially surprising behaviour:

>>> p == ExactPosition(5)
True
>>> p == AfterPosition(5)
True

Just remember that for equality and sorting the position objects act like integers.

static __new__(cls, position, extension=0)

Create a new instance in BeforePosition object.

property position

Legacy attribute to get position as integer (OBSOLETE).

property extension

Legacy attribute to get extension (zero) as integer (OBSOLETE).

__repr__(self)

Represent the location as a string for debugging.

__str__(self)

Return a representation of the BeforePosition object (with python counting).

class Bio.SeqFeature.AfterPosition(position, extension=0)

Bases: int, Bio.SeqFeature.AbstractPosition

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

Arguments:
  • position - The lower boundary of where the location can occur.

  • 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.

>>> p = AfterPosition(7)
>>> p
AfterPosition(7)
>>> print(p)
>7
>>> int(p)
7
>>> p + 10
17
>>> isinstance(p, AfterPosition)
True
>>> isinstance(p, AbstractPosition)
True
>>> isinstance(p, int)
True

Note this potentially surprising behaviour:

>>> p == ExactPosition(7)
True
>>> p == BeforePosition(7)
True

Just remember that for equality and sorting the position objects act like integers.

static __new__(cls, position, extension=0)

Create a new instance of the AfterPosition object.

property position

Legacy attribute to get position as integer (OBSOLETE).

property extension

Legacy attribute to get extension (zero) as integer (OBSOLETE).

__repr__(self)

Represent the location as a string for debugging.

__str__(self)

Return a representation of the AfterPosition object (with python counting).

class Bio.SeqFeature.OneOfPosition(position, choices)

Bases: int, Bio.SeqFeature.AbstractPosition

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. If this was a start position it should act like 1888, but as an end position 1901.

>>> p = OneOfPosition(1888, [ExactPosition(1888), ExactPosition(1901)])
>>> p
OneOfPosition(1888, choices=[ExactPosition(1888), ExactPosition(1901)])
>>> int(p)
1888

Integer comparisons and operators act like using int(p),

>>> p == 1888
True
>>> p <= 1888
True
>>> p > 1888
False
>>> p + 100
1988
>>> isinstance(p, OneOfPosition)
True
>>> isinstance(p, AbstractPosition)
True
>>> isinstance(p, int)
True

The old legacy properties of position and extension give the starting/lowest/left-most position as an integer, and the distance to the ending/highest/right-most position as an integer. Note that the position object will act like one of the list of possible locations depending on how it was created:

>>> p2 = OneOfPosition(1901, [ExactPosition(1888), ExactPosition(1901)])
>>> p.position == p2.position == 1888
True
>>> p.extension == p2.extension == 13
True
>>> int(p) == int(p2)
False
>>> p == 1888
True
>>> p2 == 1901
True
static __new__(cls, position, choices)

Initialize with a set of possible positions.

position_list is a list of AbstractPosition derived objects, specifying possible locations.

position is an integer specifying the default behaviour.

__getnewargs__(self)

Return the arguments accepted by __new__.

Necessary to allow pickling and unpickling of class instances.

property position

Legacy attribute to get (left) position as integer (OBSOLETE).

property extension

Legacy attribute to get extension as integer (OBSOLETE).

__repr__(self)

Represent the OneOfPosition object as a string for debugging.

__str__(self)

Return a representation of the OneOfPosition object (with python counting).

class Bio.SeqFeature.PositionGap(gap_size)

Bases: object

Simple class to hold information about a gap between positions.

__init__(self, gap_size)

Intialize with a position object containing the gap information.

__repr__(self)

Represent the position gap as a string for debugging.

__str__(self)

Return a representation of the PositionGap object (with python counting).