You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I found a small bug that will make the biopython structure output have error when it do io.save .
if you check the chain.id write into . it will be a tuple instead of a char.
The modification will be
new_chain = Bio.PDB.Chain.Chain(chain) -> new_chain = Bio.PDB.Chain.Chain(chain[0])
Best
Yangyang
The text was updated successfully, but these errors were encountered:
Hi,
I found a small bug that will make the biopython structure output have error when it do io.save .
if you check the chain.id write into . it will be a tuple instead of a char.
The modification will be
new_chain = Bio.PDB.Chain.Chain(chain) -> new_chain = Bio.PDB.Chain.Chain(chain[0])
Best
Yangyang
The text was updated successfully, but these errors were encountered: