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

如何对在对指定的一个口袋进行采样后将结果转换为sdf文件? #8

Closed
InvincibleZZH opened this issue May 20, 2023 · 1 comment

Comments

@InvincibleZZH
Copy link

我在手动制作了一个小分子结合口袋之后使用sample_for_poocket.py得到了sample.pt文件,但接下来应该如何使用其他代码倒出算法能够生成的小分子的sdf?

@guanjq
Copy link
Owner

guanjq commented May 30, 2023

Hi, sorry for the late response. I have updated the sample_for_pocket.py. It will reconstruct the sampled molecules and save them to {$result_path}/sdf now. If you have installed py3Dmol, you can simply check the sampled mol with the following code:

from utils.visualize import visualize_complex

with open('examples/1h36_A_rec_1h36_r88_lig_tt_docked_0_pocket10.pdb', 'r') as f:
    pdb_block = f.read()
with open('outputs_pdb/sdf/000.sdf', 'r') as f:
    sdf_block = f.read()
        
visualize_complex(pdb_block, sdf_block, show_ligand_surface=False)

@guanjq guanjq closed this as completed Jun 3, 2023
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