pgp-reconstruction


Namepgp-reconstruction JSON
Version 0.0.6 PyPI version JSON
download
home_page
SummaryPathway-Guided Pruning Reconstruction of constraint-based metabolic models
upload_time2023-11-27 22:54:18
maintainer
docs_urlNone
authorrcolpo (Rodrigo Amarante Colpo)
requires_python
licenseApache Software License 2.0
keywords python carveme pgp reconstruction gapseq
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PGP-Reconstruction

![PGP Reconstruction Logo](logo_pgp.png)

Pathway-Guided Pruning Reconstruction (PGP-Reconstruction) is a Python tool for reconstructing draft constraint-based Genome-Scale Metabolic Models (GEMs) by pruning a universal model, following the general strategy introduced by CarveMe while addressing limitations on existing tools. PGP-Reconstruction can be particularly useful for microbiome simulations, as it allows metabolites to be transported outside the cell via passive diffusion, even if they are irrelevant to the cell's metabolism.

### Key Features
- Reconstruct GEMs using a top-down approach (same as CarveMe and GapSeq)
- Models are particularly relevant for microbiome simulations
- Capable of representing a wide range of pathways
- Reconstruct GEMs have almost zero blocked reactions
- Usage of Rhea as a reaction database
- Usage of Uniprot as a protein database
- Accept several input formats, including annotation files

## Algorithm overview

1) If the DNA sequence is used as input, ORFs are identifed and translated using Prodigal.
2) Proteins of the target organism are aligned with those from UniRef90.
3) To each reaction in the universal model, a score is assigned based on the alignment score and the organism's taxonomy.
4) Reactions with negative scores are potentially adjusted if they belong to pathways where nearly all reactions have positive scores.
5) A subset of the universal model that maximizes the total reaction scores while maintaining network connectivity and biomass formation is identified.
6) Based on experimental gene essentiality data, reactions likely included erroneously are identified and removed from the model.
7) Considering the completeness level of pathways in the model, reactions associated with promiscuous enzymes that don't contribute to nearly complete pathways are removed. At least one reaction from each promiscuous enzyme is retained.
8) An optimization similar to step 5 is performed while making negative the score of the rections identified in steps  6 and 7.
9) When relevant, passive diffusion reactions and spontaneous reactions are integrated into the model.

Incorporating passive diffusion reactions in step 9 renders PGP-Reconstruction especially useful for microbiome simulations. This feature enables metabolite transportation outside the cell via passive diffusion, even if this process does not contribute to its own metabolism.

### Input

PGP-Reconstruction requires two main pieces of information to function correctly: the organism's genome and the species' name. 

- **Genome:** This should be the complete genome of the organism of interest, protein sequences, or annotation data. It is used to predict expressed reactions and pathways in the organism and can be provided in one of two formats: sequences of nucleic acids or sequences of amino acids. If nucleic acids are given in a FASTA file (fna), Prodigal will be used to identify ORFs and translate them to amino acid sequences. If sequences of amino acids are given as input, it should receive the format of a FASTA file (faa) with multiple protein sequences. Finally, annotation files generated by Genbank (with the extensions '.gb', '.gbk', '.gbff' or '.genbank') or Prokka can be used as input.

- **Species Name:** This is used for taxonomic classification and identification of the core metabolism. It is passed as an input through the name of the sequence file. For example, if you are modeling *Escherichia coli*, your sequence file should be named `Escherichia_coli.faa` or `Escherichia_coli.gbk`. It should use the entire organism name; therefore, `e_coli.faa` should not be used. If the species' name is unknown, you can use its family, class, or genus classification.

Additional information can be provided to PGP-Reconstruction, which will improve the overall model quality:

- **Constraints** (Optional)**:** Users can create a constraints file that will be used during the model reconstruction. This file can include desired constraints, such as compounds that the model should be able to consume/produce, and environments where it should grow.
- **Ecocyc and KEGG Organisms databases** (Optional)**:** These databases are used to identify the core metabolism and redistribute reactions' scores. These files are optional, as you would need a subscription to KEGG/Ecocyc to have access to them.

### Output

The primary output of PGP-Reconstruction is a draft metabolic model of the desired organism. This model is presented as an SBML (Systems Biology Markup Language) file, which can be read and manipulated using various systems biology and bioinformatics tools. The model includes a comprehensive list of predicted reactions, growth media, and pathways. The model is compatible with FBA simulations.

The quality of the output model depends on the completeness of the input genome, how well annotated it is, and the effort put into creating the "Constraints" file.


## Libraries Used
`PGP-Reconstruction` uses several Python libraries to reconstruct models. The most relevant are:
- **CobraPy**: to load, write, and manipulate the model
- **ReFramed**: to formulate the optimization problem that will be solved by CPLEX
- **MinPath**: to predict the pathways present in the modeled organism

## Comparison with Main Alternative Tools

- **GapSeq** focuses on optimizing the sum of fluxes, while `PGP-Rec` maximizes the sum of scores, which we believe is a better approach for reconstructing metabolic models.
- **CarveMe** maximizes the sum of scores, but uses a smaller universal model derived from the BiGG database, limiting its ability to accurately represent certain pathways. `PGP-Rec` employs a larger universal model derived from the Rhea reaction database.
- **ModelSEED/KBase** leaves a high number of blocked reactions in draft models by default. `PGP-Rec` returns models with almost no blocked reactions by default.

Preliminary tests show that `PGP-Reconstruction` generates draft metabolic models with more reactions and pathways in common with manually curated models than those reconstructed by CarveMe and ModelSEED/KBase. Further testing and validation through a scientific publication are ongoing.

## Comparison with Other Alternative Tools

We adapted the table from [Mendoza et al. (2019)](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6685185/) to include `PGP-Rec`, as shown below:

![Systematic assessment of current genome-scale metabolic reconstruction tools](table.jpg)

Notes about the PGP-Rec classification on the table:
- **Able to reconstruct eukaryotes**: `PGP-Reconstruction` makes no distinction between internal cellular compartments. The only compartments that exit are the cytosol the and external cellular espace.
- **Fast**: `PGP-Reconstruction` is faster than GapSeq but slower than CarveMe and ModelSEED/KBase. Reconstructing a single model takes between 25-50 minutes on a standard modern computer (tests were performed on a Lenovo ThinkPad T490 notebook, with an Intel Core i5-8365U processor and 40GB of RAM).
- **Open-source**: while `PGP-Reconstruction` is open source, it relies on CPLEX, which is a commercial solver free for students and academics. Optionally, it can receive as input data from Ecocyc and KEGG Organisms, which are subscription-only databases.
- **Completeness of model fields**:  models reconstructed by`PGP-Reconstruction` will have included in their SBML file information about which pathways each reaction belongs to.
- **Manual Refinement Assistance**: `PGP-Reconstruction` doesn't provide a dedicated workspace for manual refinement. However, users can include constraints in an external file which will be taken into consideration during model reconstruction. Examples of constraints are: compounds the organism should consume/produce and environments where it should be capable of growing.
- **Customizability for Multiple Genomes**: `PGP-Reconstruction` can reconstruct one model per run. An external tool/code needs to be used to automatize the reconstruction of multiple models.
- **Automatic refinement using experimental data**: `PGP-Reconstruction` will load experimental data of gene essentiality from the [DEG database](http://origin.tubic.org/deg/public/index.php/download) and try to make essential in the model, genes that have been described as essential, if the gene has been identified during the alignment phase.


## Installation

PGP-Reconstruction can be installed using pip:

```bash
pip install pgp_reconstruction
```

PGP-Reconstruction automatically downloads and installs some dependencies during the first run, including: a slightly modified version of [MinPath](https://github.com/mgtools/MinPath), large databases from an [external server](https://files.ufz.de/~umb-pgp_reconstruction-01/), Prodigal from [its official GitHub repository](https://github.com/hyattpd/Prodigal/releases), and experimental data of gene essentiality from the [DEG database](http://origin.tubic.org/deg/public/index.php/download).

However, PGP-Reconstruction cannot install all dependencies automatically. You will need to install the following external dependencies manually:
- [Diamond](https://github.com/bbuchfink/diamond) (use the command `conda install -c bioconda diamond` or download the [latest release here](https://github.com/bbuchfink/diamond/releases))
- IBM [CPLEX](https://www.ibm.com/products/ilog-cplex-optimization-studio/cplex-optimizer) Optimizer. It is free for academic use.

### Troubleshooting

**Issue:** After running PGP-Reconstruction, you encounter the error message `TypeError: solve() got an unexpected keyword argument 'emphasis'`.

**Cause:** PGP-Reconstruction relies on the `reframed` Python library to formulate the optimization problem that CPLEX solves. The error indicates you might not have the most recent version of `reframed`.

**Solution:** You will need to manually update your `reframed` library. Follow these steps:

1. Visit the [reframed GitHub repository](https://github.com/cdanielmachado/reframed).
2. Download the project files.
3. Unzip the downloaded folder.
4. Navigate into the unzipped directory.
5. Install the library by running the command `pip install .` in your terminal.

These steps will ensure you are working with the latest version of `reframed`.


## Usage

After including the PGP-Reconstruction installation folder in your path environment, the simplest possible usage case would be:

```bash
pgprec Escherichia_coli.faa
```

If you do not wish to include PGP-Reconstruction in your path environment, you can use it as:

```bash
C:\[...]\Python\Python3X\Lib\site-packages\pgp_reconstruction\cli\pgprec.py Escherichia_coli.faa
```

A more complex usage would be:

```bash
pgprec Escherichia_coli.gbk --constraints constraints.txt --reference "Escherichia coli.xml"
```

You can find more information on the [example folder](https://github.com/rcolpo/pgp_reconstruction/tree/master/example).

## Further developments

PGP-Reconstruction uses [KEGG Organisms](https://www.genome.jp/kegg/catalog/org_list.html) and [Ecocyc](https://biocyc.org/biocyc-pgdb-list.shtml) to identify the core metabolism of the modeled species. These databases, however, are available via subscription only and can not be made publicly available. PGP-Reconstruction can still work while skipping this step, but it leads to slightly lower-quality models. In future versions of this tool, we would like to develop a public database that can be used to replace KEGG and Ecocyc for this specific task.


## License

PGP-Reconstruction is released under the [Apache Software License 2.0](https://www.apache.org/licenses/LICENSE-2.0).

## Support

If you encounter any issues or have any questions, please [open an issue](https://github.com/rcolpo/pgp_reconstruction/issues) or reach out to the [maintainer](https://github.com/rcolpo).

## Credits

This project (Nr. 100386143) is co-financed by means of taxation based on the budget adopted by the representatives of the Landtag of Saxony.

Developed by Rodrigo Amarante Colpo while working at the Helmholtz Centre for Environmental Research - UFZ.

Supervisors: [Sabine Kleinsteuber](https://www.ufz.de/index.php?en=39075), [Jens Olaf Krömer](https://www.ufz.de/index.php?en=42453), [Florian Centler](https://www.uni-siegen.de/lwf/departments/digitalegesundheitswissenschaften/professuren/bioinformatik/team/), and [Peter Florian Stadler](http://www.bioinf.uni-leipzig.de/~studla/index.html).


<p align="center">
  <img src="ufzLogo.jpg" alt="UFZ Logo" width="40%">
  <img src="leipzigUniLogo.jpg" alt="Leipzig Uni Logo" width="23%">
  <img src="Freistaat_sachsen_logo.jpg" alt="Freistaat Sachsen Logo" width="23%">
</p>





            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pgp-reconstruction",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "python,carveme,PGP Reconstruction,gapseq",
    "author": "rcolpo (Rodrigo Amarante Colpo)",
    "author_email": "<rodrigocolpo@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/6d/a9/da3a88e6d058c8c3711394acb5892fff44cd131096a37fcc601b01daf7b6/pgp_reconstruction-0.0.6.tar.gz",
    "platform": null,
    "description": "# PGP-Reconstruction\r\n\r\n![PGP Reconstruction Logo](logo_pgp.png)\r\n\r\nPathway-Guided Pruning Reconstruction (PGP-Reconstruction) is a Python tool for reconstructing draft constraint-based Genome-Scale Metabolic Models (GEMs) by pruning a universal model, following the general strategy introduced by CarveMe while addressing limitations on existing tools. PGP-Reconstruction can be particularly useful for microbiome simulations, as it allows metabolites to be transported outside the cell via passive diffusion, even if they are irrelevant to the cell's metabolism.\r\n\r\n### Key Features\r\n- Reconstruct GEMs using a top-down approach (same as CarveMe and GapSeq)\r\n- Models are particularly relevant for microbiome simulations\r\n- Capable of representing a wide range of pathways\r\n- Reconstruct GEMs have almost zero blocked reactions\r\n- Usage of Rhea as a reaction database\r\n- Usage of Uniprot as a protein database\r\n- Accept several input formats, including annotation files\r\n\r\n## Algorithm overview\r\n\r\n1) If the DNA sequence is used as input, ORFs are identifed and translated using Prodigal.\r\n2) Proteins of the target organism are aligned with those from UniRef90.\r\n3) To each reaction in the universal model, a score is assigned based on the alignment score and the organism's taxonomy.\r\n4) Reactions with negative scores are potentially adjusted if they belong to pathways where nearly all reactions have positive scores.\r\n5) A subset of the universal model that maximizes the total reaction scores while maintaining network connectivity and biomass formation is identified.\r\n6) Based on experimental gene essentiality data, reactions likely included erroneously are identified and removed from the model.\r\n7) Considering the completeness level of pathways in the model, reactions associated with promiscuous enzymes that don't contribute to nearly complete pathways are removed. At least one reaction from each promiscuous enzyme is retained.\r\n8) An optimization similar to step 5 is performed while making negative the score of the rections identified in steps  6 and 7.\r\n9) When relevant, passive diffusion reactions and spontaneous reactions are integrated into the model.\r\n\r\nIncorporating passive diffusion reactions in step 9 renders PGP-Reconstruction especially useful for microbiome simulations. This feature enables metabolite transportation outside the cell via passive diffusion, even if this process does not contribute to its own metabolism.\r\n\r\n### Input\r\n\r\nPGP-Reconstruction requires two main pieces of information to function correctly: the organism's genome and the species' name. \r\n\r\n- **Genome:** This should be the complete genome of the organism of interest, protein sequences, or annotation data. It is used to predict expressed reactions and pathways in the organism and can be provided in one of two formats: sequences of nucleic acids or sequences of amino acids. If nucleic acids are given in a FASTA file (fna), Prodigal will be used to identify ORFs and translate them to amino acid sequences. If sequences of amino acids are given as input, it should receive the format of a FASTA file (faa) with multiple protein sequences. Finally, annotation files generated by Genbank (with the extensions '.gb', '.gbk', '.gbff' or '.genbank') or Prokka can be used as input.\r\n\r\n- **Species Name:** This is used for taxonomic classification and identification of the core metabolism. It is passed as an input through the name of the sequence file. For example, if you are modeling *Escherichia coli*, your sequence file should be named `Escherichia_coli.faa` or `Escherichia_coli.gbk`. It should use the entire organism name; therefore, `e_coli.faa` should not be used. If the species' name is unknown, you can use its family, class, or genus classification.\r\n\r\nAdditional information can be provided to PGP-Reconstruction, which will improve the overall model quality:\r\n\r\n- **Constraints** (Optional)**:** Users can create a constraints file that will be used during the model reconstruction. This file can include desired constraints, such as compounds that the model should be able to consume/produce, and environments where it should grow.\r\n- **Ecocyc and KEGG Organisms databases** (Optional)**:** These databases are used to identify the core metabolism and redistribute reactions' scores. These files are optional, as you would need a subscription to KEGG/Ecocyc to have access to them.\r\n\r\n### Output\r\n\r\nThe primary output of PGP-Reconstruction is a draft metabolic model of the desired organism. This model is presented as an SBML (Systems Biology Markup Language) file, which can be read and manipulated using various systems biology and bioinformatics tools. The model includes a comprehensive list of predicted reactions, growth media, and pathways. The model is compatible with FBA simulations.\r\n\r\nThe quality of the output model depends on the completeness of the input genome, how well annotated it is, and the effort put into creating the \"Constraints\" file.\r\n\r\n\r\n## Libraries Used\r\n`PGP-Reconstruction` uses several Python libraries to reconstruct models. The most relevant are:\r\n- **CobraPy**: to load, write, and manipulate the model\r\n- **ReFramed**: to formulate the optimization problem that will be solved by CPLEX\r\n- **MinPath**: to predict the pathways present in the modeled organism\r\n\r\n## Comparison with Main Alternative Tools\r\n\r\n- **GapSeq** focuses on optimizing the sum of fluxes, while `PGP-Rec` maximizes the sum of scores, which we believe is a better approach for reconstructing metabolic models.\r\n- **CarveMe** maximizes the sum of scores, but uses a smaller universal model derived from the BiGG database, limiting its ability to accurately represent certain pathways. `PGP-Rec` employs a larger universal model derived from the Rhea reaction database.\r\n- **ModelSEED/KBase** leaves a high number of blocked reactions in draft models by default. `PGP-Rec` returns models with almost no blocked reactions by default.\r\n\r\nPreliminary tests show that `PGP-Reconstruction` generates draft metabolic models with more reactions and pathways in common with manually curated models than those reconstructed by CarveMe and ModelSEED/KBase. Further testing and validation through a scientific publication are ongoing.\r\n\r\n## Comparison with Other Alternative Tools\r\n\r\nWe adapted the table from [Mendoza et al. (2019)](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6685185/) to include `PGP-Rec`, as shown below:\r\n\r\n![Systematic assessment of current genome-scale metabolic reconstruction tools](table.jpg)\r\n\r\nNotes about the PGP-Rec classification on the table:\r\n- **Able to reconstruct eukaryotes**: `PGP-Reconstruction` makes no distinction between internal cellular compartments. The only compartments that exit are the cytosol the and external cellular espace.\r\n- **Fast**: `PGP-Reconstruction` is faster than GapSeq but slower than CarveMe and ModelSEED/KBase. Reconstructing a single model takes between 25-50 minutes on a standard modern computer (tests were performed on a Lenovo ThinkPad T490 notebook, with an Intel Core i5-8365U processor and 40GB of RAM).\r\n- **Open-source**: while `PGP-Reconstruction` is open source, it relies on CPLEX, which is a commercial solver free for students and academics. Optionally, it can receive as input data from Ecocyc and KEGG Organisms, which are subscription-only databases.\r\n- **Completeness of model fields**:  models reconstructed by`PGP-Reconstruction` will have included in their SBML file information about which pathways each reaction belongs to.\r\n- **Manual Refinement Assistance**: `PGP-Reconstruction` doesn't provide a dedicated workspace for manual refinement. However, users can include constraints in an external file which will be taken into consideration during model reconstruction. Examples of constraints are: compounds the organism should consume/produce and environments where it should be capable of growing.\r\n- **Customizability for Multiple Genomes**: `PGP-Reconstruction` can reconstruct one model per run. An external tool/code needs to be used to automatize the reconstruction of multiple models.\r\n- **Automatic refinement using experimental data**: `PGP-Reconstruction` will load experimental data of gene essentiality from the [DEG database](http://origin.tubic.org/deg/public/index.php/download) and try to make essential in the model, genes that have been described as essential, if the gene has been identified during the alignment phase.\r\n\r\n\r\n## Installation\r\n\r\nPGP-Reconstruction can be installed using pip:\r\n\r\n```bash\r\npip install pgp_reconstruction\r\n```\r\n\r\nPGP-Reconstruction automatically downloads and installs some dependencies during the first run, including: a slightly modified version of [MinPath](https://github.com/mgtools/MinPath), large databases from an [external server](https://files.ufz.de/~umb-pgp_reconstruction-01/), Prodigal from [its official GitHub repository](https://github.com/hyattpd/Prodigal/releases), and experimental data of gene essentiality from the [DEG database](http://origin.tubic.org/deg/public/index.php/download).\r\n\r\nHowever, PGP-Reconstruction cannot install all dependencies automatically. You will need to install the following external dependencies manually:\r\n- [Diamond](https://github.com/bbuchfink/diamond) (use the command `conda install -c bioconda diamond` or download the [latest release here](https://github.com/bbuchfink/diamond/releases))\r\n- IBM [CPLEX](https://www.ibm.com/products/ilog-cplex-optimization-studio/cplex-optimizer) Optimizer. It is free for academic use.\r\n\r\n### Troubleshooting\r\n\r\n**Issue:** After running PGP-Reconstruction, you encounter the error message `TypeError: solve() got an unexpected keyword argument 'emphasis'`.\r\n\r\n**Cause:** PGP-Reconstruction relies on the `reframed` Python library to formulate the optimization problem that CPLEX solves. The error indicates you might not have the most recent version of `reframed`.\r\n\r\n**Solution:** You will need to manually update your `reframed` library. Follow these steps:\r\n\r\n1. Visit the [reframed GitHub repository](https://github.com/cdanielmachado/reframed).\r\n2. Download the project files.\r\n3. Unzip the downloaded folder.\r\n4. Navigate into the unzipped directory.\r\n5. Install the library by running the command `pip install .` in your terminal.\r\n\r\nThese steps will ensure you are working with the latest version of `reframed`.\r\n\r\n\r\n## Usage\r\n\r\nAfter including the PGP-Reconstruction installation folder in your path environment, the simplest possible usage case would be:\r\n\r\n```bash\r\npgprec Escherichia_coli.faa\r\n```\r\n\r\nIf you do not wish to include PGP-Reconstruction in your path environment, you can use it as:\r\n\r\n```bash\r\nC:\\[...]\\Python\\Python3X\\Lib\\site-packages\\pgp_reconstruction\\cli\\pgprec.py Escherichia_coli.faa\r\n```\r\n\r\nA more complex usage would be:\r\n\r\n```bash\r\npgprec Escherichia_coli.gbk --constraints constraints.txt --reference \"Escherichia coli.xml\"\r\n```\r\n\r\nYou can find more information on the [example folder](https://github.com/rcolpo/pgp_reconstruction/tree/master/example).\r\n\r\n## Further developments\r\n\r\nPGP-Reconstruction uses [KEGG Organisms](https://www.genome.jp/kegg/catalog/org_list.html) and [Ecocyc](https://biocyc.org/biocyc-pgdb-list.shtml) to identify the core metabolism of the modeled species. These databases, however, are available via subscription only and can not be made publicly available. PGP-Reconstruction can still work while skipping this step, but it leads to slightly lower-quality models. In future versions of this tool, we would like to develop a public database that can be used to replace KEGG and Ecocyc for this specific task.\r\n\r\n\r\n## License\r\n\r\nPGP-Reconstruction is released under the [Apache Software License 2.0](https://www.apache.org/licenses/LICENSE-2.0).\r\n\r\n## Support\r\n\r\nIf you encounter any issues or have any questions, please [open an issue](https://github.com/rcolpo/pgp_reconstruction/issues) or reach out to the [maintainer](https://github.com/rcolpo).\r\n\r\n## Credits\r\n\r\nThis project (Nr. 100386143) is co-financed by means of taxation based on the budget adopted by the representatives of the Landtag of Saxony.\r\n\r\nDeveloped by Rodrigo Amarante Colpo while working at the Helmholtz Centre for Environmental Research - UFZ.\r\n\r\nSupervisors: [Sabine Kleinsteuber](https://www.ufz.de/index.php?en=39075), [Jens Olaf Kr\u00c3\u00b6mer](https://www.ufz.de/index.php?en=42453), [Florian Centler](https://www.uni-siegen.de/lwf/departments/digitalegesundheitswissenschaften/professuren/bioinformatik/team/), and [Peter Florian Stadler](http://www.bioinf.uni-leipzig.de/~studla/index.html).\r\n\r\n\r\n<p align=\"center\">\r\n  <img src=\"ufzLogo.jpg\" alt=\"UFZ Logo\" width=\"40%\">\r\n  <img src=\"leipzigUniLogo.jpg\" alt=\"Leipzig Uni Logo\" width=\"23%\">\r\n  <img src=\"Freistaat_sachsen_logo.jpg\" alt=\"Freistaat Sachsen Logo\" width=\"23%\">\r\n</p>\r\n\r\n\r\n\r\n\r\n",
    "bugtrack_url": null,
    "license": "Apache Software License 2.0",
    "summary": "Pathway-Guided Pruning Reconstruction of constraint-based metabolic models",
    "version": "0.0.6",
    "project_urls": null,
    "split_keywords": [
        "python",
        "carveme",
        "pgp reconstruction",
        "gapseq"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13ca279447917d76a6d8f43716b6323b637d22d27f61ee26a7ab8b93d29ae05c",
                "md5": "c1c182254980916b95c469822603541f",
                "sha256": "d11d77073ae689973ae892a2426e89e984d25cc87f78c69b35db948c23a48558"
            },
            "downloads": -1,
            "filename": "pgp_reconstruction-0.0.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c1c182254980916b95c469822603541f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 47249,
            "upload_time": "2023-11-27T22:54:16",
            "upload_time_iso_8601": "2023-11-27T22:54:16.693872Z",
            "url": "https://files.pythonhosted.org/packages/13/ca/279447917d76a6d8f43716b6323b637d22d27f61ee26a7ab8b93d29ae05c/pgp_reconstruction-0.0.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6da9da3a88e6d058c8c3711394acb5892fff44cd131096a37fcc601b01daf7b6",
                "md5": "35edcaf51759f2f5dd4059a8a594433e",
                "sha256": "85cbf36e1c6210f5a3abe3895df13c94b0f9bdae6f8dea11eb45c743aefbcb76"
            },
            "downloads": -1,
            "filename": "pgp_reconstruction-0.0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "35edcaf51759f2f5dd4059a8a594433e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 47813,
            "upload_time": "2023-11-27T22:54:18",
            "upload_time_iso_8601": "2023-11-27T22:54:18.787472Z",
            "url": "https://files.pythonhosted.org/packages/6d/a9/da3a88e6d058c8c3711394acb5892fff44cd131096a37fcc601b01daf7b6/pgp_reconstruction-0.0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-27 22:54:18",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pgp-reconstruction"
}
        
Elapsed time: 0.14446s