This is the repository for scripts and web front-end for the COVID-19 project. The goal is to present a list of bioactive chemical compounds with potential to be effective against COVID-19.
We are actively collecting suggested drugs from the current COVID-19 literature, with different levels of supporting evidence. We then use the Chemical Checker to identify small-molecules with similar chemical and bioactivity features to the reported drugs in a universe of 800 thousand bioactive compounds.
A cleaned and tractable version of literature candidates where molecules standardized, aggregated and duplications resolved.
It contains the following fields:
- Molecule InChIKey
- Molecule name
- Evidence level
- Evidence type
- Mode of action
Table based on ChemicalChecker similarities here.
Table based on Chemical Properties (fingerprints) similarities here.
- Molecule InChIKey
- Molecule name
- Is Drug?
- Support score
- 1e-5 score
- 1e-4 score
- 1e-3 score
- Most similar literature compound
- Second most similar literature compound
- Third most similar literature compound
git clone http://gitlabsbnb.irbbarcelona.org/project-specific-repositories/covid19.git
cd covid19
python scripts/fetch_literature.py
export FLASK_APP=web/app.py
flask run If you are running the flask debug server on a remote machine you'll need to tunnel the port to you machine. For this it is convenient to have ssh public key access to the machine where you are running the flask server.
Run on your local machine:
ssh-keygen
ssh-copy-id -i ~/.ssh/id_rsa user@flaskhostNow you can tunnel the remote localhost to your localhost (and see the page in your browser):
ssh -L 5000:127.0.0.1:5000 user@flaskhost -fN