pyfastatools


Namepyfastatools JSON
Version 2.5.0 PyPI version JSON
download
home_pageNone
SummarySimple FASTA file tools to parse, edit, subset, split, and perform stats on FASTA files
upload_time2025-02-07 23:08:21
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseMIT License Copyright (c) 2023 Cody Martin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # FASTA file parsing written in C++ with Python bindings

## Installation

```bash
pip install pyfastatools
```

## Usage

The `pyfastatools.Parser` object is the primary API that parses FASTA files and yields `pyfastatools.Record` objects.

If you have a FASTA file called `proteins.faa` that looks like this:

```txt
>seq_1
MSKFKKIPL
>seq_2
MQSSSKTCN
>seq_3
MEDNMITIY
```

Then you can parse this file in python like this:

```python
from pyfastatools import Parser

for record in Parser("proteins.faa"):
    print(record.header.name, record.seq)
```

which will print:

```python
>>> 'seq_1 MSKFKKIPL'
>>> 'seq_2 MQSSSKTCN'
>>> 'seq_3 MEDNMITIY'
```

## API

This library has a very simple API that can be displayed in a few lines:

### Parser

This is the main class that will satisfy 99% of user needs. While parsing FASTA files, it produces `Record` objects. Only the name of a FASTA file is needed:

```python
pyfastatools.Parser("my_fasta.fasta")
```

The parser will attempt to auto-detect the `RecordType` of the file by checking the input file extension and the first 5 sequences.

However, the record type can optionally be specified:

```python
pyfastatools.Parser("my_fasta.fasta", pyfastatools.RecordType.PROTEIN)
```

The parser can be iterated over to yield one `Record` at a time:

```python
parser = pyfastatools.Parser("my_fasta.fasta")
for record in parser:
    ...
```

#### Methods

There are also other convenience methods:

- `all` - Read all records into a list-like object.
- `take` - Take up to n records into a list-like object.
- `filter` - Keep/exclude sequences based on the sequence name.
- `remove_stops` - Yield sequences without a `*` stop codon character if the sequences are proteins.
- `clean_header` - Yield sequences while cleaning the header to not have a description.
- `headers` - Yield `Header` objects only without parsing the sequence itself.
- `all_headers` - Return all headers into a list-like object.

#### Properties

- `num_records` - Returns the number of sequences in the FASTA file. This is cached after the first time it is called. Note: This can also be computed using `len(parser)`
- `format` - Returns the `RecordType` enum that corresponds to the FASTA file's record type
- `extension` - Returns the file extension based on the `format`

### Record

A single FASTA record. It has the following fields:

- `header` - A `Header` object that has the fields `name` and `desc`
- `seq` - A `str` storing the entire sequence

#### Methods

- `empty` - Checks if the `Header` and sequence are empty
- `clear` - Sets the `Header` and sequence to empty strings
- `to_string` - Returns the record as a string representation identical to what was parsed from the file
- `clean_header` - Sets the `Header` description to an empty string
- `remove_stops` - Removes `*` stop codon characters from the sequence if they are present

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyfastatools",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Cody Martin <codycmar10@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/01/76/266632d468f35b6bae1e68f114bd3345dd5b847a15b780215c44524184af/pyfastatools-2.5.0.tar.gz",
    "platform": null,
    "description": "# FASTA file parsing written in C++ with Python bindings\n\n## Installation\n\n```bash\npip install pyfastatools\n```\n\n## Usage\n\nThe `pyfastatools.Parser` object is the primary API that parses FASTA files and yields `pyfastatools.Record` objects.\n\nIf you have a FASTA file called `proteins.faa` that looks like this:\n\n```txt\n>seq_1\nMSKFKKIPL\n>seq_2\nMQSSSKTCN\n>seq_3\nMEDNMITIY\n```\n\nThen you can parse this file in python like this:\n\n```python\nfrom pyfastatools import Parser\n\nfor record in Parser(\"proteins.faa\"):\n    print(record.header.name, record.seq)\n```\n\nwhich will print:\n\n```python\n>>> 'seq_1 MSKFKKIPL'\n>>> 'seq_2 MQSSSKTCN'\n>>> 'seq_3 MEDNMITIY'\n```\n\n## API\n\nThis library has a very simple API that can be displayed in a few lines:\n\n### Parser\n\nThis is the main class that will satisfy 99% of user needs. While parsing FASTA files, it produces `Record` objects. Only the name of a FASTA file is needed:\n\n```python\npyfastatools.Parser(\"my_fasta.fasta\")\n```\n\nThe parser will attempt to auto-detect the `RecordType` of the file by checking the input file extension and the first 5 sequences.\n\nHowever, the record type can optionally be specified:\n\n```python\npyfastatools.Parser(\"my_fasta.fasta\", pyfastatools.RecordType.PROTEIN)\n```\n\nThe parser can be iterated over to yield one `Record` at a time:\n\n```python\nparser = pyfastatools.Parser(\"my_fasta.fasta\")\nfor record in parser:\n    ...\n```\n\n#### Methods\n\nThere are also other convenience methods:\n\n- `all` - Read all records into a list-like object.\n- `take` - Take up to n records into a list-like object.\n- `filter` - Keep/exclude sequences based on the sequence name.\n- `remove_stops` - Yield sequences without a `*` stop codon character if the sequences are proteins.\n- `clean_header` - Yield sequences while cleaning the header to not have a description.\n- `headers` - Yield `Header` objects only without parsing the sequence itself.\n- `all_headers` - Return all headers into a list-like object.\n\n#### Properties\n\n- `num_records` - Returns the number of sequences in the FASTA file. This is cached after the first time it is called. Note: This can also be computed using `len(parser)`\n- `format` - Returns the `RecordType` enum that corresponds to the FASTA file's record type\n- `extension` - Returns the file extension based on the `format`\n\n### Record\n\nA single FASTA record. It has the following fields:\n\n- `header` - A `Header` object that has the fields `name` and `desc`\n- `seq` - A `str` storing the entire sequence\n\n#### Methods\n\n- `empty` - Checks if the `Header` and sequence are empty\n- `clear` - Sets the `Header` and sequence to empty strings\n- `to_string` - Returns the record as a string representation identical to what was parsed from the file\n- `clean_header` - Sets the `Header` description to an empty string\n- `remove_stops` - Removes `*` stop codon characters from the sequence if they are present\n",
    "bugtrack_url": null,
    "license": "MIT License\n        \n        Copyright (c) 2023 Cody Martin\n        \n        Permission is hereby granted, free of charge, to any person obtaining a copy\n        of this software and associated documentation files (the \"Software\"), to deal\n        in the Software without restriction, including without limitation the rights\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n        copies of the Software, and to permit persons to whom the Software is\n        furnished to do so, subject to the following conditions:\n        \n        The above copyright notice and this permission notice shall be included in all\n        copies or substantial portions of the Software.\n        \n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n        SOFTWARE.",
    "summary": "Simple FASTA file tools to parse, edit, subset, split, and perform stats on FASTA files",
    "version": "2.5.0",
    "project_urls": {
        "Bug tracker": "https://github.com/cody-mar10/fasta-tools/issues",
        "Homepage": "https://github.com/cody-mar10/fasta-tools"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f915553f63bc648aac220f7500144c12b850d3b7161f01d8710c8630828bf41e",
                "md5": "3875284c3ac038e69616d6f7286e2d40",
                "sha256": "9c89f1752291c9e03b34e805c0e41c6d0cac80a6b7b9c2c6138ca543f06387d4"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3875284c3ac038e69616d6f7286e2d40",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 182626,
            "upload_time": "2025-02-07T23:07:46",
            "upload_time_iso_8601": "2025-02-07T23:07:46.044075Z",
            "url": "https://files.pythonhosted.org/packages/f9/15/553f63bc648aac220f7500144c12b850d3b7161f01d8710c8630828bf41e/pyfastatools-2.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cdde05c42d0d494662e3f002d0db428cb665b8d97bd16cc0233cb2583348413a",
                "md5": "99929ec7408f74235d55a99f16508799",
                "sha256": "76b3fc77e56f11fd3a9f9661964745fe9363b91ffe6e54e187956de8c139cd23"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99929ec7408f74235d55a99f16508799",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 170789,
            "upload_time": "2025-02-07T23:07:48",
            "upload_time_iso_8601": "2025-02-07T23:07:48.025687Z",
            "url": "https://files.pythonhosted.org/packages/cd/de/05c42d0d494662e3f002d0db428cb665b8d97bd16cc0233cb2583348413a/pyfastatools-2.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83e48f852e1e8d9dc2d99fcf6f5f9226dd3c12ed4dd3b7500b5b57adda914081",
                "md5": "b28278bc85d636bae6a120b690bb564e",
                "sha256": "0074628866264071e925c844d949dc99148fcfe2174b65ff8c3bf11e9bd617d0"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b28278bc85d636bae6a120b690bb564e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 684031,
            "upload_time": "2025-02-07T23:07:50",
            "upload_time_iso_8601": "2025-02-07T23:07:50.095883Z",
            "url": "https://files.pythonhosted.org/packages/83/e4/8f852e1e8d9dc2d99fcf6f5f9226dd3c12ed4dd3b7500b5b57adda914081/pyfastatools-2.5.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "045354dd5693c6aa17f24952f87004af701ebe51493f200d42e0e308c55d06e3",
                "md5": "cebbbf4a87c304f3a0108af740813a85",
                "sha256": "c81658256c4f4c9497ff1e93adbc91dbd18fc1f9ae7d77d409f12508632776e3"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cebbbf4a87c304f3a0108af740813a85",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 628948,
            "upload_time": "2025-02-07T23:07:52",
            "upload_time_iso_8601": "2025-02-07T23:07:52.325192Z",
            "url": "https://files.pythonhosted.org/packages/04/53/54dd5693c6aa17f24952f87004af701ebe51493f200d42e0e308c55d06e3/pyfastatools-2.5.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5668c48096116cbc7135baa3aee3d92c769c8f8dc98f453cab6e94ef7ae00b85",
                "md5": "e685b4e04d8f4bd614b6a14f898cb165",
                "sha256": "5e681ca8186317e8dd87a4594e2d825b2eb04967184a66f473e1c79204066096"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e685b4e04d8f4bd614b6a14f898cb165",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 182977,
            "upload_time": "2025-02-07T23:07:54",
            "upload_time_iso_8601": "2025-02-07T23:07:54.456428Z",
            "url": "https://files.pythonhosted.org/packages/56/68/c48096116cbc7135baa3aee3d92c769c8f8dc98f453cab6e94ef7ae00b85/pyfastatools-2.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b884b40899390144e1cf3e3bb1a52fd189f97454a69e18cea63bb99ef28ad9a3",
                "md5": "3812eff37f6af03f8a5206dd5b8b7979",
                "sha256": "369af614fb68b70a9a84c7f84927efbecb7edb9da307a1b1e699da71c391bc2b"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3812eff37f6af03f8a5206dd5b8b7979",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 171082,
            "upload_time": "2025-02-07T23:07:56",
            "upload_time_iso_8601": "2025-02-07T23:07:56.849675Z",
            "url": "https://files.pythonhosted.org/packages/b8/84/b40899390144e1cf3e3bb1a52fd189f97454a69e18cea63bb99ef28ad9a3/pyfastatools-2.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f4ce83df72c88e8eb3f01a89cf71013a6e22ececb4f59fb503abeb4c83c11be",
                "md5": "609fabf0d6e63790eb5359467e4439b7",
                "sha256": "4ab8bdb4fc965dc201d12b638a58d104755f1350be1507b6a1e6c4ea23283ae8"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "609fabf0d6e63790eb5359467e4439b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 684666,
            "upload_time": "2025-02-07T23:07:58",
            "upload_time_iso_8601": "2025-02-07T23:07:58.135672Z",
            "url": "https://files.pythonhosted.org/packages/5f/4c/e83df72c88e8eb3f01a89cf71013a6e22ececb4f59fb503abeb4c83c11be/pyfastatools-2.5.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bbe79f62bb8c7835e2b8c1827fe9a104d1cb1b2ef530905552357ffc269d58eb",
                "md5": "596d4d8ec87a82d3d29b4197a005c9ff",
                "sha256": "780c7f8fa026dbb7c0a4c36c1ce835b0d8f05fe7e6d37f48db9775d9e2bac3a0"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "596d4d8ec87a82d3d29b4197a005c9ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 629144,
            "upload_time": "2025-02-07T23:07:59",
            "upload_time_iso_8601": "2025-02-07T23:07:59.405354Z",
            "url": "https://files.pythonhosted.org/packages/bb/e7/9f62bb8c7835e2b8c1827fe9a104d1cb1b2ef530905552357ffc269d58eb/pyfastatools-2.5.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b99130c47bc7fca6e2e462f46d7cd967acfc323d413f52059d15df8283b59347",
                "md5": "01c77e97798d155913a38f3772870107",
                "sha256": "23d9d57da7f598485198c82ccd7c8a40b49996bcf63ecffcddd9a2d0aaec96aa"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "01c77e97798d155913a38f3772870107",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 182247,
            "upload_time": "2025-02-07T23:08:00",
            "upload_time_iso_8601": "2025-02-07T23:08:00.736718Z",
            "url": "https://files.pythonhosted.org/packages/b9/91/30c47bc7fca6e2e462f46d7cd967acfc323d413f52059d15df8283b59347/pyfastatools-2.5.0-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0317cc50dcc9cf697c79982711f8222b540a86d49b62dc42d90c20350017267b",
                "md5": "31c1180f30ea3b747252c0d7fc04cfb9",
                "sha256": "39acfeb9305749aed4693e7cd39f0e65592368d302e0d719ffd6d55ff345a3f4"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31c1180f30ea3b747252c0d7fc04cfb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 169552,
            "upload_time": "2025-02-07T23:08:02",
            "upload_time_iso_8601": "2025-02-07T23:08:02.904201Z",
            "url": "https://files.pythonhosted.org/packages/03/17/cc50dcc9cf697c79982711f8222b540a86d49b62dc42d90c20350017267b/pyfastatools-2.5.0-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c68957ad61214d0ac0ad02bdfccf2bafef94e5b81545ee453d7b85fd7c7f11e",
                "md5": "4a64411ac068abe55d1393a4f6c3160f",
                "sha256": "96eb1786002870142677b9e8bc58818dd37a9097c9b21db74996f38ad755c582"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-cp312-abi3-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4a64411ac068abe55d1393a4f6c3160f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 683458,
            "upload_time": "2025-02-07T23:08:04",
            "upload_time_iso_8601": "2025-02-07T23:08:04.840900Z",
            "url": "https://files.pythonhosted.org/packages/1c/68/957ad61214d0ac0ad02bdfccf2bafef94e5b81545ee453d7b85fd7c7f11e/pyfastatools-2.5.0-cp312-abi3-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "564cccac3f3d324ac2d567cf3a2ef757356cd683f124866a8b2f13012a0d2e9f",
                "md5": "ce171c3b1761984f8fbe6868482e61b5",
                "sha256": "33feacd8f98ce5780e04a3a5dfa4253c1bbb265e3fc7ab6685a4033be749c1f2"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-cp312-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ce171c3b1761984f8fbe6868482e61b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 628585,
            "upload_time": "2025-02-07T23:08:06",
            "upload_time_iso_8601": "2025-02-07T23:08:06.203007Z",
            "url": "https://files.pythonhosted.org/packages/56/4c/ccac3f3d324ac2d567cf3a2ef757356cd683f124866a8b2f13012a0d2e9f/pyfastatools-2.5.0-cp312-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be8dcf2299125145160bfa13bcf1c9f372ae41597585ad44d0001d9799c32741",
                "md5": "eda3da2e22c88701fcfde00bd211d52f",
                "sha256": "0b5dc93a48dffe4269f8c780f8a299fc3398d5f273189f8da13dc40bc1c2c06f"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "eda3da2e22c88701fcfde00bd211d52f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 182778,
            "upload_time": "2025-02-07T23:08:07",
            "upload_time_iso_8601": "2025-02-07T23:08:07.306232Z",
            "url": "https://files.pythonhosted.org/packages/be/8d/cf2299125145160bfa13bcf1c9f372ae41597585ad44d0001d9799c32741/pyfastatools-2.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0bcdbca08bb4c78f8ffc9d87ea194cc9351ebda4d88dc2a3a72b66350d742336",
                "md5": "5e020be75b6831c8fab60598e44a47a2",
                "sha256": "f6fa07ec16796be85e5e149bccc1a43f7fd5a60b7d8b08ff833d9aeb7da0376a"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5e020be75b6831c8fab60598e44a47a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 170993,
            "upload_time": "2025-02-07T23:08:09",
            "upload_time_iso_8601": "2025-02-07T23:08:09.234960Z",
            "url": "https://files.pythonhosted.org/packages/0b/cd/bca08bb4c78f8ffc9d87ea194cc9351ebda4d88dc2a3a72b66350d742336/pyfastatools-2.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca2dd10198940f4befe20e6a55f095ae54012f356c2acfe5c3277ccbb96db23d",
                "md5": "e188d86cdf0841235e6b6214f9d5534b",
                "sha256": "0c750eb7a67deb7b2e8a35998ae834086d293b106561d5a77142aa2873b02c17"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e188d86cdf0841235e6b6214f9d5534b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 684339,
            "upload_time": "2025-02-07T23:08:11",
            "upload_time_iso_8601": "2025-02-07T23:08:11.192683Z",
            "url": "https://files.pythonhosted.org/packages/ca/2d/d10198940f4befe20e6a55f095ae54012f356c2acfe5c3277ccbb96db23d/pyfastatools-2.5.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98866a92afeeb522ae496afb3c573d7197283603cee6a8e04a79e8452cb4a3d0",
                "md5": "d69f6b8c373d078b06d717726e544ad1",
                "sha256": "9d6970d815188bfd8172cb0e006db1973a1cb3b51482e33a0f0d31e9ca077abc"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d69f6b8c373d078b06d717726e544ad1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 629087,
            "upload_time": "2025-02-07T23:08:12",
            "upload_time_iso_8601": "2025-02-07T23:08:12.630355Z",
            "url": "https://files.pythonhosted.org/packages/98/86/6a92afeeb522ae496afb3c573d7197283603cee6a8e04a79e8452cb4a3d0/pyfastatools-2.5.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0aa105919e78bbe5528135496b1b50085247a9423673d26af4acea34176764e0",
                "md5": "32bea70879cdba8ad6971c53f089e149",
                "sha256": "5277cef87e0d0bd24b9bcbaa1215072d0aa442e7c3638ebbb37eb7bf5392ca07"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "32bea70879cdba8ad6971c53f089e149",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 178596,
            "upload_time": "2025-02-07T23:08:14",
            "upload_time_iso_8601": "2025-02-07T23:08:14.658162Z",
            "url": "https://files.pythonhosted.org/packages/0a/a1/05919e78bbe5528135496b1b50085247a9423673d26af4acea34176764e0/pyfastatools-2.5.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e709a6d34d4e756f0bba1562ee96ff49ba50f0f90bee454f0d5e63693fd3ef3",
                "md5": "de2f77257f179e3e8c459de446866259",
                "sha256": "35ce69e9009cdb51920c0c9ec2d1cd9dab3c1fa569cb5ba44ebc96f47b8be975"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de2f77257f179e3e8c459de446866259",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 166733,
            "upload_time": "2025-02-07T23:08:16",
            "upload_time_iso_8601": "2025-02-07T23:08:16.522971Z",
            "url": "https://files.pythonhosted.org/packages/6e/70/9a6d34d4e756f0bba1562ee96ff49ba50f0f90bee454f0d5e63693fd3ef3/pyfastatools-2.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa78a98fb290ed89bbe7546822fec86c4181676a10f28155beb47568184c440f",
                "md5": "3a901bd8f42370979a35a69ddba0bf2f",
                "sha256": "dfd1aded4e119a97542fb4dda7d1e8966227857e3ba9a1a81728f972052c8378"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3a901bd8f42370979a35a69ddba0bf2f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 178603,
            "upload_time": "2025-02-07T23:08:17",
            "upload_time_iso_8601": "2025-02-07T23:08:17.700846Z",
            "url": "https://files.pythonhosted.org/packages/aa/78/a98fb290ed89bbe7546822fec86c4181676a10f28155beb47568184c440f/pyfastatools-2.5.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32e8ede8063de725af7b3f232ccfabb0741eef44531556e0209828e0b48a6093",
                "md5": "d98c6edad31217b5536040f3844bfb57",
                "sha256": "2f0323489fc0348c01255917aee6f5880efb3e901fd7b85393d7ea85e734c9a4"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d98c6edad31217b5536040f3844bfb57",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 166694,
            "upload_time": "2025-02-07T23:08:19",
            "upload_time_iso_8601": "2025-02-07T23:08:19.660043Z",
            "url": "https://files.pythonhosted.org/packages/32/e8/ede8063de725af7b3f232ccfabb0741eef44531556e0209828e0b48a6093/pyfastatools-2.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0176266632d468f35b6bae1e68f114bd3345dd5b847a15b780215c44524184af",
                "md5": "ddd67e8407846c01c93416629ad8ad04",
                "sha256": "b9421963b45ac4daa24d3fca25fef5e8b4f11fcdc9d194ebd372a3590ee21a40"
            },
            "downloads": -1,
            "filename": "pyfastatools-2.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ddd67e8407846c01c93416629ad8ad04",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 61976,
            "upload_time": "2025-02-07T23:08:21",
            "upload_time_iso_8601": "2025-02-07T23:08:21.490712Z",
            "url": "https://files.pythonhosted.org/packages/01/76/266632d468f35b6bae1e68f114bd3345dd5b847a15b780215c44524184af/pyfastatools-2.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-07 23:08:21",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cody-mar10",
    "github_project": "fasta-tools",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyfastatools"
}
        
Elapsed time: 1.36777s