Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

About Visualization #195

Open
Angenb opened this issue Jun 7, 2024 · 1 comment
Open

About Visualization #195

Angenb opened this issue Jun 7, 2024 · 1 comment

Comments

@Angenb
Copy link

Angenb commented Jun 7, 2024

I am highly interested in the prediction of protein conformations within this project. I recently attempted the prediction of adenosine kinase and obtained a pdb file along with two npz format files. I wish to visualize these results as demonstrated on your website but am uncertain about which tools to use. Could you please provide information on the software and tools required for visualization and the steps involved? This assistance would be greatly appreciated. Thank you.

@dcbiton
Copy link

dcbiton commented Oct 21, 2024

Hi @Angenb , I am not from the microsoft team but you can visualize the pdb files using visualization apps (example: namd, chimera, etc) but if you are using python, you can use biopython with nglview
example:

from Bio.PDB import (
    PDBParser
)
import nglview as nv # visualizing
parser = PDBParser()
filename = 'output_filename.pdb'
structure = parser.get_structure("protein", filename) 

view = nv.show_biopython(structure)
view

I hope this helps

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants