-
-
Notifications
You must be signed in to change notification settings - Fork 21
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
YL-1 Add Insect Sex Pheromones to GlobalChem #320
Comments
I could not find the R/S configuration for this molecule: |
Interesting, nice plot! It's probably because their combination algorithms are more drug designed base and less applicable to other chemical spaces. Tanimoto scorring is pretty strict: tanimoto_scores = DataStructs.BulkTanimotoSimilarity(fp, ref_fps)
dice_scores = DataStructs.BulkDiceSimilarity(fp, ref_fps)
kulczynski_scores = DataStructs.BulkKulczynskiSimilarity(fp, ref_fps)
mcconnaughey_scores = DataStructs.BulkMcConnaugheySimilarity(fp, ref_fps)
onbit_scores = DataStructs.BulkOnBitSimilarity(fp, ref_fps)
rogot_goldberg_scores = DataStructs.BulkRogotGoldbergSimilarity(fp, ref_fps)
russel_scores = DataStructs.BulkRusselSimilarity(fp, ref_fps)
sokal_scores = DataStructs.BulkSokalSimilarity(fp, ref_fps)
if all(x > criteria for x in tanimoto_scores):
print ('Tanimoto Accepted: %s' % value)
if all(x > criteria for x in dice_scores):
print ('Dice Accepted: %s' % value)
if all(x > criteria for x in kulczynski_scores):
print ('Kulczynski Accepted: %s' % value)
if all(x > criteria for x in mcconnaughey_scores):
print ('Mcconnaughey Accepted: %s' % value)
if all(x > criteria for x in onbit_scores):
print ('On Bit Accepted: %s' % value)
if all(x > criteria for x in rogot_goldberg_scores):
print ('Rogot Goldberg: %s' % value)
if all(x > criteria for x in russel_scores):
print ('Russel: %s' % value)
if all(x > criteria for x in sokal_scores):
print ('Sokal: %s' % value) There's a bunch of other similarity metrics as well that could be useful but by first glance not great. Can we compare to a fragrant database. The problem is that the data is usually sold rather than available open source: https://github.com/Odeuropa I found this, is anything we can use in here? |
@ANUGAMAGE Review this PR and add it as a node into global-chem, this will increase the version as well and we can do a new release. |
Maybe I wrote it wrong? I will check again on it. There's a little arrow and a star that says "Maybe not work". Idk what I meant there. |
That's pretty interesting. It seems like the olfaction database is what people should be mining and not the zinc database. There should be a curated list of chemical data for different regions of chemical space. @ANUGAMAGE reopening the issue because @Lyq322 and I are discussing. Usually would close a PR if an issue/discussion is resolved fully or a PR. |
Add chemicals from Insect Sex Pheromones by Martin Jacobson to GlobalChem
The text was updated successfully, but these errors were encountered: