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 typo virtual screen #263

Open
wants to merge 1 commit into
base: main
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
3 changes: 1 addition & 2 deletions proteinshake/tasks/virtual_screen.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import numpy as np
from sklearn.model_selection import train_test_split

from proteinshake.datasets import ProteinLigandDecoysDataset
from proteinshake.tasks import Task
Expand All @@ -13,7 +12,7 @@ class VirtualScreenTask(Task):
that the protein and ligand will bind. This can be a docking score, energy calculation,
or just a probability.
Each protein's ligand library contains a certain number of active molecules (ligands)
and a certai (larger) number of decoys (non-binders).
and a certain (larger) number of decoys (non-binders).
We use the predicted scores to sort the whole library and calculate the position of each
active ligand in the sorted library.
Ligands in the topi percentiles which are known to be active contribute a 1 to the score
Expand Down
Loading