Skip to content

Commit

Permalink
Removed stray import, added not on file format name
Browse files Browse the repository at this point in the history
  • Loading branch information
peterc committed Nov 13, 2006
1 parent 2eb3af6 commit 3779f26
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Bio/SeqIO/ClustalIO.py
Expand Up @@ -14,7 +14,6 @@

#For writing alignments:
from Bio.SeqIO.Interfaces import SequenceWriter
from Bio.SeqIO import Iter2Alignment
from Bio.Clustalw import ClustalAlignment

#This is a generator function!
Expand All @@ -30,6 +29,10 @@ def ClustalIterator(handle, alphabet = generic_alphabet) :
You might like to look at Bio.Clustalw which has an interface
to the command line tool clustalw, and can also clustal alignment
files into Bio.Clustalw.ClustalAlignment objects.
We call this the "clustal" format which is consist with EMBOSS.
Sadly BioPerl calls it the "clustalw" format, so we can't match
them both."
"""
line = handle.readline()
if not line: return
Expand Down

0 comments on commit 3779f26

Please sign in to comment.