Skip to content

Commit

Permalink
Fix minor typo that has been copied+pasted all over the place.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrueffer authored and peterjc committed Nov 4, 2012
1 parent b48fe7d commit bb137ea
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Bio/Align/Applications/_ClustalOmega.py
Expand Up @@ -155,7 +155,7 @@ def __init__(self, cmd="clustalo", **kwargs):

def _test():
"""Run the module's doctests (PRIVATE)."""
print "Runing ClustalW doctests..."
print "Running ClustalW doctests..."
import doctest
doctest.testmod()
print "Done"
Expand Down
2 changes: 1 addition & 1 deletion Bio/Align/Applications/_Clustalw.py
Expand Up @@ -309,7 +309,7 @@ def __init__(self, cmd="clustalw", **kwargs):

def _test():
"""Run the module's doctests (PRIVATE)."""
print "Runing ClustalW doctests..."
print "Running ClustalW doctests..."
import doctest
doctest.testmod()
print "Done"
Expand Down
2 changes: 1 addition & 1 deletion Bio/Align/Applications/_Dialign.py
Expand Up @@ -180,7 +180,7 @@ def __init__(self, cmd="dialign2-2", **kwargs):

def _test():
"""Run the module's doctests (PRIVATE)."""
print "Runing modules doctests..."
print "Running modules doctests..."
import doctest
doctest.testmod()
print "Done"
Expand Down
4 changes: 2 additions & 2 deletions Bio/Align/Applications/_Mafft.py
Expand Up @@ -355,15 +355,15 @@ def _test():
#TODO - Remove os.path checks on input filenames?
import doctest
if os.path.isdir(os.path.join("..","Tests")):
print "Runing doctests..."
print "Running doctests..."
cur_dir = os.path.abspath(os.curdir)
os.chdir(os.path.join("..","Tests"))
doctest.testmod()
os.chdir(cur_dir)
del cur_dir
print "Done"
elif os.path.isdir(os.path.join("Tests")) :
print "Runing doctests..."
print "Running doctests..."
cur_dir = os.path.abspath(os.curdir)
os.chdir(os.path.join("Tests"))
doctest.testmod()
Expand Down
2 changes: 1 addition & 1 deletion Bio/Align/Applications/_Muscle.py
Expand Up @@ -465,7 +465,7 @@ def __init__(self, cmd="muscle", **kwargs):

def _test():
"""Run the module's doctests (PRIVATE)."""
print "Runing MUSCLE doctests..."
print "Running MUSCLE doctests..."
import doctest
doctest.testmod()
print "Done"
Expand Down
2 changes: 1 addition & 1 deletion Bio/Align/Applications/_Prank.py
Expand Up @@ -197,7 +197,7 @@ def __init__(self, cmd="prank", **kwargs):

def _test():
"""Run the module's doctests (PRIVATE)."""
print "Runing modules doctests..."
print "Running modules doctests..."
import doctest
doctest.testmod()
print "Done"
Expand Down
2 changes: 1 addition & 1 deletion Bio/Align/Applications/_Probcons.py
Expand Up @@ -109,7 +109,7 @@ def __init__(self, cmd="probcons", **kwargs):

def _test():
"""Run the module's doctests (PRIVATE)."""
print "Runing modules doctests..."
print "Running modules doctests..."
import doctest
doctest.testmod()
print "Done"
Expand Down
2 changes: 1 addition & 1 deletion Bio/Align/Applications/_TCoffee.py
Expand Up @@ -100,7 +100,7 @@ def __init__(self, cmd="t_coffee", **kwargs):

def _test():
"""Run the module's doctests (PRIVATE)."""
print "Runing modules doctests..."
print "Running modules doctests..."
import doctest
doctest.testmod()
print "Done"
Expand Down

0 comments on commit bb137ea

Please sign in to comment.