Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrueffer authored and peterjc committed Dec 5, 2012
1 parent d9500da commit 823d2ea
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Bio/Align/Applications/_Prank.py
Expand Up @@ -42,7 +42,7 @@ class PrankCommandline(AbstractCommandline):
prevents errors in sequence alignment and evolutionary analysis. prevents errors in sequence alignment and evolutionary analysis.
Science, 320: 1632. Science, 320: 1632.
Last checked agains version: 081202 Last checked against version: 081202
""" """
def __init__(self, cmd="prank", **kwargs): def __init__(self, cmd="prank", **kwargs):
OUTPUT_FORMAT_VALUES = list(range(1,18)) OUTPUT_FORMAT_VALUES = list(range(1,18))
Expand Down
2 changes: 1 addition & 1 deletion Bio/Align/Applications/_Probcons.py
Expand Up @@ -51,7 +51,7 @@ class ProbconsCommandline(AbstractCommandline):
PROBCONS: Probabilistic Consistency-based Multiple Sequence Alignment. PROBCONS: Probabilistic Consistency-based Multiple Sequence Alignment.
Genome Research 15: 330-340. Genome Research 15: 330-340.
Last checked agains version: 1.12 Last checked against version: 1.12
""" """
def __init__(self, cmd="probcons", **kwargs): def __init__(self, cmd="probcons", **kwargs):
self.parameters = \ self.parameters = \
Expand Down
4 changes: 2 additions & 2 deletions Tests/test_Emboss.py
Expand Up @@ -133,7 +133,7 @@ def emboss_piped_SeqIO_convert(records, old_format, new_format):
SeqIO.write(records, child.stdin, old_format) SeqIO.write(records, child.stdin, old_format)
child.stdin.close() child.stdin.close()
child.stderr.close() child.stderr.close()
#TODO - Is there a nice way to return an interator AND #TODO - Is there a nice way to return an iterator AND
#automatically close the handle? #automatically close the handle?
records = list(SeqIO.parse(child.stdout, new_format)) records = list(SeqIO.parse(child.stdout, new_format))
child.stdout.close() child.stdout.close()
Expand Down Expand Up @@ -165,7 +165,7 @@ def emboss_piped_AlignIO_convert(alignments, old_format, new_format):
raise raise
child.stdin.close() child.stdin.close()
child.stderr.close() child.stderr.close()
#TODO - Is there a nice way to return an interator AND #TODO - Is there a nice way to return an iterator AND
#automatically close the handle? #automatically close the handle?
try: try:
aligns = list(AlignIO.parse(child.stdout, new_format)) aligns = list(AlignIO.parse(child.stdout, new_format))
Expand Down

0 comments on commit 823d2ea

Please sign in to comment.