Код: Выделить всё
from Bio.Seq import Seq
seq = Seq('CCGGGTTAACGTA')
mut_seq = seq.tomutable()
print( mut_seq )
mut_seq[2] = 'A'
Код: Выделить всё
TypeError: 'Seq' object does not support item assignment
Я использовал biopython 1.85
Подробнее здесь: https://stackoverflow.com/questions/793 ... assignment
Мобильная версия