Skip to content

Commit

Permalink
Fix the option used for ClustalOmega, when one wants to specify the
Browse files Browse the repository at this point in the history
sequence type.  The previously used --t would be interpreted by
clustalo as a shortcut for --threads, resulting in error.
  • Loading branch information
cbrueffer authored and peterjc committed Nov 20, 2012
1 parent a594cd8 commit 399bb64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bio/Align/Applications/_ClustalOmega.py
Expand Up @@ -63,7 +63,7 @@ def __init__(self, cmd="clustalo", **kwargs):
"Pre-aligned multiple sequence file (aligned columns will be kept fix).", "Pre-aligned multiple sequence file (aligned columns will be kept fix).",
filename=True, filename=True,
equate=False), equate=False),
_Option(["--t", "--seqtype", "seqtype"], _Option(["-t", "--seqtype", "seqtype"],
"{Protein, RNA, DNA} Force a sequence type (default: auto).", "{Protein, RNA, DNA} Force a sequence type (default: auto).",
equate=False, equate=False,
checker_function=lambda x: x in ["protein", "rna", "dna", checker_function=lambda x: x in ["protein", "rna", "dna",
Expand Down

0 comments on commit 399bb64

Please sign in to comment.