次のコードを実行すると:
from Bio.SeqUtils import six_frame_translations
blah = six_frame_translations("ATCGATCGATCG")
print(blah)
次のエラーが表示されます。
File "C:\Python32\lib\site-packages\Bio\SeqUtils\__init__.py", line 263, in six_frame_translations
frames[-(i+1)] = reverse(translate(anti[i:], genetic_code))
NameError: global name 'reverse' is not defined
私はPython 3.23、Biopython 1.59を使用しています
助言がありますか?ありがとう、
チャールズ