DISCLAIMER: Currently SureCHEMBL is going through a database restructuring and maintenance. The tool might not function in that case. The tool will be updated once the stable version of the database is ready!!
PEMT is a patent extractor tool that enables users to retrieve patents relevant to drug discovery. The overall workflow of the tool can be seen in the figure below:
$ pip install pemt
The most recent code can be installed from the source on GitHub with:
$ pip install git+https://github.com/Fraunhofer-ITMP/PEMT.git
Alternatively, for developer the tool can be installed in an editable mode as shown below:
$ git clone https://github.com/Fraunhofer-ITMP/PEMT.git
$ conda create --name pemt python=3.8
$ conda activate pemt
$ cd PEMT
$ pip install pemt
For developers, the repository can be cloned from GitHub and installed in editable mode with:
$ git clone https://github.com/Fraunhofer-ITMP/PEMT.git
$ cd PEMT
$ pip install -e .
Read the official docs for more information.
For running PEMT from the gene level, you need the input file with the following structure:
symbol | uniprot |
---|---|
HGNC_Symbol_1 | Uniprot_ID_1 |
HGNC_Symbol_2 | Uniprot_ID_2 |
HGNC_Symbol_3 | Uniprot_ID_3 |
For running PEMT from the chemical level, you need the input file with the following structure:
chembl |
---|
ChEMBL_ID_1 |
ChEMBL_ID_2 |
ChEMBL_ID_3 |
Note: The data must be in a comma or tab separated file format. If not so, the file should have at least one of the columns shown above.
In-order to use PEMT, an installation of chromedriver is required.
As mentioned above, the tool has a two-step approach. Each of these steps can be run individually as well as together as show belwo:
- Chemical enrichment
The following command links chemicals to genes of interest based on causality. In this command it is necessary to indicate whether the file contains uniprot ids or not with the
--uniprot
or--no-uniprot
parameter.
$ pemt run-chemical-extractor --name=<ANALYSIS NAME> --data=<DATA FILE PATH> --input-type=<DATA FILE SEPARATOR> --uniprot
- Patent enrichment The following command interlinks chemicals to patent literature publicly available.
$ pemt run-patent-extractor --name=<ANALYSIS NAME> --chromedriver-path=<PATH TO CHROMEDRIVER> --os=<OS NAME> --no-chemical
We also allow the flexibility to start the pipeline from this step, if the user has list of chemicals in the right format as indicated above. The user then has to use the tag --chemical
and provide a respective --chemical-data
path.
- PEMT workflow The following command generates the patent enrichment on the gene data where the gene data file is a TSV file containing uniprot identifiers.
$ pemt run-pemt --name=<ANALYSIS NAME> --data=<DATA FILE PATH> --input-type=<DATA FILE SEPARATOR> --chromedriver-path=<PATH TO CHROMEDRIVER> --os=<OS NAME>
If you have difficulties using PEMT, please open an issue at our GitHub repository.
If you have found PEMT useful in your work, please consider citing: PEMT: A patent enrichment tool for drug discovery.
Yojana Gadiya, Andrea Zaliani, Philip Gribbon, Martin Hofmann-Apitius, PEMT: a patent enrichment tool for drug discovery, Bioinformatics, 2022;, btac716, https://doi.org/10.1093/bioinformatics/btac716
PEMT is a scientific tool that has been developed in an academic capacity, and thus comes with no warranty or guarantee of maintenance, support, or back-up of data.
This project has been funded by EOSC-Life which has received funding from the European Union's Horizon 2020 programme under grant agreement number 824087.