DrugDiscovery / docking.py
anaghanagesh's picture
Update docking.py
030e464 verified
Raw
History Blame Contribute Delete
130 Bytes
import random
def dock(smiles_list):
return "\n".join([f"{s}: score {round(random.uniform(-10,-5),2)}" for s in smiles_list])