oggmap


Nameoggmap JSON
Version 0.0.1 PyPI version JSON
download
home_page
Summaryextract orthologous maps (short: orthomap) from OrthoFinder output for query species
upload_time2023-10-30 16:52:49
maintainer
docs_urlNone
author
requires_python>=3.8
licenseGPLv3
keywords orthomap gene age orthologs phylostratigraphy single-cell
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # oggmap

[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/kullrich/oggmap/build_check.yml?branch=main)](https://github.com/kullrich/oggmap/actions/workflows/build_check.yml)
[![PyPI](https://img.shields.io/pypi/v/oggmap?color=blue)](https://pypi.org/project/oggmap/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/oggmap)](https://pypi.org/project/oggmap/)
[![PyPI - Wheel](https://img.shields.io/pypi/wheel/oggmap)](https://pypi.org/project/oggmap/)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
[![docs-badge](https://readthedocs.org/projects/oggmap/badge/?version=latest)](https://oggmap.readthedocs.io/en/latest/?badge=latest)

## orthologous maps - evolutionary age index

[`oggmap`](https://github.com/kullrich/oggmap) is a python package to extract orthologous maps
(short: `orthomap` or in other words the evolutionary age of a given orthologous group) from OrthoFinder or eggNOG results.
Oggmap results (gene ages per orthologous group) can be further used to calculate and visualize weighted expression data
(transcriptome evolutionary index) from scRNA sequencing objects.

## Documentation

Online documentation can be found [here](https://oggmap.readthedocs.io/en/latest/).

## Installing `oggmap`

More installation options can be found [here](https://oggmap.readthedocs.io/en/latest/installation/index.html).

### oggmap installation using conda and pip

We recommend installing `oggmap` in an independent conda environment to avoid dependent software conflicts.
Please make a new python environment for `oggmap` and install dependent libraries in it.

If you do not have a working installation of Python 3.8 (or later),
consider installing [Anaconda](https://docs.anaconda.com/anaconda/install/) or
[Miniconda](https://docs.conda.io/en/latest/miniconda.html).

To create and activate the environment run:

```shell
$ git clone https://github.com/kullrich/oggmap.git
$ cd oggmap
$ conda env create --file environment.yml
$ conda activate oggmap_env
```

Then to install `oggmap` via PyPI:

```shell
$ pip install oggmap
```

## Quick usage

Detailed tutorials how to use `oggmap` can be found [here](https://oggmap.readthedocs.io/en/latest/tutorials/index.html).

### Update/download local ncbi taxonomic database:

The following command downloads or updates your local copy of the
NCBI's taxonomy database (~300MB). The database is saved at
`~/.etetoolkit/taxa.sqlite`.

```python
>>> from oggmap import ncbitax
>>> ncbitax.update_ncbi()
```

### Step 1 - Get query species taxonomic lineage information:

You can query a species lineage information based on its name or its
taxID. For example `Danio rerio` with taxID `7955`:

```python
>>> from oggmap import qlin
>>> qlin.get_qlin(q = 'Danio rerio')
>>> qlin.get_qlin(qt = '7955')
```

You can get the query species topology as a tree.
For example for `Danio rerio` with taxID `7955`:

```python
>>> from oggmap import qlin
>>> query_topology = qlin.get_lineage_topo(qt = '7955')
>>> query_topology.write()
```

### Step 2 - Get query species orthomap from OrthoFinder results:

The following code extracts the `orthomap` for `Danio rerio` based on pre-calculated 
OrthoFinder results and ensembl release-105:

OrthoFinder results (-S diamond_ultra_sens) using translated, longest-isoform coding sequences
from ensembl release-105 have been archived and can be found
[here](https://zenodo.org/record/7242264#.Y1p19i0Rowc).

```python
>>> from oggmap import datasets, of2orthomap
>>> datasets.ensembl105(datapath='.')
>>> query_orthomap = of2orthomap.get_orthomap(
...     seqname='Danio_rerio.GRCz11.cds.longest',
...     qt='7955',
...     sl='ensembl_105_orthofinder_species_list.tsv',
...     oc='ensembl_105_orthofinder_Orthogroups.GeneCount.tsv',
...     og='ensembl_105_orthofinder_Orthogroups.tsv',
...     out=None, quiet=False, continuity=True, overwrite=True)
>>> query_orthomap
```

### Step 3 - Map OrthoFinder gene names and scRNA gene/transcript names:

The following code extracts the gene to transcript table for `Danio rerio`:

GTF file obtained from [here](https://ftp.ensembl.org/pub/release-105/gtf/danio_rerio/Danio_rerio.GRCz11.105.gtf.gz).

```python
>>> from oggmap import datasets, gtf2t2g
>>> gtf_file = datasets.zebrafish_gtf(datapath='.')
>>> query_species_t2g = gtf2t2g.parse_gtf(
...     gtf=gtf_file,
...     g=True, b=True, p=True, v=True, s=True, q=True)
>>> query_species_t2g
```

Import now, the scRNA dataset of the query species.

example: **Danio rerio** - [http://tome.gs.washington.edu](http://tome.gs.washington.edu)
([Qui et al. 2022](https://www.nature.com/articles/s41588-022-01018-x))

`AnnData` file can be found [here](https://doi.org/10.5281/zenodo.7243602).

```python
>>> import scanpy as sc
>>> from oggmap import datasets, orthomap2tei
>>> # download zebrafish scRNA data here: https://doi.org/10.5281/zenodo.7243602
>>> # or download with datasets.qiu22_zebrafish(datapath='.')
>>> zebrafish_data = datasets.qiu22_zebrafish(datapath='.')
>>> zebrafish_data
>>> # check overlap of transcript table <gene_id> and scRNA data <var_names>
>>> orthomap2tei.geneset_overlap(zebrafish_data.var_names, query_species_t2g['gene_id'])
```

The `replace_by` helper function can be used to add a new column to the `orthomap` dataframe by matching e.g.
gene isoform names and their corresponding gene names.

```python
>>> # convert orthomap transcript IDs into GeneIDs and add them to orthomap
>>> query_orthomap['geneID'] = orthomap2tei.replace_by(
...    x_orig = query_orthomap['seqID'],
...    xmatch = query_species_t2g['transcript_id_version'],
...    xreplace = query_species_t2g['gene_id'])
>>> # check overlap of orthomap <geneID> and scRNA data
>>> orthomap2tei.geneset_overlap(zebrafish_data.var_names, query_orthomap['geneID'])
```

### Step 4 - Get transcriptome evolutionary index (TEI) values and add them to scRNA dataset:

Since now the gene names correspond to each other in the `orthomap` and the scRNA adata object,
one can calculate the transcriptome evolutionary index (TEI) and add them to the scRNA dataset (adata object).

```python
>>> # add TEI values to existing adata object
>>> orthomap2tei.get_tei(adata=zebrafish_data,
...    gene_id=query_orthomap['geneID'],
...    gene_age=query_orthomap['PSnum'],
...    keep='min',
...    layer=None,
...    add=True,
...    obs_name='tei',
...    boot=False,
...    bt=10,
...    normalize_total=False,
...    log1p=False,
...    target_sum=1e6)
```

### Step 5 - Downstream analysis

Once the gene age data has been added to the scRNA dataset,
one can e.g. plot the corresponding transcriptome evolutionary index (TEI) values
by any given observation pre-defined in the scRNA dataset.

#### Boxplot TEI per stage:

```python
>>>sc.pl.violin(adata=zebrafish_data,
...             keys=['tei'],
...             groupby='stage',
...             rotation=90,
...             palette='Paired',
...             stripplot=False,
...             inner='box')
```

## oggmap via Command Line

`oggmap` can also be used via the command line.

Command line documentation can be found [here](https://oggmap.readthedocs.io/en/latest/modules/oggmap.html).

```shell
$ oggmap
```

```
usage: oggmap <sub-command>

oggmap

optional arguments:
  -h, --help            show this help message and exit

sub-commands:
  {cds2aa,gtf2t2g,ncbitax,of2orthomap,plaza2orthomap,qlin}
                        sub-commands help
    cds2aa              translate CDS to AA and optional retain longest
                        isoform <cds2aa -h>
    gtf2t2g             extracts transcript to gene table from GTF <gtf2t2g
                        -h>
    ncbitax             update local ncbi taxonomy database <ncbitax -h>
    of2orthomap         extract orthomap from OrthoFinder output for query
                        species <orthomap -h>
    plaza2orthomap      extract orthomap from PLAZA gene family data for query
                        species <of2orthomap -h>
    qlin                get query lineage based on ncbi taxonomy <qlin -h>
```

To retrieve e.g. the lineage information for `Danio rerio` run the following command:

```shell
$ oggmap qlin -q "Danio rerio"
```

## Development Version

To work with the latest version [on GitHub](https://github.com/kullrich/oggmap):
clone the repository and `cd` into its root directory.

```shell
$ git clone kullrich/oggmap
$ cd oggmap
```

Install `oggmap` into your current python environment:

```shell
$ pip install -e .
```

## Testing `oggmap`

`oggmap` has an extensive test suite which is run each time a new contribution
is made to the repository. To run the test suite locally run:

```shell
$ pytest tests
```

## Contributing Code

If you would like to contribute to `oggmap`, please file an issue so that one can establish a statement of need, avoid redundant work, and track progress on your contribution.

Before you do a pull request, you should always file an issue and make sure that someone from the `oggmap` developer team agrees that it's a problem, and is happy with your basic proposal for fixing it.

Once an issue has been filed and we've identified how to best orient your
contribution with package development as a whole,
[fork](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo)
the [main repo](https://github.com/kullrich/oggmap/oggmap.git), branch off a
[feature
branch](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/about-branches)
from `master`,
[commit](https://docs.github.com/en/desktop/contributing-and-collaborating-using-github-desktop/committing-and-reviewing-changes-to-your-project)
and
[push](https://docs.github.com/en/github/using-git/pushing-commits-to-a-remote-repository)
your changes to your fork and submit a [pull
request](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests)
for `oggmap:master`.

By contributing to this project, you agree to abide by the Code of Conduct terms.

## Bug reports

Please post troubles or questions on the GitHub repository [issue tracker](https://github.com/kullrich/oggmap/issues).
Also, please look at the closed issue pages. This might give an answer to your question.

## Inquiry for collaboration or discussion

Please send e-mail to us if you want a discussion with us.

Principal code developer: Kristian Ullrich

E-mail address can be found [here](https://www.evolbio.mpg.de).

## Code of Conduct - Participation guidelines

This repository adheres to the [Contributor Covenant](http://contributor-covenant.org) code of conduct for in any interactions you have within this project. (see [Code of Conduct](https://github.com/kullrich/oggmap/-/blob/master/CODE_OF_CONDUCT.md))

See also the policy against sexualized discrimination, harassment and violence for the Max Planck Society [Code-of-Conduct](https://www.mpg.de/11961177/code-of-conduct-en.pdf).

By contributing to this project, you agree to abide by its terms.

## References

see references [here](https://oggmap.readthedocs.io/en/latest/references/index.html)

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "oggmap",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Kristian K Ullrich <ullrich@evolbio.mpg.de>",
    "keywords": "orthomap,gene age,orthologs,phylostratigraphy,single-cell",
    "author": "",
    "author_email": "Kristian K Ullrich <ullrich@evolbio.mpg.de>, Nikoleta E Glynatsi <glynatsi@evolbio.mpg.de>",
    "download_url": "https://files.pythonhosted.org/packages/3d/18/215bc62445380b490f2c79d41722e0fa6782c46941c1caaca071d582177f/oggmap-0.0.1.tar.gz",
    "platform": null,
    "description": "# oggmap\n\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/kullrich/oggmap/build_check.yml?branch=main)](https://github.com/kullrich/oggmap/actions/workflows/build_check.yml)\n[![PyPI](https://img.shields.io/pypi/v/oggmap?color=blue)](https://pypi.org/project/oggmap/)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/oggmap)](https://pypi.org/project/oggmap/)\n[![PyPI - Wheel](https://img.shields.io/pypi/wheel/oggmap)](https://pypi.org/project/oggmap/)\n[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)\n[![docs-badge](https://readthedocs.org/projects/oggmap/badge/?version=latest)](https://oggmap.readthedocs.io/en/latest/?badge=latest)\n\n## orthologous maps - evolutionary age index\n\n[`oggmap`](https://github.com/kullrich/oggmap) is a python package to extract orthologous maps\n(short: `orthomap` or in other words the evolutionary age of a given orthologous group) from OrthoFinder or eggNOG results.\nOggmap results (gene ages per orthologous group) can be further used to calculate and visualize weighted expression data\n(transcriptome evolutionary index) from scRNA sequencing objects.\n\n## Documentation\n\nOnline documentation can be found [here](https://oggmap.readthedocs.io/en/latest/).\n\n## Installing `oggmap`\n\nMore installation options can be found [here](https://oggmap.readthedocs.io/en/latest/installation/index.html).\n\n### oggmap installation using conda and pip\n\nWe recommend installing `oggmap` in an independent conda environment to avoid dependent software conflicts.\nPlease make a new python environment for `oggmap` and install dependent libraries in it.\n\nIf you do not have a working installation of Python 3.8 (or later),\nconsider installing [Anaconda](https://docs.anaconda.com/anaconda/install/) or\n[Miniconda](https://docs.conda.io/en/latest/miniconda.html).\n\nTo create and activate the environment run:\n\n```shell\n$ git clone https://github.com/kullrich/oggmap.git\n$ cd oggmap\n$ conda env create --file environment.yml\n$ conda activate oggmap_env\n```\n\nThen to install `oggmap` via PyPI:\n\n```shell\n$ pip install oggmap\n```\n\n## Quick usage\n\nDetailed tutorials how to use `oggmap` can be found [here](https://oggmap.readthedocs.io/en/latest/tutorials/index.html).\n\n### Update/download local ncbi taxonomic database:\n\nThe following command downloads or updates your local copy of the\nNCBI's taxonomy database (~300MB). The database is saved at\n`~/.etetoolkit/taxa.sqlite`.\n\n```python\n>>> from oggmap import ncbitax\n>>> ncbitax.update_ncbi()\n```\n\n### Step 1 - Get query species taxonomic lineage information:\n\nYou can query a species lineage information based on its name or its\ntaxID. For example `Danio rerio` with taxID `7955`:\n\n```python\n>>> from oggmap import qlin\n>>> qlin.get_qlin(q = 'Danio rerio')\n>>> qlin.get_qlin(qt = '7955')\n```\n\nYou can get the query species topology as a tree.\nFor example for `Danio rerio` with taxID `7955`:\n\n```python\n>>> from oggmap import qlin\n>>> query_topology = qlin.get_lineage_topo(qt = '7955')\n>>> query_topology.write()\n```\n\n### Step 2 - Get query species orthomap from OrthoFinder results:\n\nThe following code extracts the `orthomap` for `Danio rerio` based on pre-calculated \nOrthoFinder results and ensembl release-105:\n\nOrthoFinder results (-S diamond_ultra_sens) using translated, longest-isoform coding sequences\nfrom ensembl release-105 have been archived and can be found\n[here](https://zenodo.org/record/7242264#.Y1p19i0Rowc).\n\n```python\n>>> from oggmap import datasets, of2orthomap\n>>> datasets.ensembl105(datapath='.')\n>>> query_orthomap = of2orthomap.get_orthomap(\n...     seqname='Danio_rerio.GRCz11.cds.longest',\n...     qt='7955',\n...     sl='ensembl_105_orthofinder_species_list.tsv',\n...     oc='ensembl_105_orthofinder_Orthogroups.GeneCount.tsv',\n...     og='ensembl_105_orthofinder_Orthogroups.tsv',\n...     out=None, quiet=False, continuity=True, overwrite=True)\n>>> query_orthomap\n```\n\n### Step 3 - Map OrthoFinder gene names and scRNA gene/transcript names:\n\nThe following code extracts the gene to transcript table for `Danio rerio`:\n\nGTF file obtained from [here](https://ftp.ensembl.org/pub/release-105/gtf/danio_rerio/Danio_rerio.GRCz11.105.gtf.gz).\n\n```python\n>>> from oggmap import datasets, gtf2t2g\n>>> gtf_file = datasets.zebrafish_gtf(datapath='.')\n>>> query_species_t2g = gtf2t2g.parse_gtf(\n...     gtf=gtf_file,\n...     g=True, b=True, p=True, v=True, s=True, q=True)\n>>> query_species_t2g\n```\n\nImport now, the scRNA dataset of the query species.\n\nexample: **Danio rerio** - [http://tome.gs.washington.edu](http://tome.gs.washington.edu)\n([Qui et al. 2022](https://www.nature.com/articles/s41588-022-01018-x))\n\n`AnnData` file can be found [here](https://doi.org/10.5281/zenodo.7243602).\n\n```python\n>>> import scanpy as sc\n>>> from oggmap import datasets, orthomap2tei\n>>> # download zebrafish scRNA data here: https://doi.org/10.5281/zenodo.7243602\n>>> # or download with datasets.qiu22_zebrafish(datapath='.')\n>>> zebrafish_data = datasets.qiu22_zebrafish(datapath='.')\n>>> zebrafish_data\n>>> # check overlap of transcript table <gene_id> and scRNA data <var_names>\n>>> orthomap2tei.geneset_overlap(zebrafish_data.var_names, query_species_t2g['gene_id'])\n```\n\nThe `replace_by` helper function can be used to add a new column to the `orthomap` dataframe by matching e.g.\ngene isoform names and their corresponding gene names.\n\n```python\n>>> # convert orthomap transcript IDs into GeneIDs and add them to orthomap\n>>> query_orthomap['geneID'] = orthomap2tei.replace_by(\n...    x_orig = query_orthomap['seqID'],\n...    xmatch = query_species_t2g['transcript_id_version'],\n...    xreplace = query_species_t2g['gene_id'])\n>>> # check overlap of orthomap <geneID> and scRNA data\n>>> orthomap2tei.geneset_overlap(zebrafish_data.var_names, query_orthomap['geneID'])\n```\n\n### Step 4 - Get transcriptome evolutionary index (TEI) values and add them to scRNA dataset:\n\nSince now the gene names correspond to each other in the `orthomap` and the scRNA adata object,\none can calculate the transcriptome evolutionary index (TEI) and add them to the scRNA dataset (adata object).\n\n```python\n>>> # add TEI values to existing adata object\n>>> orthomap2tei.get_tei(adata=zebrafish_data,\n...    gene_id=query_orthomap['geneID'],\n...    gene_age=query_orthomap['PSnum'],\n...    keep='min',\n...    layer=None,\n...    add=True,\n...    obs_name='tei',\n...    boot=False,\n...    bt=10,\n...    normalize_total=False,\n...    log1p=False,\n...    target_sum=1e6)\n```\n\n### Step 5 - Downstream analysis\n\nOnce the gene age data has been added to the scRNA dataset,\none can e.g. plot the corresponding transcriptome evolutionary index (TEI) values\nby any given observation pre-defined in the scRNA dataset.\n\n#### Boxplot TEI per stage:\n\n```python\n>>>sc.pl.violin(adata=zebrafish_data,\n...             keys=['tei'],\n...             groupby='stage',\n...             rotation=90,\n...             palette='Paired',\n...             stripplot=False,\n...             inner='box')\n```\n\n## oggmap via Command Line\n\n`oggmap` can also be used via the command line.\n\nCommand line documentation can be found [here](https://oggmap.readthedocs.io/en/latest/modules/oggmap.html).\n\n```shell\n$ oggmap\n```\n\n```\nusage: oggmap <sub-command>\n\noggmap\n\noptional arguments:\n  -h, --help            show this help message and exit\n\nsub-commands:\n  {cds2aa,gtf2t2g,ncbitax,of2orthomap,plaza2orthomap,qlin}\n                        sub-commands help\n    cds2aa              translate CDS to AA and optional retain longest\n                        isoform <cds2aa -h>\n    gtf2t2g             extracts transcript to gene table from GTF <gtf2t2g\n                        -h>\n    ncbitax             update local ncbi taxonomy database <ncbitax -h>\n    of2orthomap         extract orthomap from OrthoFinder output for query\n                        species <orthomap -h>\n    plaza2orthomap      extract orthomap from PLAZA gene family data for query\n                        species <of2orthomap -h>\n    qlin                get query lineage based on ncbi taxonomy <qlin -h>\n```\n\nTo retrieve e.g. the lineage information for `Danio rerio` run the following command:\n\n```shell\n$ oggmap qlin -q \"Danio rerio\"\n```\n\n## Development Version\n\nTo work with the latest version [on GitHub](https://github.com/kullrich/oggmap):\nclone the repository and `cd` into its root directory.\n\n```shell\n$ git clone kullrich/oggmap\n$ cd oggmap\n```\n\nInstall `oggmap` into your current python environment:\n\n```shell\n$ pip install -e .\n```\n\n## Testing `oggmap`\n\n`oggmap` has an extensive test suite which is run each time a new contribution\nis made to the repository. To run the test suite locally run:\n\n```shell\n$ pytest tests\n```\n\n## Contributing Code\n\nIf you would like to contribute to `oggmap`, please file an issue so that one can establish a statement of need, avoid redundant work, and track progress on your contribution.\n\nBefore you do a pull request, you should always file an issue and make sure that someone from the `oggmap` developer team agrees that it's a problem, and is happy with your basic proposal for fixing it.\n\nOnce an issue has been filed and we've identified how to best orient your\ncontribution with package development as a whole,\n[fork](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo)\nthe [main repo](https://github.com/kullrich/oggmap/oggmap.git), branch off a\n[feature\nbranch](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/about-branches)\nfrom `master`,\n[commit](https://docs.github.com/en/desktop/contributing-and-collaborating-using-github-desktop/committing-and-reviewing-changes-to-your-project)\nand\n[push](https://docs.github.com/en/github/using-git/pushing-commits-to-a-remote-repository)\nyour changes to your fork and submit a [pull\nrequest](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests)\nfor `oggmap:master`.\n\nBy contributing to this project, you agree to abide by the Code of Conduct terms.\n\n## Bug reports\n\nPlease post troubles or questions on the GitHub repository [issue tracker](https://github.com/kullrich/oggmap/issues).\nAlso, please look at the closed issue pages. This might give an answer to your question.\n\n## Inquiry for collaboration or discussion\n\nPlease send e-mail to us if you want a discussion with us.\n\nPrincipal code developer: Kristian Ullrich\n\nE-mail address can be found [here](https://www.evolbio.mpg.de).\n\n## Code of Conduct - Participation guidelines\n\nThis repository adheres to the [Contributor Covenant](http://contributor-covenant.org) code of conduct for in any interactions you have within this project. (see [Code of Conduct](https://github.com/kullrich/oggmap/-/blob/master/CODE_OF_CONDUCT.md))\n\nSee also the policy against sexualized discrimination, harassment and violence for the Max Planck Society [Code-of-Conduct](https://www.mpg.de/11961177/code-of-conduct-en.pdf).\n\nBy contributing to this project, you agree to abide by its terms.\n\n## References\n\nsee references [here](https://oggmap.readthedocs.io/en/latest/references/index.html)\n",
    "bugtrack_url": null,
    "license": "GPLv3",
    "summary": "extract orthologous maps (short: orthomap) from OrthoFinder output for query species",
    "version": "0.0.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/kullrich/oggmap/issues",
        "Homepage": "https://github.com/kullrich/oggmap",
        "documentation": "https://oggmap.readthedocs.io/en/latest/",
        "repository": "https://github.com/kullrich/oggmap"
    },
    "split_keywords": [
        "orthomap",
        "gene age",
        "orthologs",
        "phylostratigraphy",
        "single-cell"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4aa7aee781b48f2691054487c0205084251c3bb7f39f80dea57b1ef313925829",
                "md5": "c33bf8e0fabe561bb424379a33f995d0",
                "sha256": "64f5050bd618edc7755778255bbf7ea693dc74ed4831b8284e784a1f25a3bc69"
            },
            "downloads": -1,
            "filename": "oggmap-0.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c33bf8e0fabe561bb424379a33f995d0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 61438,
            "upload_time": "2023-10-30T16:52:47",
            "upload_time_iso_8601": "2023-10-30T16:52:47.394253Z",
            "url": "https://files.pythonhosted.org/packages/4a/a7/aee781b48f2691054487c0205084251c3bb7f39f80dea57b1ef313925829/oggmap-0.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d18215bc62445380b490f2c79d41722e0fa6782c46941c1caaca071d582177f",
                "md5": "83b264490473b88649546cc1ba79cdf5",
                "sha256": "48b3eadb8e36a67b95ffa73880ba3425a830b0419ac03ed1cebe883fa7173c78"
            },
            "downloads": -1,
            "filename": "oggmap-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "83b264490473b88649546cc1ba79cdf5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 58932,
            "upload_time": "2023-10-30T16:52:49",
            "upload_time_iso_8601": "2023-10-30T16:52:49.043137Z",
            "url": "https://files.pythonhosted.org/packages/3d/18/215bc62445380b490f2c79d41722e0fa6782c46941c1caaca071d582177f/oggmap-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-30 16:52:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "kullrich",
    "github_project": "oggmap",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "oggmap"
}
        
Elapsed time: 0.13852s