Skip to content

Commit

Permalink
Enable codon option in programmatic interface
Browse files Browse the repository at this point in the history
  • Loading branch information
TJBIII committed Feb 6, 2024
1 parent 1c30939 commit 5243352
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions clipkit/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ def clipkit(
gap_characters=None,
input_file_format=FileFormat.fasta,
output_file_format=FileFormat.fasta,
sequence_type=SeqType.aa
sequence_type=SeqType.aa,
codon=bool,
) -> TextIO:
"""
If input_file_path is given with no output_file_path -> Bio MSA (multiple sequence alignment object)
Expand All @@ -39,7 +40,6 @@ def clipkit(

# override some options not currently available through programmatic interface
complement = False
codon = False
use_log = False
quiet = True

Expand Down
2 changes: 1 addition & 1 deletion clipkit/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.1.2"
__version__ = "2.1.3"

0 comments on commit 5243352

Please sign in to comment.