Hi all,
I am new to biopython. Is there any function to convert gene sequence into digits. I tried the code import numpy as np import Bio
seq = 'ACTTCAG' seq_array = Bio.numerize(seq) print(seq_array)
But got an error that "Traceback (most recent call last): File "<input>", line 1, in <module> AttributeError: 'module' object has no attribute 'numerize'"
Kindly help me in this issue