def test_set_seq_with_seqrecord(self, seqprop_with_i, seq_record_example):
"""Test setting the seq attribute with a SeqRecord"""
seqprop_with_i.seq = seq_record_example
assert type(seqprop_with_i.seq) == Seq
assert seqprop_with_i.seq == seq_record_example.seq
assert seqprop_with_i.name == seq_record_example.name
assert seqprop_with_i.description == seq_record_example.description
assert seqprop_with_i.annotations == seq_record_example.annotations
评论列表
文章目录