next up previous contents index
Next: Sequence.range residue Up: MODELLER command reference Previous: alignment.segment_matching() align   Contents   Index


The Sequence class: a single sequence within an alignment

The Sequence class contains a single sequence, in a model (see Section 6.6) or in an alignment (see Section 6.15).

For alignment template structures (i.e., sequences for which a structure is also available) see the Structure class in Section 6.17.

Example: examples/python/alnsequence.py


# Example for alnsequence objects

from modeller import *

env = environ()

aln = alignment(env, file='../commands/toxin.ali')
print("Alignment contains %d sequences:" % len(aln))
for seq in aln:
    print("   Sequence %s from %s contains %d residues" \
          % (seq.code, seq.source, len(seq)))



Subsections

Automatic builds 2013-06-11