0
我使用基因組圖來顯示基因組信息。我想通過分隔線將功能名稱和位置分開。然後,我做這樣的事情:基因組圖中的斷點biopython
gdFeature.add_feature(
feat,
color=red,
sigil="ARROW",
name=feat.qualifiers['product'][0].replace(" ", "_") + "\n" +
str(feat.location.start) + " - " + str(feat.location.end),
label_position="middle",
label_angle=0,
label=True)
gdFeature是要素類的一個實例(http://biopython.org/DIST/docs/api/Bio.Graphics.GenomeDiagram._Feature.Feature-class.html)
問題是,當我節省了PDF格式的我的照片,我有一個黑色方塊代替斷線: example here
這不是我真正想要的。有沒有辦法做到這一點 ?
謝謝