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

Fix docstrings to include vinardo for python bindings #281

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build/python/vina/vina.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self, sf_name='vina', cpu=0, seed=0, no_refine=False, verbosity=1):
"""Initialize a Vina object.

Args:
sf_name (str): Scoring function name to use (Vina or ad4) (default: vina)
sf_name (str): Scoring function name to use (vina, vinardo or ad4) (default: vina)
cpu (int): Number of CPU to use (default: 0; use all of them)
seed (int): Random seed (default: 0; ramdomly choosed)
no_refine (boolean): when receptor is provided, do not use explicit receptor atoms
Expand Down Expand Up @@ -207,7 +207,7 @@ def set_ligand_from_string(self, pdbqt_string):
self._ligands = pdbqt_string

def set_weights(self, weights):
"""Set potential weights for vina or ad4 scoring function.
"""Set potential weights for vina, vinardo or ad4 scoring function.

Args:
weights (list): list or weights
Expand Down Expand Up @@ -266,7 +266,7 @@ def compute_vina_maps(self, center, box_size, spacing=0.375, force_even_voxels=F
self._voxels[2] += int(self._voxels[2] % 2 == 1)

def load_maps(self, map_prefix_filename):
"""Load vina or ad4 affinity maps.
"""Load vina, vinardo or ad4 affinity maps.

Args:
map_prefix_filename (str): affinity map prefix filename
Expand Down
Loading