generated from ersilia-os/eos-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
83ce5e5
commit e4baf28
Showing
7 changed files
with
82 additions
and
24 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM bentoml/model-server:0.11.0-py37 | ||
FROM bentoml/model-server:0.11.0-py311 | ||
MAINTAINER ersilia | ||
|
||
RUN pip install rdkit | ||
RUN pip install rdkit==2023.9.5 | ||
|
||
WORKDIR /repo | ||
COPY . /repo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,45 @@ | ||
# Ersilia Model In Progress | ||
# ErG 2D Descriptors | ||
|
||
This model is work in progress. Please edit the [metadata.json](metadata.json) file to complete the information about the model. This README file will be updated automatically based on the information contained in that folder. | ||
The Extended Reduced Graph (ErG) approach uses the description of pharmacophore nodes to encode molecular properties, with the goal of correctly describing pharmacophoric properties, size and shape of molecules. It was benchmarked against Daylight fingerprints and outperformed them in 10 out of 11 cases. ErG descriptors are well suited for scaffold hopping approaches. | ||
|
||
## Identifiers | ||
|
||
* EOS model ID: `eos5guo` | ||
* Slug: `erg-descs` | ||
|
||
## Characteristics | ||
|
||
* Input: `Compound` | ||
* Input Shape: `Single` | ||
* Task: `Representation` | ||
* Output: `Descriptor` | ||
* Output Type: `Integer` | ||
* Output Shape: `List` | ||
* Interpretation: Vector representing SMILES | ||
|
||
## References | ||
|
||
* [Publication](https://pubs.acs.org/doi/10.1021/ci050457y) | ||
* [Source Code](https://www.rdkit.org/docs/source/rdkit.Chem.rdReducedGraphs.html) | ||
* Ersilia contributor: [GemmaTuron](https://github.com/GemmaTuron) | ||
|
||
## Ersilia model URLs | ||
* [GitHub](https://github.com/ersilia-os/eos5guo) | ||
* [AWS S3](https://ersilia-models-zipped.s3.eu-central-1.amazonaws.com/eos5guo.zip) | ||
* [DockerHub](https://hub.docker.com/r/ersiliaos/eos5guo) (AMD64, ARM64) | ||
|
||
## Citation | ||
|
||
If you use this model, please cite the [original authors](https://pubs.acs.org/doi/10.1021/ci050457y) of the model and the [Ersilia Model Hub](https://github.com/ersilia-os/ersilia/blob/master/CITATION.cff). | ||
|
||
## License | ||
|
||
This package is licensed under a GPL-3.0 license. The model contained within this package is licensed under a BSD-3.0 license. | ||
|
||
Notice: Ersilia grants access to these models 'as is' provided by the original authors, please refer to the original code repository and/or publication if you use the model in your research. | ||
|
||
## About Us | ||
|
||
The [Ersilia Open Source Initiative](https://ersilia.io) is a Non Profit Organization ([1192266](https://register-of-charities.charitycommission.gov.uk/charity-search/-/charity-details/5170657/full-print)) with the mission is to equip labs, universities and clinics in LMIC with AI/ML tools for infectious disease research. | ||
|
||
[Help us](https://www.ersilia.io/donate) achieve our mission! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,36 @@ | ||
{ | ||
"Identifier": "eos5guo", | ||
"Slug": "erg-descs", | ||
"Status": "In progress", | ||
"Status": "Ready", | ||
"Title": "ErG 2D Descriptors", | ||
"Description": "The Extended Reduced Graph (ErG) approach uses the description of pharmacophore nodes to encode molecular properties, with the goal of correctly describing pharmacophoric properties, size and shape of molecules. It was benchmarked against Daylight fingerprints and outperformed them in 10 out of 11 cases. ErG descriptors are well suited for scaffold hopping approaches.", | ||
"Mode": "", | ||
"Task": [], | ||
"Input": [], | ||
"Input Shape": "", | ||
"Output": [], | ||
"Output Type": [], | ||
"Output Shape": "", | ||
"Interpretation": "", | ||
"Mode": "Pretrained", | ||
"Task": [ | ||
"Representation" | ||
], | ||
"Input": [ | ||
"Compound" | ||
], | ||
"Input Shape": "Single", | ||
"Output": [ | ||
"Descriptor" | ||
], | ||
"Output Type": [ | ||
"Integer" | ||
], | ||
"Output Shape": "List", | ||
"Interpretation": "Vector representing SMILES", | ||
"Tag": [ | ||
"Descriptor", | ||
"Fingerprint" | ||
], | ||
"Publication": "https://pubs.acs.org/doi/10.1021/ci050457y", | ||
"Source Code": "https://www.rdkit.org/docs/source/rdkit.Chem.rdReducedGraphs.html", | ||
"License": "BSD-3.0" | ||
"License": "BSD-3.0", | ||
"S3": "https://ersilia-models-zipped.s3.eu-central-1.amazonaws.com/eos5guo.zip", | ||
"DockerHub": "https://hub.docker.com/r/ersiliaos/eos5guo", | ||
"Docker Architecture": [ | ||
"AMD64", | ||
"ARM64" | ||
] | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters