我的目標是接收DNA序列中出現的時間量'g'。Biopython:不能使用.count()進行biopython
我導入的DNA序列通過使用Biopython列表理解
seq = [record for record in SeqIO.parse('sequences/hiv.gbk.rtf', 'fasta')]
我然後使用新創建的列表排版變量.Count之間()方法
print(seq.count('g'))
我得到一個錯誤嘗試了讀取
NotImplementedError: SeqRecord comparison is deliberately not implemented. Explicitly compare the attributes of interest.
任何人都知道處理是什麼? Biopython手冊說所有標準的python方法都可以工作。
請不要交叉後在biostars你的問題和scicomp。 –