mDeepFRI


NamemDeepFRI JSON
Version 1.1.5 PyPI version JSON
download
home_pagehttps://github.com/bioinf-mcb/Metagenomic-DeepFRI
SummaryPipeline for searching and aligning contact maps for proteins, then running DeepFri's GCN.
upload_time2024-04-01 22:24:07
maintainerNone
docs_urlNone
authorValentyn Bezshapkin, Piotr Kucharski
requires_python>=3.6
licenseBSD-3-Clause
keywords protein function metagenomics deep neural network
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 🍳 Metagenomic-DeepFRI [![Stars](https://img.shields.io/github/stars/bioinf-MCB/Metagenomic-DeepFRI.svg?style=social&maxAge=3600&label=Star)](https://github.com/bioinf-MCB/Metagenomic-DeepFRI/stargazers)
*A pipeline for annotation of genes with [DeepFRI](https://github.com/flatironinstitute/DeepFRI), a deep learning model for functional protein annotation with [Gene Ontology (GO) terms](https://geneontology.org/docs/go-annotations/). It incorporates [FoldComp](https://github.com/steineggerlab/foldcomp) databases of predicted protein structures for fast annotation of metagenomic gene catalogues.*

## 🔍 Overview
Proteins perform most of the work of living cells. Amino acid sequence and structural features of proteins determine a wide range of functions: from binding specificity and conferring mechanical stability, to catalysis of biochemical reactions, transport, and signal transduction.
DeepFRI is a neural network designed to predict protein function within the framework of the Gene Ontology (GO). The exponential growth in the number of available protein sequences, driven by advancements in low-cost sequencing technologies and computational methods (e.g. gene prediction), has resulted in a pressing need for efficient software to facilitate the annotation of protein databases.
Metagenomic-DeepFRI addresses such need, building upon efficient libraries. It incorporates novel databases of predicted structures (AlphaFold, ESMFold, MIP, etc.) and improves runtimes of DeepFRI by [2-12 times](https://github.com/bioinf-mcb/Metagenomic-DeepFRI/blob/main/weight_convert/onnx_vs_tf2.png)!

### 📋 Pipeline stages

1. Search proteins similar to query in PDB and supplied `FoldComp` databases with `MMSeqs2`.
2. Find the best alignment among `MMSeqs2` hits using `PyOpal`.
3. Align target protein contact map to query protein with unknown structure.
4. Run `DeepFRI` with structure if it was found in database, otherwise run `DeepFRI` with sequence only.

### 🛠️ Built With

* [MMseqs2](https://github.com/soedinglab/MMseqs2)
* [pyOpal](https://github.com/althonos/pyOpal)
* [DeepFRI](https://github.com/flatironinstitute/DeepFRI)
* [FoldComp](https://github.com/steineggerlab/foldcomp)
* [ONNX](https://github.com/onnx/onnx)

## 🔧 Installation

1. Download environment YAML.
```{code-block} bash
wget https://raw.githubusercontent.com/bioinf-mcb/Metagenomic-DeepFRI/main/environment.yml
```
2. Setup conda environment and actiate it.
```{code-block} bash
conda env create --name deepfri --file environment.yml
conda activate deepfri
# Optional cleanup
rm environment.yml
```
3. Run and view the help message.
```{code-block} bash
mDeepFRI --help
```

## 💡 Usage
### 1. Prepare structural database
#### 1.1 Existing `FoldComp` databases
The PDB database will be automatically downloaded and installed during first run of `mDeepFRI`. The PDB suffers from formatting inconsistencies, therefore during PDB alignment around 10% will fail and will be reported via `WARNING`. We suggest coupling PDB search with predicted databaes.

You can download additional databases from [website](https://foldcomp.steineggerlab.workers.dev/). During a first run, FASTA sequences will be extracted from `FoldComp` database and `MMseqs2` database will be create and indexed. You can use different databases, but be mindful that computation time might increase exponentially with the size of the database.

Tested databases:
- `afdb_swissprot`
- `afdb_swissprot_v4`
- `afdb_rep_v4`
- `afdb_rep_dark_v4`
- `afdb_uniprot_v4`
- `esmatlas`
- `esmatlas_v2023_02`
- `highquality_clust30`


`ATTENTION:` Please, do not rename downloaded databases. `FoldComp` has certain inconsistencies in the way FASTA sequences are extracted ([example](https://github.com/steineggerlab/foldcomp/issues/51)), therefore pipeline was tweaked for each database. If database you need does not work, please report in [issues](https://github.com/bioinf-mcb/Metagenomic-DeepFRI/issues) and we will add it as soon as possible. Sorry for the inconvenience.

`ATTENTION:` database creation is a very sensitive step which relies on external software. If pipeline is interrupted during this step, the databases might be corrupted. If you are not sure about your database, rerun the pipeline with `--overwrite` flag - it will rerun database creation process.

#### 1.2. Custom `FoldComp` database
In order to use personal database of structures, you will have to create a custom FoldComp database. For that, download a `FoldComp` executable and run  the following command:
```
foldcomp compress [-t number] <dir|tar(.gz)> [<dir|tar|db>]
```

### 2. Download models
Two versions of models available:
- `v1.0` - is the original version from DeepFRI publication.
- `v1.1` - is a version finetuned on AlphaFold models and machine-generated Gene Ontology Uniprot annotations. You can read details about `v1.1` in [ISMB 2023 presentation by Pawel Szczerbiak](https://docs.google.com/presentation/d/1Pzn_gQH5-dDImpApSoWFQNu3WByFZYWqfesplANK9hI/edit?usp=sharing)

To download models run command:
```
mDeepFRI get-models --output path/to/weights/folder -v {1.0 or 1.1}
```

### 3. Predict protein function & capture log
```
mDeepFRI predict-function -i /path/to/protein/sequences -d /path/to/foldcomp/database/ -w /path/to/deepfri/weights/folder -o /output_path 2> log.txt
```

The `logging` module writes output into `stderr`, so use `2>` to redirect it to the file.
Other available parameters can be found upon command `mDeepFRI --help`.

## ✅ Results
The output folder will contain:
1. `{database_name}.search_results.tsv`
2. `query.mmseqsDB` + index from MMSeqs2 search.
3. `results.tsv` - a final output from the DeepFRI model.

### Example output (`results.tsv`)
|  Protein     | GO_term/EC_numer | Score | Annotation                                   | Neural_net | DeepFRI_mode | DB_hit        | DB_name        |Identity |
|--------------|------------------|-------|----------------------------------------------|------------|--------------|---------------|----------------|------------|
| MIP_00215364 | GO:0016798       | 0.218 | hydrolase activity, acting on glycosyl bonds | gcn        | mf           | MIP_00215364  | mip_rosetta_hq |0.933      |
| 1GVH_1 | GO:0009055       | 0.217 | electron transfer activity	                 | gnn        | mf           | 	AF-P24232-F1-model_v4 | afdb_swissprot_v4 | 1.0  |
| unaligned | 3.2.1.-          | 0.215 | 3.2.1.-                        | cnn        | ec           | nan | nan | nan

This is an example of protein annotation with the AlphaFold database.
- Protein - the name of the protein from the FASTA file.
- GO_term/EC_numer - predicted GO term or EC number (dependent on mode)
- Score - DeepFRI score, translates to model confidence in prediction. Details in [publication](https://www.nature.com/articles/s41467-021-23303-9).
- Annotation - annotation from ontology
- Neural_net - type of neural network used for prediction (gcn = Graph Convolutional Network; cnn = Convolutional Neural Network). GCN (Graph Convolutional Network) is used when structural information is available in the database, allowing for generally more confident predictions. When there are no proteins above similarity cut-off (50% identity by default), CNN is used.
- DeepFRI_mode:
   ```
   mf = molecular_function
   bp = biological_process
   cc = cellular_component
   ec = enzyme_commission
   ```
- DB_hit - name of the hit in the database. Empty if no hit was found.
- DB_name - name of the database. Empty if no hit was found.
- Identity - sequence identity between query and hit. Empty if no hit was found.

## ⚙️Features
### 1. Prediction modes
The GO ontology contains three subontologies, defined by their root nodes:
- Molecular Function (MF)
- Biological Process (BP)
- Cellular Component (CC)
- Additionally, Metagenomic-DeepFRI v1.0 is able to predict Enzyme Comission number (EC).
By default, the tool makes predictions in all 4 categories. To select only a few pass the parameter `-p` or `--processing-modes` few times, i.e.:
```
mDeepFRI predict-function -i /path/to/protein/sequences -d /path/to/foldcomp/database/ -w /path/to/deepfri/weights/folder -o /output_path -p mf -p bp
```

### 2. Hierarchical database search
Different databases have a different level of evidence. For example, PDB structures are real experimental structures, thus they are considered to be the data of highest quality. Therefore new proteins are first queried against PDB. Computational predictions differ by quality, i.e. AlphaFold predictions are often more accurate than ESMFold predictions. We provide an opporunity to search multiple databases in a hierarchical manner. For example, if you want to search AlphaFold database first, and then ESMFold, you can pass the parameter `-d` or `--databases` few times, i.e.:
```
mDeepFRI predict-function -i /path/to/protein/sequences -d /path/to/alphafold/database/ -d /path/to/another/esmcomp/database/ -w /path/to/deepfri/weights/folder -o /output_path
```

### 3. Temporary files
The first run of `mDeepFRI` with the database will create temporary files, needed for the pipeline. If you don't want to keep them for the next run add
flag `--remove-intermediate`.

### 4. CPU / GPU utilization
If argument `threads` is provided, the app will parallelize certain steps (alignment, contact map alignment, functional annotation).
GPU is often used to speed up neural networks. Metagenomic-DeepFRI takes care of this and, if CUDA is installed on your machine, `mDeepFRI` will automatically use it for prediction. If not, the model will use CPUs.
**Technical tip:** Single instance of DeepFRI on GPU requires 2GB VRAM. Every currently available GPU with CUDA support should be able to run the model.

## 🔖 Citations
Metagenomic-DeepFRI is a scientific software. If you use it in an academic work, please cite the papers behind it:
- Gligorijević et al. "Structure-based protein function prediction using graph convolutional networks" Nat. Comms. (2021). https://doi.org/10.1038/s41467-021-23303-9
- Steinegger & Söding "MMseqs2 enables sensitive protein sequence searching for the analysis of massive data sets" Nat. Biotechnol. (2017) https://doi.org/10.1038/nbt.3988
- Kim, Midrita & Steinegger "Foldcomp: a library and format for compressing and indexing large protein structure sets" Bioinformatics (2023) https://doi.org/10.1093/bioinformatics/btad153
- Maranga et al. "Comprehensive Functional Annotation of Metagenomes and Microbial Genomes Using a Deep Learning-Based Method" mSystems (2023) https://doi.org/10.1128/msystems.01178-22

## 💭 Feedback

### ⚠️ Issue Tracker

Found a bug ? Have an enhancement request ? Head over to the [GitHub issue
tracker](https://github.com/bioinf-mcb/Metagenomic-DeepFRI/issues) if you need to report
or ask something. If you are filing in on a bug, please include as much
information as you can about the issue, and try to recreate the same bug
in a simple, easily reproducible situation.

### 🏗️ Contributing

Contributions are more than welcome! See
[`CONTRIBUTING.md`](https://github.com/bioinf-mcb/Metagenomic-DeepFRI/blob/main/CONTRIBUTING.md)
for more details.

## 📋 Changelog

This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
and provides a [changelog](https://github.com/bioinf-mcb/Metagenomic-DeepFRI/blob/main/CONTRIBUTING.md)
in the [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) format.


## ⚖️ License

This library is provided under the [The 3-Clause BSD License](https://opensource.org/license/bsd-3-clause/).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/bioinf-mcb/Metagenomic-DeepFRI",
    "name": "mDeepFRI",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "protein function metagenomics deep neural network",
    "author": "Valentyn Bezshapkin, Piotr Kucharski",
    "author_email": "valentyn.bezshapkin@micro.biol.ethz.ch, soliareofastorauj@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/83/c8/e642c62efce2b4bbc8e06aaa9f7f70bcdc416c5585c8ec98f8fc83057a80/mDeepFRI-1.1.5.tar.gz",
    "platform": null,
    "description": "# \ud83c\udf73 Metagenomic-DeepFRI [![Stars](https://img.shields.io/github/stars/bioinf-MCB/Metagenomic-DeepFRI.svg?style=social&maxAge=3600&label=Star)](https://github.com/bioinf-MCB/Metagenomic-DeepFRI/stargazers)\n*A pipeline for annotation of genes with [DeepFRI](https://github.com/flatironinstitute/DeepFRI), a deep learning model for functional protein annotation with [Gene Ontology (GO) terms](https://geneontology.org/docs/go-annotations/). It incorporates [FoldComp](https://github.com/steineggerlab/foldcomp) databases of predicted protein structures for fast annotation of metagenomic gene catalogues.*\n\n## \ud83d\udd0d Overview\nProteins perform most of the work of living cells. Amino acid sequence and structural features of proteins determine a wide range of functions: from binding specificity and conferring mechanical stability, to catalysis of biochemical reactions, transport, and signal transduction.\nDeepFRI is a neural network designed to predict protein function within the framework of the Gene Ontology (GO). The exponential growth in the number of available protein sequences, driven by advancements in low-cost sequencing technologies and computational methods (e.g. gene prediction), has resulted in a pressing need for efficient software to facilitate the annotation of protein databases.\nMetagenomic-DeepFRI addresses such need, building upon efficient libraries. It incorporates novel databases of predicted structures (AlphaFold, ESMFold, MIP, etc.) and improves runtimes of DeepFRI by [2-12 times](https://github.com/bioinf-mcb/Metagenomic-DeepFRI/blob/main/weight_convert/onnx_vs_tf2.png)!\n\n### \ud83d\udccb Pipeline stages\n\n1. Search proteins similar to query in PDB and supplied `FoldComp` databases with `MMSeqs2`.\n2. Find the best alignment among `MMSeqs2` hits using `PyOpal`.\n3. Align target protein contact map to query protein with unknown structure.\n4. Run `DeepFRI` with structure if it was found in database, otherwise run `DeepFRI` with sequence only.\n\n### \ud83d\udee0\ufe0f Built With\n\n* [MMseqs2](https://github.com/soedinglab/MMseqs2)\n* [pyOpal](https://github.com/althonos/pyOpal)\n* [DeepFRI](https://github.com/flatironinstitute/DeepFRI)\n* [FoldComp](https://github.com/steineggerlab/foldcomp)\n* [ONNX](https://github.com/onnx/onnx)\n\n## \ud83d\udd27 Installation\n\n1. Download environment YAML.\n```{code-block} bash\nwget https://raw.githubusercontent.com/bioinf-mcb/Metagenomic-DeepFRI/main/environment.yml\n```\n2. Setup conda environment and actiate it.\n```{code-block} bash\nconda env create --name deepfri --file environment.yml\nconda activate deepfri\n# Optional cleanup\nrm environment.yml\n```\n3. Run and view the help message.\n```{code-block} bash\nmDeepFRI --help\n```\n\n## \ud83d\udca1 Usage\n### 1. Prepare structural database\n#### 1.1 Existing `FoldComp` databases\nThe PDB database will be automatically downloaded and installed during first run of `mDeepFRI`. The PDB suffers from formatting inconsistencies, therefore during PDB alignment around 10% will fail and will be reported via `WARNING`. We suggest coupling PDB search with predicted databaes.\n\nYou can download additional databases from [website](https://foldcomp.steineggerlab.workers.dev/). During a first run, FASTA sequences will be extracted from `FoldComp` database and `MMseqs2` database will be create and indexed. You can use different databases, but be mindful that computation time might increase exponentially with the size of the database.\n\nTested databases:\n- `afdb_swissprot`\n- `afdb_swissprot_v4`\n- `afdb_rep_v4`\n- `afdb_rep_dark_v4`\n- `afdb_uniprot_v4`\n- `esmatlas`\n- `esmatlas_v2023_02`\n- `highquality_clust30`\n\n\n`ATTENTION:` Please, do not rename downloaded databases. `FoldComp` has certain inconsistencies in the way FASTA sequences are extracted ([example](https://github.com/steineggerlab/foldcomp/issues/51)), therefore pipeline was tweaked for each database. If database you need does not work, please report in [issues](https://github.com/bioinf-mcb/Metagenomic-DeepFRI/issues) and we will add it as soon as possible. Sorry for the inconvenience.\n\n`ATTENTION:` database creation is a very sensitive step which relies on external software. If pipeline is interrupted during this step, the databases might be corrupted. If you are not sure about your database, rerun the pipeline with `--overwrite` flag - it will rerun database creation process.\n\n#### 1.2. Custom `FoldComp` database\nIn order to use personal database of structures, you will have to create a custom FoldComp database. For that, download a `FoldComp` executable and run  the following command:\n```\nfoldcomp compress [-t number] <dir|tar(.gz)> [<dir|tar|db>]\n```\n\n### 2. Download models\nTwo versions of models available:\n- `v1.0` - is the original version from DeepFRI publication.\n- `v1.1` - is a version finetuned on AlphaFold models and machine-generated Gene Ontology Uniprot annotations. You can read details about `v1.1` in [ISMB 2023 presentation by Pawel Szczerbiak](https://docs.google.com/presentation/d/1Pzn_gQH5-dDImpApSoWFQNu3WByFZYWqfesplANK9hI/edit?usp=sharing)\n\nTo download models run command:\n```\nmDeepFRI get-models --output path/to/weights/folder -v {1.0 or 1.1}\n```\n\n### 3. Predict protein function & capture log\n```\nmDeepFRI predict-function -i /path/to/protein/sequences -d /path/to/foldcomp/database/ -w /path/to/deepfri/weights/folder -o /output_path 2> log.txt\n```\n\nThe `logging` module writes output into `stderr`, so use `2>` to redirect it to the file.\nOther available parameters can be found upon command `mDeepFRI --help`.\n\n## \u2705 Results\nThe output folder will contain:\n1. `{database_name}.search_results.tsv`\n2. `query.mmseqsDB` + index from MMSeqs2 search.\n3. `results.tsv` - a final output from the DeepFRI model.\n\n### Example output (`results.tsv`)\n|  Protein     | GO_term/EC_numer | Score | Annotation                                   | Neural_net | DeepFRI_mode | DB_hit        | DB_name        |Identity |\n|--------------|------------------|-------|----------------------------------------------|------------|--------------|---------------|----------------|------------|\n| MIP_00215364 | GO:0016798       | 0.218 | hydrolase activity, acting on glycosyl bonds | gcn        | mf           | MIP_00215364  | mip_rosetta_hq |0.933      |\n| 1GVH_1 | GO:0009055       | 0.217 | electron transfer activity\t                 | gnn        | mf           | \tAF-P24232-F1-model_v4 | afdb_swissprot_v4 | 1.0  |\n| unaligned | 3.2.1.-          | 0.215 | 3.2.1.-                        | cnn        | ec           | nan | nan | nan\n\nThis is an example of protein annotation with the AlphaFold database.\n- Protein - the name of the protein from the FASTA file.\n- GO_term/EC_numer - predicted GO term or EC number (dependent on mode)\n- Score - DeepFRI score, translates to model confidence in prediction. Details in [publication](https://www.nature.com/articles/s41467-021-23303-9).\n- Annotation - annotation from ontology\n- Neural_net - type of neural network used for prediction (gcn = Graph Convolutional Network; cnn = Convolutional Neural Network). GCN (Graph Convolutional Network) is used when structural information is available in the database, allowing for generally more confident predictions. When there are no proteins above similarity cut-off (50% identity by default), CNN is used.\n- DeepFRI_mode:\n   ```\n   mf = molecular_function\n   bp = biological_process\n   cc = cellular_component\n   ec = enzyme_commission\n   ```\n- DB_hit - name of the hit in the database. Empty if no hit was found.\n- DB_name - name of the database. Empty if no hit was found.\n- Identity - sequence identity between query and hit. Empty if no hit was found.\n\n## \u2699\ufe0fFeatures\n### 1. Prediction modes\nThe GO ontology contains three subontologies, defined by their root nodes:\n- Molecular Function (MF)\n- Biological Process (BP)\n- Cellular Component (CC)\n- Additionally, Metagenomic-DeepFRI v1.0 is able to predict Enzyme Comission number (EC).\nBy default, the tool makes predictions in all 4 categories. To select only a few pass the parameter `-p` or `--processing-modes` few times, i.e.:\n```\nmDeepFRI predict-function -i /path/to/protein/sequences -d /path/to/foldcomp/database/ -w /path/to/deepfri/weights/folder -o /output_path -p mf -p bp\n```\n\n### 2. Hierarchical database search\nDifferent databases have a different level of evidence. For example, PDB structures are real experimental structures, thus they are considered to be the data of highest quality. Therefore new proteins are first queried against PDB. Computational predictions differ by quality, i.e. AlphaFold predictions are often more accurate than ESMFold predictions. We provide an opporunity to search multiple databases in a hierarchical manner. For example, if you want to search AlphaFold database first, and then ESMFold, you can pass the parameter `-d` or `--databases` few times, i.e.:\n```\nmDeepFRI predict-function -i /path/to/protein/sequences -d /path/to/alphafold/database/ -d /path/to/another/esmcomp/database/ -w /path/to/deepfri/weights/folder -o /output_path\n```\n\n### 3. Temporary files\nThe first run of `mDeepFRI` with the database will create temporary files, needed for the pipeline. If you don't want to keep them for the next run add\nflag `--remove-intermediate`.\n\n### 4. CPU / GPU utilization\nIf argument `threads` is provided, the app will parallelize certain steps (alignment, contact map alignment, functional annotation).\nGPU is often used to speed up neural networks. Metagenomic-DeepFRI takes care of this and, if CUDA is installed on your machine, `mDeepFRI` will automatically use it for prediction. If not, the model will use CPUs.\n**Technical tip:** Single instance of DeepFRI on GPU requires 2GB VRAM. Every currently available GPU with CUDA support should be able to run the model.\n\n## \ud83d\udd16 Citations\nMetagenomic-DeepFRI is a scientific software. If you use it in an academic work, please cite the papers behind it:\n- Gligorijevi\u0107 et al. \"Structure-based protein function prediction using graph convolutional networks\" Nat. Comms. (2021). https://doi.org/10.1038/s41467-021-23303-9\n- Steinegger & S\u00f6ding \"MMseqs2 enables sensitive protein sequence searching for the analysis of massive data sets\" Nat. Biotechnol. (2017) https://doi.org/10.1038/nbt.3988\n- Kim, Midrita & Steinegger \"Foldcomp: a library and format for compressing and indexing large protein structure sets\" Bioinformatics (2023) https://doi.org/10.1093/bioinformatics/btad153\n- Maranga et al. \"Comprehensive Functional Annotation of Metagenomes and Microbial Genomes Using a Deep Learning-Based Method\" mSystems (2023) https://doi.org/10.1128/msystems.01178-22\n\n## \ud83d\udcad Feedback\n\n### \u26a0\ufe0f Issue Tracker\n\nFound a bug ? Have an enhancement request ? Head over to the [GitHub issue\ntracker](https://github.com/bioinf-mcb/Metagenomic-DeepFRI/issues) if you need to report\nor ask something. If you are filing in on a bug, please include as much\ninformation as you can about the issue, and try to recreate the same bug\nin a simple, easily reproducible situation.\n\n### \ud83c\udfd7\ufe0f Contributing\n\nContributions are more than welcome! See\n[`CONTRIBUTING.md`](https://github.com/bioinf-mcb/Metagenomic-DeepFRI/blob/main/CONTRIBUTING.md)\nfor more details.\n\n## \ud83d\udccb Changelog\n\nThis project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)\nand provides a [changelog](https://github.com/bioinf-mcb/Metagenomic-DeepFRI/blob/main/CONTRIBUTING.md)\nin the [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) format.\n\n\n## \u2696\ufe0f License\n\nThis library is provided under the [The 3-Clause BSD License](https://opensource.org/license/bsd-3-clause/).\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Pipeline for searching and aligning contact maps for proteins, then running DeepFri's GCN.",
    "version": "1.1.5",
    "project_urls": {
        "Download": "https://github.com/bioinf-mcb/Metagenomic-DeepFRI",
        "Homepage": "https://github.com/bioinf-mcb/Metagenomic-DeepFRI"
    },
    "split_keywords": [
        "protein",
        "function",
        "metagenomics",
        "deep",
        "neural",
        "network"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed19f44d80e8d69130f83363835a053107667369094e4d9b9ba2acf923f23b7d",
                "md5": "768e1420d81aead0b2f8c20a504efb6d",
                "sha256": "642a7830b9fdeb3bd372628a705d3e8f44c5c38081af701e61efedd553df0f08"
            },
            "downloads": -1,
            "filename": "mDeepFRI-1.1.5-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "768e1420d81aead0b2f8c20a504efb6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 3209552,
            "upload_time": "2024-04-01T22:23:53",
            "upload_time_iso_8601": "2024-04-01T22:23:53.089661Z",
            "url": "https://files.pythonhosted.org/packages/ed/19/f44d80e8d69130f83363835a053107667369094e4d9b9ba2acf923f23b7d/mDeepFRI-1.1.5-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "829111c97f4a916459837f28206f1beb848f818e9109966d07bd4d41a2dc2b20",
                "md5": "28cd4320ed235f7aeab7bc02858b032d",
                "sha256": "0b917c72e1c7da40ad67ba27858cf90465be64b3bcdc5c47e1742c9566322130"
            },
            "downloads": -1,
            "filename": "mDeepFRI-1.1.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "28cd4320ed235f7aeab7bc02858b032d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 3225766,
            "upload_time": "2024-04-01T22:23:54",
            "upload_time_iso_8601": "2024-04-01T22:23:54.674948Z",
            "url": "https://files.pythonhosted.org/packages/82/91/11c97f4a916459837f28206f1beb848f818e9109966d07bd4d41a2dc2b20/mDeepFRI-1.1.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc1ece21b18da27382ba2ddf0ae42032826c2ff76a56151ea6ed95d05f22b225",
                "md5": "050de39f1fab2cc391a4980bba5ce72a",
                "sha256": "e2ac01a0594406637292010c9960bf16f5143ed8be086a3e3b24c57925a1f88e"
            },
            "downloads": -1,
            "filename": "mDeepFRI-1.1.5-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "050de39f1fab2cc391a4980bba5ce72a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 3209756,
            "upload_time": "2024-04-01T22:23:56",
            "upload_time_iso_8601": "2024-04-01T22:23:56.202547Z",
            "url": "https://files.pythonhosted.org/packages/bc/1e/ce21b18da27382ba2ddf0ae42032826c2ff76a56151ea6ed95d05f22b225/mDeepFRI-1.1.5-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13bb957f22145f294de3b1d1527609695beb75b4894527e9ac83037b9ca3bab5",
                "md5": "1094569b0ea33fa83ccf96ce61c34c3f",
                "sha256": "8e4f027c5f8a0d8e359e2ca3359096c2d49def73a7414f1081cdec6fbf689563"
            },
            "downloads": -1,
            "filename": "mDeepFRI-1.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1094569b0ea33fa83ccf96ce61c34c3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 3278561,
            "upload_time": "2024-04-01T22:23:58",
            "upload_time_iso_8601": "2024-04-01T22:23:58.110461Z",
            "url": "https://files.pythonhosted.org/packages/13/bb/957f22145f294de3b1d1527609695beb75b4894527e9ac83037b9ca3bab5/mDeepFRI-1.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1867d54dc1210c7623fcaa01a216b539e55040826a2d03f3b6f48f01135cecb",
                "md5": "3a97e2015fc4d5a815fa2958dd45d398",
                "sha256": "4a6e599c93670f9a31532553fa37b6c0356f8ab95a4c51096d07a5404c4fe7c8"
            },
            "downloads": -1,
            "filename": "mDeepFRI-1.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3a97e2015fc4d5a815fa2958dd45d398",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 3294425,
            "upload_time": "2024-04-01T22:24:00",
            "upload_time_iso_8601": "2024-04-01T22:24:00.378239Z",
            "url": "https://files.pythonhosted.org/packages/c1/86/7d54dc1210c7623fcaa01a216b539e55040826a2d03f3b6f48f01135cecb/mDeepFRI-1.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff7154642ecc48929bb7bab28057b76e9812f561f7a4e710d25995bf79131ff4",
                "md5": "ccc9618bfd78c20fd9b6fc77230f6a0e",
                "sha256": "ee70112eae9969d2f65e9642e745ee201829413651dff4c60a3afc21b0fbf5ce"
            },
            "downloads": -1,
            "filename": "mDeepFRI-1.1.5-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ccc9618bfd78c20fd9b6fc77230f6a0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 3210853,
            "upload_time": "2024-04-01T22:24:02",
            "upload_time_iso_8601": "2024-04-01T22:24:02.740483Z",
            "url": "https://files.pythonhosted.org/packages/ff/71/54642ecc48929bb7bab28057b76e9812f561f7a4e710d25995bf79131ff4/mDeepFRI-1.1.5-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e1defb07f252ec136cf22120e711ece70e750bbd7b2e813d327218942e84933",
                "md5": "226a65d96f51080b5744a4476fa579df",
                "sha256": "9ceb27c3167c9b559c3d1fc9b5a6f32f73bc4ffdeca8f5962fccab9959e22cf0"
            },
            "downloads": -1,
            "filename": "mDeepFRI-1.1.5-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "226a65d96f51080b5744a4476fa579df",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 3209332,
            "upload_time": "2024-04-01T22:24:04",
            "upload_time_iso_8601": "2024-04-01T22:24:04.486607Z",
            "url": "https://files.pythonhosted.org/packages/6e/1d/efb07f252ec136cf22120e711ece70e750bbd7b2e813d327218942e84933/mDeepFRI-1.1.5-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "664258792e33a88a0fd7a5e064a1d3b990e8f3c7d08cf33f75a9ac275bb891eb",
                "md5": "8b8463888b64422f27700715d96338e5",
                "sha256": "e92eeff7b42099f53eb4dda90f049643b0450144a01029016fd5f003a083e5fe"
            },
            "downloads": -1,
            "filename": "mDeepFRI-1.1.5-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8b8463888b64422f27700715d96338e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 3211056,
            "upload_time": "2024-04-01T22:24:05",
            "upload_time_iso_8601": "2024-04-01T22:24:05.959469Z",
            "url": "https://files.pythonhosted.org/packages/66/42/58792e33a88a0fd7a5e064a1d3b990e8f3c7d08cf33f75a9ac275bb891eb/mDeepFRI-1.1.5-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83c8e642c62efce2b4bbc8e06aaa9f7f70bcdc416c5585c8ec98f8fc83057a80",
                "md5": "38fa1ae8586d3be701008171cf777d0d",
                "sha256": "9ca1a1c761eea7735298779315457bcadd89f9ca884b5ec7929c8a26eed950de"
            },
            "downloads": -1,
            "filename": "mDeepFRI-1.1.5.tar.gz",
            "has_sig": false,
            "md5_digest": "38fa1ae8586d3be701008171cf777d0d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 34744,
            "upload_time": "2024-04-01T22:24:07",
            "upload_time_iso_8601": "2024-04-01T22:24:07.871604Z",
            "url": "https://files.pythonhosted.org/packages/83/c8/e642c62efce2b4bbc8e06aaa9f7f70bcdc416c5585c8ec98f8fc83057a80/mDeepFRI-1.1.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-01 22:24:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "bioinf-mcb",
    "github_project": "Metagenomic-DeepFRI",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "mdeepfri"
}
        
Elapsed time: 0.22802s