根據 BLAST 結果獲得了一些序列在染色體上的位置信息,想試着用 Bio.Graphics.BasicChromosome 來畫個圖看看,遇到了 SeqFeature 對象這個問題。html
目前發現能夠如此:python
from Bio.SeqFeature import SeqFeature, FeatureLocation # 注意 qualifier 裏的列表 # 2 是紅色 f = SeqFeature(location=FeatureLocation(5,10), strand=1, type='gene', qualifiers={'gene': [ 'gene1' ], 'color': [ 2 ]}) # 沒毛病
可參考:api