pyswrd


Namepyswrd JSON
Version 0.1.1 PyPI version JSON
download
home_pagehttps://github.com/althonos/pyswrd
SummaryCython bindings and Python interface to SWORD (Smith Waterman On Reduced Database), a heuristic method for fast database search.
upload_time2024-02-28 01:50:20
maintainer
docs_urlNone
authorMartin Larralde
requires_python>=3.5
licenseMIT
keywords bioinformatics sequence alignment opal sword
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 🐍🗡️ PySWRD [![Stars](https://img.shields.io/github/stars/althonos/pyswrd.svg?style=social&maxAge=3600&label=Star)](https://github.com/althonos/pyswrd/stargazers)

*[Cython](https://cython.org/) bindings and Python interface to [SWORD](https://github.com/rvaser/sword) (Smith Waterman On Reduced Database), a method for fast database search.*

[![Actions](https://img.shields.io/github/actions/workflow/status/althonos/pyswrd/test.yml?branch=main&logo=github&style=flat-square&maxAge=300)](https://github.com/althonos/pyswrd/actions)
[![Coverage](https://img.shields.io/codecov/c/gh/althonos/pyswrd?style=flat-square&maxAge=3600&logo=codecov)](https://codecov.io/gh/althonos/pyswrd/)
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square&maxAge=2678400)](https://choosealicense.com/licenses/mit/)
[![PyPI](https://img.shields.io/pypi/v/pyswrd.svg?style=flat-square&maxAge=3600&logo=PyPI)](https://pypi.org/project/pyswrd)
[![Bioconda](https://img.shields.io/conda/vn/bioconda/pyswrd?style=flat-square&maxAge=3600&logo=anaconda)](https://anaconda.org/bioconda/pyswrd)
[![AUR](https://img.shields.io/aur/version/python-pyswrd?logo=archlinux&style=flat-square&maxAge=3600)](https://aur.archlinux.org/packages/python-pyswrd)
[![Wheel](https://img.shields.io/pypi/wheel/pyswrd.svg?style=flat-square&maxAge=3600)](https://pypi.org/project/pyswrd/#files)
[![Python Versions](https://img.shields.io/pypi/pyversions/pyswrd.svg?style=flat-square&maxAge=600&logo=python)](https://pypi.org/project/pyswrd/#files)
[![Python Implementations](https://img.shields.io/pypi/implementation/pyswrd.svg?style=flat-square&maxAge=600&label=impl)](https://pypi.org/project/pyswrd/#files)
[![Source](https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=2678400&style=flat-square)](https://github.com/althonos/pyswrd/)
[![Mirror](https://img.shields.io/badge/mirror-EMBL-009f4d?style=flat-square&maxAge=2678400)](https://git.embl.de/larralde/pyswrd/)
[![Issues](https://img.shields.io/github/issues/althonos/pyswrd.svg?style=flat-square&maxAge=600)](https://github.com/althonos/pyswrd/issues)
[![Docs](https://img.shields.io/readthedocs/pyswrd/latest?style=flat-square&maxAge=600)](https://pyswrd.readthedocs.io)
[![Changelog](https://img.shields.io/badge/keep%20a-changelog-8A0707.svg?maxAge=2678400&style=flat-square)](https://github.com/althonos/pyswrd/blob/main/CHANGELOG.md)
[![Downloads](https://img.shields.io/pypi/dm/pyswrd?style=flat-square&color=303f9f&maxAge=86400&label=downloads)](https://pepy.tech/project/pyswrd)


## 🗺️ Overview

Searching a sequence inside a database of target sequences involves aligning
the sequence to all the targets to find the highest scoring ones, which has
a high computational cost. Several methods have been proposed over the years
that use a pre-filter to select. In BLAST[\[1\]](#ref1), k-mers are extracted 
from the query, and only targets containing high-scoring k-mers, with respect to 
the scoring matrix, are actually aligned.

[SWORD](https://github.com/rvaser/sword)[\[2\]](#ref2) proposes a pre-filter built 
on perfect hashing of short mismatching k-mers. The k-mers generated from the 
query sequence also include k-mers with mismatches to improve sensitivity. 
When a k-mer is found in a target sequence, SWORD computes the diagonal where it 
is located, similarly to FASTA[\[3\]](#ref3). Target sequences are then selected based on the
number of hits they have on the same diagonal. The pairwise alignment
is then handled by the platform-accelerated [Opal](https://github.com/Martinsos/opal)[\[4\]](#ref4)
library.

PySWRD is a [Python](https://python.org) module that provides bindings to
the heuristic filter part of [SWORD](https://github.com/rvaser/sword)
using [Cython](https://cython.org/). It implements a user-friendly, Pythonic
interface to build a heuristic filter, process a database in chunks, and
produce the indices of targets passing the filter. The resulting indices
can be used to filter a [PyOpal](https://github.com/althonos/pyopal) database,
using [Opal](https://github.com/Martinsos/opal) for pairwise alignment like
the original C++ implementation.

- **no binary dependency**: PySWRD is distributed as a Python package, so
  you can add it as a dependency to your project, and stop worrying about the
  SWORD binary being present on the end-user machine.
- **no intermediate files**: Everything happens in memory, in a Python object
  you control, so you don't have to invoke the SWORD CLI using a sub-process
  and temporary files.
- **better portability**: Using only the heuristic filter of SWORD allows
  the code to be independent of the local CPU features, unlike SWORD and
  Opal which require SIMD. PySWRD delegates the SIMD compilation and
  dynamic dispatch to PyOpal to make the package easier to install. It
  also benefits from the wider platform support of PyOpal compared to
  the original Opal, featuring support for Windows and for Aarch64 CPUs.

## 🔧 Installing

PySWRD is available for all modern Python versions (3.6+).

It can be installed directly from [PyPI](https://pypi.org/project/pyopal/),
which hosts some pre-built x86-64 wheels for Linux, MacOS, and Windows, 
as well as the code required to compile from source with Cython:
```console
$ pip install pyswrd
```

<!-- Otherwise, PySWRD is also available as a [Bioconda](https://bioconda.github.io/)
package:
```console
$ conda install -c bioconda pyswrd
``` -->

<!-- Check the [*install* page](https://pyswrd.readthedocs.io/en/stable/install.html)
of the documentation for other ways to install PySWRD on your machine. -->

## 💡 Example

PySWRD does not provide I/O, so the sequences to be used have to be loaded through
another library, such as [Biopython](https://biopython.org). PySWRD only requires 
the sequences to be available as Python strings:

```python
targets = [
    'MAFSAEDVLKEYDRRRRMEALLLSLYYPNDRKLLDYKEWSPPRVQVECPK', 
    'MSIIGATRLQNDKSDTYSAGPCYAGGCSAFTPRGTCGKDWDLGEQTCASG', 
    'MASNTVSAQGGSNRPVRDFSNIQDVAQFLLFDPIWNEQPGSIVPWKMNRE', 
    'MYQAINPCPQSWYGSPQLEREIVCKMSGAPHYPNYYPVHPNALGGAWFDT', 
    'MARPLLGKTSSVRRRLESLSACSIFFFLRKFCQKMASLVFLNSPVYQMSN'
]
queries = [
    'MASNTVSAQGGSNRPVRDFSNIQDVAQFLLFDPIWNEQPG', 
    'MSFKVYDPIAELIATQFPTSNPDLQIINNDVLVVSPHKIT', 
    'MEQVPIKEMRLSDLRPNNKSIDTDLGGTKLVVIGKPGSGK'
]
```

Use the high-level `search` function, which wraps the internal classes in a single 
function to quickly run many-to-many searches in the event all your sequences are in 
memory. It expects the sequences as iterable of Python strings, and yields hits 
passing E-value and alignment thresholds:

```python
import pyswrd
for hit in pyswrd.search(queries, targets):
    print(hit.query_index, hit.target_index, hit.score, hit.evalue)
```

Different parameters can be passed to `pyswrd.search` and are passed to the 
SWORD filter and Opal alignment. For instance, to run SWORD in *fast* mode
instead of the default *sensitive* mode, and using the PAM70 matrix instead
of BLOSUM62, use:
```python
for hit in pyswrd.search(queries, targets, scorer_name="PAM70", score_threshold=0, kmer_length=5):
    print(hit.query_index, hit.target_index, hit.score, hit.evalue)
```

By default multithreading is supported, using one thread per CPU on the local
machine as reported by `os.cpu_count`, but it can be changed with the `threads` 
argument:
```python
for hit in pyswrd.search(queries, targets, threads=1):
    print(hit.query_index, hit.target_index, hit.score, hit.evalue)
```

You can also use the `pyswrd.HeuristicFilter` class directly if you wish to 
manage the data yourself, or if you want to use a different aligner.


<!-- ## 🧶 Thread-safety -->

## ⏱️ Benchmarks

The table below shows the time for running `pyswrd.search` using 196 proteins 
as queries (`uniprot_sprot196.fasta`) against a database of 12,701 proteins
(`uniprot_sprot12071.fasta`) pre-loaded into memory:

|                        | `threads=1` | `threads=2` | `threads=4` | `threads=8` | `threads=12` |
|------------------------|-------------|-------------|-------------|-------------|--------------|
| `max_candidates=10`    | 0.87s       | 0.83s       | 0.83s       | 0.80s       | 0.76s        |
| `max_candidates=50`    | 0.98s       | 0.91s       | 0.98s       | 0.97s       | 1.04s        |
| `max_candidates=100`   | 1.24s       | 1.33s       | 1.44s       | 1.63s       | 1.67s        |
| `max_candidates=500`   | 1.86s       | 1.83s       | 1.95s       | 2.09s       | 2.15s        |
| `max_candidates=1000`  | 2.87s       | 2.64s       | 2.83s       | 2.82s       | 2.90s        |
| `max_candidates=5000`  | 9.33s       | 8.11s       | 7.59s       | 6.60s       | 6.06s        |
| `max_candidates=15000` | 21.50s      | 15.85s      | 14.74s      | 11.83s      | 11.34s       |
| `max_candidates=30000` | 23.44s      | 16.13s      | 14.61s      | 12.47s      | 11.08s       |
| *no filter (Opal)*     | 31.38s      | 23.60s      | 19.57s      | 15.43s      | 14.60s       |

The `max_candidates` parameter controls the strictness of the SWORD heuristic filter, and reduces 
the total number of alignments made by Opal, at the cost of a lowered sensivity 
(*see SWORD Supplementary Figs. S1 and S2.*). 

*SWORD uses 15,000 candidates in **fast** mode and 30,000 candidates in **sensitive** mode by default. 
This was benchmarked against the [NCBI NR](https://www.ncbi.nlm.nih.gov/refseq/about/nonredundantproteins/) 
database, which contains more than 54M sequences; it is likely a smaller `max_candidates` value can 
be selected for smaller databases and/or databases with less redundant sequences without loss of sensitivity.*

## 💭 Feedback

### ⚠️ Issue Tracker

Found a bug ? Have an enhancement request ? Head over to the [GitHub issue tracker](https://github.com/althonos/pyswrd/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/althonos/pyswrd/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/althonos/pyswrd/blob/main/CHANGELOG.md)
in the [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) format.


## ⚖️ License

This library is provided under the [GNU General Public License v3.0](https://choosealicense.com/licenses/gpl-3.0/).
SWORD was written by [Robert Vaser](https://github.com/rvaser) and is distributed under the terms of the
GPLv3 as well. See `vendor/sword/LICENSE` for more information. SWORD redistributes additional
libraries under the terms of the [MIT License](https://choosealicense.com/licenses/mit/).

*This project is in no way not affiliated, sponsored, or otherwise endorsed
by the [SWORD authors](https://github.com/rvaser). It was developed
by [Martin Larralde](https://github.com/althonos/) during his PhD project
at the [European Molecular Biology Laboratory](https://www.embl.de/) in
the [Zeller team](https://github.com/zellerlab).*


## 📚 References

- <a id="ref1">\[1\]</a> Stephen F. Altschul, Warren Gish, Webb Miller, Eugene W. Myers, David J. Lipman. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. [doi:10.1016/S0022-2836(05)80360-2](https://doi.org/10.1016/S0022-2836(05)80360-2). [PMID:2231712](https://pubmed.ncbi.nlm.nih.gov/2231712).
- <a id="ref2">\[2\]</a> Robert Vaser, Dario Pavlović, Mile Šikić. SWORD—a highly efficient protein database search. Bioinformatics, Volume 32, Issue 17, September 2016, Pages i680–i684, [doi:10.1093/bioinformatics/btw445](https://doi.org/10.1093/bioinformatics/btw445).
- <a id="ref3">\[3\]</a> David J. Lipman, William R. Pearson. Rapid and sensitive protein similarity searches. Science. 1985 Mar 22;227(4693):1435-41. [doi:10.1126/science.2983426](https://doi.org/10.1126/science.2983426). [PMID:2983426](https://pubmed.ncbi.nlm.nih.gov/2983426).
- <a id="ref4">\[4\]</a> Korpar Matija, Martin Šošić, Dino Blažeka, Mile Šikić. SW#db: ‘GPU-Accelerated Exact Sequence Similarity Database Search’. PLoS One. 2015 Dec 31;10(12):e0145857. [doi:10.1371/journal.pone.0145857](https://doi.org/10.1371/journal.pone.0145857). [PMID:26719890](https://pubmed.ncbi.nlm.nih.gov/26719890). [PMC4699916](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4699916/).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/althonos/pyswrd",
    "name": "pyswrd",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": "",
    "keywords": "bioinformatics,sequence,alignment,opal,sword",
    "author": "Martin Larralde",
    "author_email": "martin.larralde@embl.de",
    "download_url": "https://files.pythonhosted.org/packages/73/1f/7a3a61908cdf8a6ccdb2a5bbf4aaced24ffbfcdc725ae474f034c6288f20/pyswrd-0.1.1.tar.gz",
    "platform": "any",
    "description": "# \ud83d\udc0d\ud83d\udde1\ufe0f PySWRD [![Stars](https://img.shields.io/github/stars/althonos/pyswrd.svg?style=social&maxAge=3600&label=Star)](https://github.com/althonos/pyswrd/stargazers)\n\n*[Cython](https://cython.org/) bindings and Python interface to [SWORD](https://github.com/rvaser/sword) (Smith Waterman On Reduced Database), a method for fast database search.*\n\n[![Actions](https://img.shields.io/github/actions/workflow/status/althonos/pyswrd/test.yml?branch=main&logo=github&style=flat-square&maxAge=300)](https://github.com/althonos/pyswrd/actions)\n[![Coverage](https://img.shields.io/codecov/c/gh/althonos/pyswrd?style=flat-square&maxAge=3600&logo=codecov)](https://codecov.io/gh/althonos/pyswrd/)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square&maxAge=2678400)](https://choosealicense.com/licenses/mit/)\n[![PyPI](https://img.shields.io/pypi/v/pyswrd.svg?style=flat-square&maxAge=3600&logo=PyPI)](https://pypi.org/project/pyswrd)\n[![Bioconda](https://img.shields.io/conda/vn/bioconda/pyswrd?style=flat-square&maxAge=3600&logo=anaconda)](https://anaconda.org/bioconda/pyswrd)\n[![AUR](https://img.shields.io/aur/version/python-pyswrd?logo=archlinux&style=flat-square&maxAge=3600)](https://aur.archlinux.org/packages/python-pyswrd)\n[![Wheel](https://img.shields.io/pypi/wheel/pyswrd.svg?style=flat-square&maxAge=3600)](https://pypi.org/project/pyswrd/#files)\n[![Python Versions](https://img.shields.io/pypi/pyversions/pyswrd.svg?style=flat-square&maxAge=600&logo=python)](https://pypi.org/project/pyswrd/#files)\n[![Python Implementations](https://img.shields.io/pypi/implementation/pyswrd.svg?style=flat-square&maxAge=600&label=impl)](https://pypi.org/project/pyswrd/#files)\n[![Source](https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=2678400&style=flat-square)](https://github.com/althonos/pyswrd/)\n[![Mirror](https://img.shields.io/badge/mirror-EMBL-009f4d?style=flat-square&maxAge=2678400)](https://git.embl.de/larralde/pyswrd/)\n[![Issues](https://img.shields.io/github/issues/althonos/pyswrd.svg?style=flat-square&maxAge=600)](https://github.com/althonos/pyswrd/issues)\n[![Docs](https://img.shields.io/readthedocs/pyswrd/latest?style=flat-square&maxAge=600)](https://pyswrd.readthedocs.io)\n[![Changelog](https://img.shields.io/badge/keep%20a-changelog-8A0707.svg?maxAge=2678400&style=flat-square)](https://github.com/althonos/pyswrd/blob/main/CHANGELOG.md)\n[![Downloads](https://img.shields.io/pypi/dm/pyswrd?style=flat-square&color=303f9f&maxAge=86400&label=downloads)](https://pepy.tech/project/pyswrd)\n\n\n## \ud83d\uddfa\ufe0f Overview\n\nSearching a sequence inside a database of target sequences involves aligning\nthe sequence to all the targets to find the highest scoring ones, which has\na high computational cost. Several methods have been proposed over the years\nthat use a pre-filter to select. In BLAST[\\[1\\]](#ref1), k-mers are extracted \nfrom the query, and only targets containing high-scoring k-mers, with respect to \nthe scoring matrix, are actually aligned.\n\n[SWORD](https://github.com/rvaser/sword)[\\[2\\]](#ref2) proposes a pre-filter built \non perfect hashing of short mismatching k-mers. The k-mers generated from the \nquery sequence also include k-mers with mismatches to improve sensitivity. \nWhen a k-mer is found in a target sequence, SWORD computes the diagonal where it \nis located, similarly to FASTA[\\[3\\]](#ref3). Target sequences are then selected based on the\nnumber of hits they have on the same diagonal. The pairwise alignment\nis then handled by the platform-accelerated [Opal](https://github.com/Martinsos/opal)[\\[4\\]](#ref4)\nlibrary.\n\nPySWRD is a [Python](https://python.org) module that provides bindings to\nthe heuristic filter part of [SWORD](https://github.com/rvaser/sword)\nusing [Cython](https://cython.org/). It implements a user-friendly, Pythonic\ninterface to build a heuristic filter, process a database in chunks, and\nproduce the indices of targets passing the filter. The resulting indices\ncan be used to filter a [PyOpal](https://github.com/althonos/pyopal) database,\nusing [Opal](https://github.com/Martinsos/opal) for pairwise alignment like\nthe original C++ implementation.\n\n- **no binary dependency**: PySWRD is distributed as a Python package, so\n  you can add it as a dependency to your project, and stop worrying about the\n  SWORD binary being present on the end-user machine.\n- **no intermediate files**: Everything happens in memory, in a Python object\n  you control, so you don't have to invoke the SWORD CLI using a sub-process\n  and temporary files.\n- **better portability**: Using only the heuristic filter of SWORD allows\n  the code to be independent of the local CPU features, unlike SWORD and\n  Opal which require SIMD. PySWRD delegates the SIMD compilation and\n  dynamic dispatch to PyOpal to make the package easier to install. It\n  also benefits from the wider platform support of PyOpal compared to\n  the original Opal, featuring support for Windows and for Aarch64 CPUs.\n\n## \ud83d\udd27 Installing\n\nPySWRD is available for all modern Python versions (3.6+).\n\nIt can be installed directly from [PyPI](https://pypi.org/project/pyopal/),\nwhich hosts some pre-built x86-64 wheels for Linux, MacOS, and Windows, \nas well as the code required to compile from source with Cython:\n```console\n$ pip install pyswrd\n```\n\n<!-- Otherwise, PySWRD is also available as a [Bioconda](https://bioconda.github.io/)\npackage:\n```console\n$ conda install -c bioconda pyswrd\n``` -->\n\n<!-- Check the [*install* page](https://pyswrd.readthedocs.io/en/stable/install.html)\nof the documentation for other ways to install PySWRD on your machine. -->\n\n## \ud83d\udca1 Example\n\nPySWRD does not provide I/O, so the sequences to be used have to be loaded through\nanother library, such as [Biopython](https://biopython.org). PySWRD only requires \nthe sequences to be available as Python strings:\n\n```python\ntargets = [\n    'MAFSAEDVLKEYDRRRRMEALLLSLYYPNDRKLLDYKEWSPPRVQVECPK', \n    'MSIIGATRLQNDKSDTYSAGPCYAGGCSAFTPRGTCGKDWDLGEQTCASG', \n    'MASNTVSAQGGSNRPVRDFSNIQDVAQFLLFDPIWNEQPGSIVPWKMNRE', \n    'MYQAINPCPQSWYGSPQLEREIVCKMSGAPHYPNYYPVHPNALGGAWFDT', \n    'MARPLLGKTSSVRRRLESLSACSIFFFLRKFCQKMASLVFLNSPVYQMSN'\n]\nqueries = [\n    'MASNTVSAQGGSNRPVRDFSNIQDVAQFLLFDPIWNEQPG', \n    'MSFKVYDPIAELIATQFPTSNPDLQIINNDVLVVSPHKIT', \n    'MEQVPIKEMRLSDLRPNNKSIDTDLGGTKLVVIGKPGSGK'\n]\n```\n\nUse the high-level `search` function, which wraps the internal classes in a single \nfunction to quickly run many-to-many searches in the event all your sequences are in \nmemory. It expects the sequences as iterable of Python strings, and yields hits \npassing E-value and alignment thresholds:\n\n```python\nimport pyswrd\nfor hit in pyswrd.search(queries, targets):\n    print(hit.query_index, hit.target_index, hit.score, hit.evalue)\n```\n\nDifferent parameters can be passed to `pyswrd.search` and are passed to the \nSWORD filter and Opal alignment. For instance, to run SWORD in *fast* mode\ninstead of the default *sensitive* mode, and using the PAM70 matrix instead\nof BLOSUM62, use:\n```python\nfor hit in pyswrd.search(queries, targets, scorer_name=\"PAM70\", score_threshold=0, kmer_length=5):\n    print(hit.query_index, hit.target_index, hit.score, hit.evalue)\n```\n\nBy default multithreading is supported, using one thread per CPU on the local\nmachine as reported by `os.cpu_count`, but it can be changed with the `threads` \nargument:\n```python\nfor hit in pyswrd.search(queries, targets, threads=1):\n    print(hit.query_index, hit.target_index, hit.score, hit.evalue)\n```\n\nYou can also use the `pyswrd.HeuristicFilter` class directly if you wish to \nmanage the data yourself, or if you want to use a different aligner.\n\n\n<!-- ## \ud83e\uddf6 Thread-safety -->\n\n## \u23f1\ufe0f Benchmarks\n\nThe table below shows the time for running `pyswrd.search` using 196 proteins \nas queries (`uniprot_sprot196.fasta`) against a database of 12,701 proteins\n(`uniprot_sprot12071.fasta`) pre-loaded into memory:\n\n|                        | `threads=1` | `threads=2` | `threads=4` | `threads=8` | `threads=12` |\n|------------------------|-------------|-------------|-------------|-------------|--------------|\n| `max_candidates=10`    | 0.87s       | 0.83s       | 0.83s       | 0.80s       | 0.76s        |\n| `max_candidates=50`    | 0.98s       | 0.91s       | 0.98s       | 0.97s       | 1.04s        |\n| `max_candidates=100`   | 1.24s       | 1.33s       | 1.44s       | 1.63s       | 1.67s        |\n| `max_candidates=500`   | 1.86s       | 1.83s       | 1.95s       | 2.09s       | 2.15s        |\n| `max_candidates=1000`  | 2.87s       | 2.64s       | 2.83s       | 2.82s       | 2.90s        |\n| `max_candidates=5000`  | 9.33s       | 8.11s       | 7.59s       | 6.60s       | 6.06s        |\n| `max_candidates=15000` | 21.50s      | 15.85s      | 14.74s      | 11.83s      | 11.34s       |\n| `max_candidates=30000` | 23.44s      | 16.13s      | 14.61s      | 12.47s      | 11.08s       |\n| *no filter (Opal)*     | 31.38s      | 23.60s      | 19.57s      | 15.43s      | 14.60s       |\n\nThe `max_candidates` parameter controls the strictness of the SWORD heuristic filter, and reduces \nthe total number of alignments made by Opal, at the cost of a lowered sensivity \n(*see SWORD Supplementary Figs. S1 and S2.*). \n\n*SWORD uses 15,000 candidates in **fast** mode and 30,000 candidates in **sensitive** mode by default. \nThis was benchmarked against the [NCBI NR](https://www.ncbi.nlm.nih.gov/refseq/about/nonredundantproteins/) \ndatabase, which contains more than 54M sequences; it is likely a smaller `max_candidates` value can \nbe selected for smaller databases and/or databases with less redundant sequences without loss of sensitivity.*\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 tracker](https://github.com/althonos/pyswrd/issues)\nif you need to report or ask something. If you are filing in on a bug,\nplease include as much information as you can about the issue, and try to\nrecreate the same bug in a simple, easily reproducible situation.\n\n\n### \ud83c\udfd7\ufe0f Contributing\n\nContributions are more than welcome! See\n[`CONTRIBUTING.md`](https://github.com/althonos/pyswrd/blob/main/CONTRIBUTING.md)\nfor more details.\n\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/althonos/pyswrd/blob/main/CHANGELOG.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 [GNU General Public License v3.0](https://choosealicense.com/licenses/gpl-3.0/).\nSWORD was written by [Robert Vaser](https://github.com/rvaser) and is distributed under the terms of the\nGPLv3 as well. See `vendor/sword/LICENSE` for more information. SWORD redistributes additional\nlibraries under the terms of the [MIT License](https://choosealicense.com/licenses/mit/).\n\n*This project is in no way not affiliated, sponsored, or otherwise endorsed\nby the [SWORD authors](https://github.com/rvaser). It was developed\nby [Martin Larralde](https://github.com/althonos/) during his PhD project\nat the [European Molecular Biology Laboratory](https://www.embl.de/) in\nthe [Zeller team](https://github.com/zellerlab).*\n\n\n## \ud83d\udcda References\n\n- <a id=\"ref1\">\\[1\\]</a> Stephen F. Altschul, Warren Gish, Webb Miller, Eugene W. Myers, David J. Lipman. Basic local alignment search tool. J Mol Biol. 1990 Oct 5;215(3):403-10. [doi:10.1016/S0022-2836(05)80360-2](https://doi.org/10.1016/S0022-2836(05)80360-2). [PMID:2231712](https://pubmed.ncbi.nlm.nih.gov/2231712).\n- <a id=\"ref2\">\\[2\\]</a> Robert Vaser, Dario Pavlovi\u0107, Mile \u0160iki\u0107. SWORD\u2014a highly efficient protein database search. Bioinformatics, Volume 32, Issue 17, September 2016, Pages i680\u2013i684, [doi:10.1093/bioinformatics/btw445](https://doi.org/10.1093/bioinformatics/btw445).\n- <a id=\"ref3\">\\[3\\]</a> David J. Lipman, William R. Pearson. Rapid and sensitive protein similarity searches. Science. 1985 Mar 22;227(4693):1435-41. [doi:10.1126/science.2983426](https://doi.org/10.1126/science.2983426). [PMID:2983426](https://pubmed.ncbi.nlm.nih.gov/2983426).\n- <a id=\"ref4\">\\[4\\]</a> Korpar Matija, Martin \u0160o\u0161i\u0107, Dino Bla\u017eeka, Mile \u0160iki\u0107. SW#db: \u2018GPU-Accelerated Exact Sequence Similarity Database Search\u2019. PLoS One. 2015 Dec 31;10(12):e0145857. [doi:10.1371/journal.pone.0145857](https://doi.org/10.1371/journal.pone.0145857). [PMID:26719890](https://pubmed.ncbi.nlm.nih.gov/26719890). [PMC4699916](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4699916/).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Cython bindings and Python interface to SWORD (Smith Waterman On Reduced Database), a heuristic method for fast database search.",
    "version": "0.1.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/althonos/pyswrd/issues",
        "Builds": "https://github.com/althonos/pyswrd/actions",
        "Changelog": "https://github.com/althonos/pyswrd/blob/main/CHANGELOG.md",
        "Coverage": "https://codecov.io/gh/althonos/pyswrd/",
        "Documentation": "https://pyswrd.readthedocs.io/en/stable/",
        "Homepage": "https://github.com/althonos/pyswrd",
        "PyPI": "https://pypi.org/project/pyswrd"
    },
    "split_keywords": [
        "bioinformatics",
        "sequence",
        "alignment",
        "opal",
        "sword"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09a866813d5d8aa461ce5a5b0945dba0be33e70e29af5c1c7054a54f40630ec5",
                "md5": "7e2b5eb633413ccb0489d62aa07b5a1e",
                "sha256": "e64765882b39f23e06aaae71ef7ee9e8aedfafe57ef0691e44ba5c8ccf058db7"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e2b5eb633413ccb0489d62aa07b5a1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 2326924,
            "upload_time": "2024-02-28T01:49:21",
            "upload_time_iso_8601": "2024-02-28T01:49:21.655622Z",
            "url": "https://files.pythonhosted.org/packages/09/a8/66813d5d8aa461ce5a5b0945dba0be33e70e29af5c1c7054a54f40630ec5/pyswrd-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a6363fd8fabaafd9f34490dd6e0b9eae2f9cc287cc5d9f3da030e37fe005f70",
                "md5": "08b52c0db353c1e2d209fcbe85e8ecc3",
                "sha256": "d96009803523d7f135ab348d339cc7f5214a4ddb69a7af986c664cb3c59fb101"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "08b52c0db353c1e2d209fcbe85e8ecc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 4048381,
            "upload_time": "2024-02-28T01:49:24",
            "upload_time_iso_8601": "2024-02-28T01:49:24.024738Z",
            "url": "https://files.pythonhosted.org/packages/4a/63/63fd8fabaafd9f34490dd6e0b9eae2f9cc287cc5d9f3da030e37fe005f70/pyswrd-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db3a0afc5a0068dcb512fadb93242d85995c92c0a273419ddd0ca5f9d6f88441",
                "md5": "fbe6418cf69319fa815d4b70883318cf",
                "sha256": "f682438841a114a27a194c68ac577b5273fd9b7daf4cdff8cc5153e2aa8430b7"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fbe6418cf69319fa815d4b70883318cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 2290746,
            "upload_time": "2024-02-28T01:49:26",
            "upload_time_iso_8601": "2024-02-28T01:49:26.130374Z",
            "url": "https://files.pythonhosted.org/packages/db/3a/0afc5a0068dcb512fadb93242d85995c92c0a273419ddd0ca5f9d6f88441/pyswrd-0.1.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2de9e614ca720276c3c44e73b05df92e11ca8caa43a19ff381adb2dba4c9601",
                "md5": "e16785b9171306d9bbcf93e01dd2a93d",
                "sha256": "099d88a49d10e7834de3a77746816ba570bd6cd1399400532628f19be39d6d90"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e16785b9171306d9bbcf93e01dd2a93d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 2327127,
            "upload_time": "2024-02-28T01:49:28",
            "upload_time_iso_8601": "2024-02-28T01:49:28.403597Z",
            "url": "https://files.pythonhosted.org/packages/b2/de/9e614ca720276c3c44e73b05df92e11ca8caa43a19ff381adb2dba4c9601/pyswrd-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a9b7584008a979095aeacfb96dcc0628b255d2bc5771d369254b1a1a23a09ae",
                "md5": "7b18c6d38a663f89c96f35e7ccad5325",
                "sha256": "e98bf551c280113a5f42beb3efaba589e2b802b4159d86509458bd046a977a93"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b18c6d38a663f89c96f35e7ccad5325",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 4143463,
            "upload_time": "2024-02-28T01:49:30",
            "upload_time_iso_8601": "2024-02-28T01:49:30.535591Z",
            "url": "https://files.pythonhosted.org/packages/4a/9b/7584008a979095aeacfb96dcc0628b255d2bc5771d369254b1a1a23a09ae/pyswrd-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee91a32928c0ac8e49c6f1e2cf46110d7f89c3467f6671b4a3e6c606e9edbd49",
                "md5": "7fe305fb106c3cc575e9a2962547e0ce",
                "sha256": "d62f76be79753ad963b8cdd953f21b9a9229e195ec1803181991ad3cb1b98add"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7fe305fb106c3cc575e9a2962547e0ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 2291870,
            "upload_time": "2024-02-28T01:49:31",
            "upload_time_iso_8601": "2024-02-28T01:49:31.855121Z",
            "url": "https://files.pythonhosted.org/packages/ee/91/a32928c0ac8e49c6f1e2cf46110d7f89c3467f6671b4a3e6c606e9edbd49/pyswrd-0.1.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "935142d69eec7dd132000d8257a8ec458d141fe65c3e77188218eb66bc7c88dc",
                "md5": "05cbf38fcf8f31896020c9b1b665ebf3",
                "sha256": "849ed5ef6bd90465abef94639d1ae88695a88da0fa041aed0345345300823744"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "05cbf38fcf8f31896020c9b1b665ebf3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 2325892,
            "upload_time": "2024-02-28T01:49:33",
            "upload_time_iso_8601": "2024-02-28T01:49:33.880486Z",
            "url": "https://files.pythonhosted.org/packages/93/51/42d69eec7dd132000d8257a8ec458d141fe65c3e77188218eb66bc7c88dc/pyswrd-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55340f9e64b52198d773b23b4ec37cb6cb0cc3a01fd6103f65c7ac0730dc5a52",
                "md5": "c40873e3c98ffbe9338524057abe0502",
                "sha256": "3c8d8f89b99319d78bed6a79326544d16a4647ce0741430a8cb71b1c8a2e89f4"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c40873e3c98ffbe9338524057abe0502",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 4109373,
            "upload_time": "2024-02-28T01:49:35",
            "upload_time_iso_8601": "2024-02-28T01:49:35.877089Z",
            "url": "https://files.pythonhosted.org/packages/55/34/0f9e64b52198d773b23b4ec37cb6cb0cc3a01fd6103f65c7ac0730dc5a52/pyswrd-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f056418ec0278f60c18eb2e439c7f54f825717f4dad9218868308bf325a194a7",
                "md5": "1c528a5470dd6775b50902e586dcfb14",
                "sha256": "fb9f7f3812fb7e8d2469c16cf436babd6a8d61d6ea53cd5731fb3aedc099ea25"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1c528a5470dd6775b50902e586dcfb14",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 2289764,
            "upload_time": "2024-02-28T01:49:37",
            "upload_time_iso_8601": "2024-02-28T01:49:37.929106Z",
            "url": "https://files.pythonhosted.org/packages/f0/56/418ec0278f60c18eb2e439c7f54f825717f4dad9218868308bf325a194a7/pyswrd-0.1.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9ae44b4475f4bbaf33c6af248435f9f5b81301f3f40f7b99027a37797ac607e",
                "md5": "2a980025de40f5ddfddb21a63eed67a1",
                "sha256": "07b24d2344083e2a701ecb1b55627eeca38ba314adf30f1f1b56de087789edec"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp36-cp36m-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2a980025de40f5ddfddb21a63eed67a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 2319316,
            "upload_time": "2024-02-28T01:49:39",
            "upload_time_iso_8601": "2024-02-28T01:49:39.920317Z",
            "url": "https://files.pythonhosted.org/packages/f9/ae/44b4475f4bbaf33c6af248435f9f5b81301f3f40f7b99027a37797ac607e/pyswrd-0.1.1-cp36-cp36m-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7acb15c73f2ed9a4eeb5f0d60d18c440ad06225a5ea64d09fa0afe75d71e04bc",
                "md5": "3bee8e32b3e80a7ccf10d878077ac8fa",
                "sha256": "38f3d7d743c79e66ddfa0b93fd64a08f5303614682196512498ab093eafc233c"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3bee8e32b3e80a7ccf10d878077ac8fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 3952547,
            "upload_time": "2024-02-28T01:49:41",
            "upload_time_iso_8601": "2024-02-28T01:49:41.922481Z",
            "url": "https://files.pythonhosted.org/packages/7a/cb/15c73f2ed9a4eeb5f0d60d18c440ad06225a5ea64d09fa0afe75d71e04bc/pyswrd-0.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb9687ae657b4a6a88743eed6a50eb559709d7d30e5013f22139551ecc9e897b",
                "md5": "c8aff7c0c1c7a15976087a1ff1cd49df",
                "sha256": "0cd63b3efe7ffb1e148e8223335a1190ccb1922e9ba95c533a4024a174ec2b66"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c8aff7c0c1c7a15976087a1ff1cd49df",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 2310444,
            "upload_time": "2024-02-28T01:49:43",
            "upload_time_iso_8601": "2024-02-28T01:49:43.282101Z",
            "url": "https://files.pythonhosted.org/packages/bb/96/87ae657b4a6a88743eed6a50eb559709d7d30e5013f22139551ecc9e897b/pyswrd-0.1.1-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4f737559c4b10eeaad9ab25c8ae72f6f2a4aca284ed249a7360295ffb9977e0",
                "md5": "10699edf252da1ee0e5c64dfd02c7181",
                "sha256": "8012c384507fe04367b246e37b1dc3ff3a4163ea060be77db26b6ab4c1be3fbf"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp37-cp37m-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10699edf252da1ee0e5c64dfd02c7181",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 2323463,
            "upload_time": "2024-02-28T01:49:45",
            "upload_time_iso_8601": "2024-02-28T01:49:45.168739Z",
            "url": "https://files.pythonhosted.org/packages/a4/f7/37559c4b10eeaad9ab25c8ae72f6f2a4aca284ed249a7360295ffb9977e0/pyswrd-0.1.1-cp37-cp37m-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31272939d440c0bcb62029249a7d203ed2298236bc372bba70e4bffa598ac29f",
                "md5": "df5cc13fc7eda94a46268cc0ed2f84ab",
                "sha256": "4a22ce6e224f40c81ef471ca5fa3d61520c2898504742da0cc613511fb6333ce"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df5cc13fc7eda94a46268cc0ed2f84ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 3957449,
            "upload_time": "2024-02-28T01:49:47",
            "upload_time_iso_8601": "2024-02-28T01:49:47.262047Z",
            "url": "https://files.pythonhosted.org/packages/31/27/2939d440c0bcb62029249a7d203ed2298236bc372bba70e4bffa598ac29f/pyswrd-0.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffd928d3395e626b27b50cf2a6b0fb307846a9ab5f746ef5feaee47d835614b5",
                "md5": "b4e0098ec4d764e7d8c26d672be9cc71",
                "sha256": "584322e4c1ccf4ed9f866f953239ca47b08acc6ef0af6ad7540faf5c732eee22"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b4e0098ec4d764e7d8c26d672be9cc71",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 2289550,
            "upload_time": "2024-02-28T01:49:49",
            "upload_time_iso_8601": "2024-02-28T01:49:49.350932Z",
            "url": "https://files.pythonhosted.org/packages/ff/d9/28d3395e626b27b50cf2a6b0fb307846a9ab5f746ef5feaee47d835614b5/pyswrd-0.1.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48b069e9575c2a2c25dcddd356d17edcff9fa63fdabac6ba898cc7e13f5ba9e2",
                "md5": "5854bc393921636914959a5f44d31ec2",
                "sha256": "24209c875cb4ede4cb5105bdffed0136182ee2ffd8efc2b63b703e9591743be3"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5854bc393921636914959a5f44d31ec2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 2323768,
            "upload_time": "2024-02-28T01:49:51",
            "upload_time_iso_8601": "2024-02-28T01:49:51.229876Z",
            "url": "https://files.pythonhosted.org/packages/48/b0/69e9575c2a2c25dcddd356d17edcff9fa63fdabac6ba898cc7e13f5ba9e2/pyswrd-0.1.1-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1902e0031222381cec71c9e3e47526b3d40fee297063aeac09fc26edbae9b5f4",
                "md5": "77adee27547f67ecdbfb6ae38c2647ef",
                "sha256": "b47e68a066eafc0854cb11b1ead158242079699b249a19678d02c9f3bfad9778"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "77adee27547f67ecdbfb6ae38c2647ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 4071987,
            "upload_time": "2024-02-28T01:49:52",
            "upload_time_iso_8601": "2024-02-28T01:49:52.562316Z",
            "url": "https://files.pythonhosted.org/packages/19/02/e0031222381cec71c9e3e47526b3d40fee297063aeac09fc26edbae9b5f4/pyswrd-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d31c4e6330eb90958fa522db10168ff178fbfd7fd2541b8f4466aeaba42d5e01",
                "md5": "0526ce8be969e6f062a7792585b063a8",
                "sha256": "ed8db227cd54218b7866acd4b0c0df288549ae505357098b9763eaa39283a64e"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0526ce8be969e6f062a7792585b063a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 2291283,
            "upload_time": "2024-02-28T01:49:53",
            "upload_time_iso_8601": "2024-02-28T01:49:53.919255Z",
            "url": "https://files.pythonhosted.org/packages/d3/1c/4e6330eb90958fa522db10168ff178fbfd7fd2541b8f4466aeaba42d5e01/pyswrd-0.1.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b429933f35fe422417372f2c2a25271bba330bda2b04046598461a1565c70092",
                "md5": "5b5934ff64eea30ff36c783010ef0b42",
                "sha256": "c45aba59c8edcbe5d84a22a29f99b6d3882a1205cda80fb6ca5b1bbc31fe7f26"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b5934ff64eea30ff36c783010ef0b42",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 2326940,
            "upload_time": "2024-02-28T01:49:55",
            "upload_time_iso_8601": "2024-02-28T01:49:55.937902Z",
            "url": "https://files.pythonhosted.org/packages/b4/29/933f35fe422417372f2c2a25271bba330bda2b04046598461a1565c70092/pyswrd-0.1.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2aa8a4134822b5631910b0c1714e57f26bbdb06acf040c8bd7d0eb9d9c38f8a4",
                "md5": "0bcbeb9252583b0e5cc1eb1678602430",
                "sha256": "2ee8a92a57999cddd8d9c07caf21333e79aa3a3100391624517e6550d3390fc7"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0bcbeb9252583b0e5cc1eb1678602430",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 4047329,
            "upload_time": "2024-02-28T01:49:57",
            "upload_time_iso_8601": "2024-02-28T01:49:57.821160Z",
            "url": "https://files.pythonhosted.org/packages/2a/a8/a4134822b5631910b0c1714e57f26bbdb06acf040c8bd7d0eb9d9c38f8a4/pyswrd-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29745f4ac0bedd9b78d359222622c826c5a61b9cf42efef975397a4a5ab04120",
                "md5": "63aba99562e28e817bf560f4aea80df8",
                "sha256": "78c1b6fb1d74aa326b749fd243f1d32a6d92fd0ec755522b11ba2d4da2fc5e0d"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "63aba99562e28e817bf560f4aea80df8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 2290604,
            "upload_time": "2024-02-28T01:49:59",
            "upload_time_iso_8601": "2024-02-28T01:49:59.999061Z",
            "url": "https://files.pythonhosted.org/packages/29/74/5f4ac0bedd9b78d359222622c826c5a61b9cf42efef975397a4a5ab04120/pyswrd-0.1.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1fce36815290479df90de93736f86d50f710619355e9a4d5d61a7398a0748ca6",
                "md5": "a3ab1e1f9c9989a421b26ce8284677ee",
                "sha256": "4969180767137d7397f463c1ec62e992d7ff19d78cbf713bfeaf7e18593dd40e"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a3ab1e1f9c9989a421b26ce8284677ee",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 2265105,
            "upload_time": "2024-02-28T01:50:02",
            "upload_time_iso_8601": "2024-02-28T01:50:02.105935Z",
            "url": "https://files.pythonhosted.org/packages/1f/ce/36815290479df90de93736f86d50f710619355e9a4d5d61a7398a0748ca6/pyswrd-0.1.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc7b3bd957c8ec12b3de62f00c04719cec96b331897b2d07e966c2a5143724b1",
                "md5": "eb661afd8fe92b08fbb51371de21a5ff",
                "sha256": "19de6dcc482d3e19f415cb5e4c097bde180082a1f5090a2fec63165368c1faca"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb661afd8fe92b08fbb51371de21a5ff",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 2324728,
            "upload_time": "2024-02-28T01:50:04",
            "upload_time_iso_8601": "2024-02-28T01:50:04.100006Z",
            "url": "https://files.pythonhosted.org/packages/dc/7b/3bd957c8ec12b3de62f00c04719cec96b331897b2d07e966c2a5143724b1/pyswrd-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa4f3d1817b0ecdca10bb9bc3ebb6d83da88af8e897eadf211b4c22434e73881",
                "md5": "7cbbd2b172f51da6480054d84627fe76",
                "sha256": "6f4dcec5469c2deacbf31a0f4d30e718ea3c9921939bea5de547ce72349645a6"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7cbbd2b172f51da6480054d84627fe76",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 2270574,
            "upload_time": "2024-02-28T01:50:05",
            "upload_time_iso_8601": "2024-02-28T01:50:05.362397Z",
            "url": "https://files.pythonhosted.org/packages/fa/4f/3d1817b0ecdca10bb9bc3ebb6d83da88af8e897eadf211b4c22434e73881/pyswrd-0.1.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2935b0855a61644b75dd2562a375e22b475561e15f5ea38940497427d4554469",
                "md5": "4195dcb689337ecd63310dd2c5667acb",
                "sha256": "878984e9e1bbf1645a4d84b34da1689abac65a4cd8c22c76de2ec2bdfc7ab54a"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-pp37-pypy37_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4195dcb689337ecd63310dd2c5667acb",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 2266404,
            "upload_time": "2024-02-28T01:50:06",
            "upload_time_iso_8601": "2024-02-28T01:50:06.702483Z",
            "url": "https://files.pythonhosted.org/packages/29/35/b0855a61644b75dd2562a375e22b475561e15f5ea38940497427d4554469/pyswrd-0.1.1-pp37-pypy37_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fac65f042d421fb943be841b08df73b1d1ad344c60ad8195fc3d305eb3dc1959",
                "md5": "456d5c3b5c8bbc050368779726fa5220",
                "sha256": "462503c364729aa2c9ecb357453327cb2d778ea951ae35c2133cafa88ff6e0c5"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "456d5c3b5c8bbc050368779726fa5220",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 2327167,
            "upload_time": "2024-02-28T01:50:08",
            "upload_time_iso_8601": "2024-02-28T01:50:08.703734Z",
            "url": "https://files.pythonhosted.org/packages/fa/c6/5f042d421fb943be841b08df73b1d1ad344c60ad8195fc3d305eb3dc1959/pyswrd-0.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80fdc9cb2cf0163e479acdb63115d566db4ea6ae0ad6c21cf9c20817d11357a9",
                "md5": "67216082e935b9d809d0d36c7b925674",
                "sha256": "41409e7643a6108c225b4813c69d37b367266f7c86ee1b2252d7bcd80b1944b2"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "67216082e935b9d809d0d36c7b925674",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 2270752,
            "upload_time": "2024-02-28T01:50:09",
            "upload_time_iso_8601": "2024-02-28T01:50:09.986641Z",
            "url": "https://files.pythonhosted.org/packages/80/fd/c9cb2cf0163e479acdb63115d566db4ea6ae0ad6c21cf9c20817d11357a9/pyswrd-0.1.1-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67a80eb15b75bd23507fb7eb91131e0dcdf0f95ee85a0c2833274af5bec84f6f",
                "md5": "55542c1271c62b9fb0f5a40157d14aec",
                "sha256": "73dc6dc7bb7830dd7d88e6c5153823f3cd6d421010a71277b3ac52b2d6afcd8c"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55542c1271c62b9fb0f5a40157d14aec",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 2266451,
            "upload_time": "2024-02-28T01:50:11",
            "upload_time_iso_8601": "2024-02-28T01:50:11.346605Z",
            "url": "https://files.pythonhosted.org/packages/67/a8/0eb15b75bd23507fb7eb91131e0dcdf0f95ee85a0c2833274af5bec84f6f/pyswrd-0.1.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcdb6ab8530cafa293b29de220b57d516a0413a1df027ee86c991788277b2ebf",
                "md5": "f5c5208da551923752e9f1c508ea6432",
                "sha256": "374e8c80c81b092f59919d82b10e1cc3949971c5cac88c413a871c7c3e0152ec"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f5c5208da551923752e9f1c508ea6432",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 2325869,
            "upload_time": "2024-02-28T01:50:12",
            "upload_time_iso_8601": "2024-02-28T01:50:12.706150Z",
            "url": "https://files.pythonhosted.org/packages/bc/db/6ab8530cafa293b29de220b57d516a0413a1df027ee86c991788277b2ebf/pyswrd-0.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b58fed24e5ec3202bf7c90d91cb36268677be3269094cdec4f944e536875985d",
                "md5": "cb3bc88b14d191c68f140fee1af0a59b",
                "sha256": "b73a02281956b6fb6b7b8e1439712f4490fb7bc8e80c178720f76f9e0787a2b6"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cb3bc88b14d191c68f140fee1af0a59b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 2270759,
            "upload_time": "2024-02-28T01:50:14",
            "upload_time_iso_8601": "2024-02-28T01:50:14.671810Z",
            "url": "https://files.pythonhosted.org/packages/b5/8f/ed24e5ec3202bf7c90d91cb36268677be3269094cdec4f944e536875985d/pyswrd-0.1.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e8d5d22de42abe409503930be83ab7265acb2a95e57fefa9091a2fb74f71fac",
                "md5": "c3124647740d33d77bfc0f6a7d800e64",
                "sha256": "f45a30ee4ba027e991eb80cf45ad66143b7fb96937d1ed0708312e4359a096fe"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c3124647740d33d77bfc0f6a7d800e64",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 2264736,
            "upload_time": "2024-02-28T01:50:15",
            "upload_time_iso_8601": "2024-02-28T01:50:15.947375Z",
            "url": "https://files.pythonhosted.org/packages/3e/8d/5d22de42abe409503930be83ab7265acb2a95e57fefa9091a2fb74f71fac/pyswrd-0.1.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54423a4ea57a827ef2fa44e37e00f6509ae74df798ef76e1b42d55ffe820c1e5",
                "md5": "49b3c8d456ce83ac433cdb5a6e4467a6",
                "sha256": "2795fb49aacdde4f5717fa4dab86efd30f23657b28b7d58068c46b2f89696fae"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "49b3c8d456ce83ac433cdb5a6e4467a6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 2324398,
            "upload_time": "2024-02-28T01:50:17",
            "upload_time_iso_8601": "2024-02-28T01:50:17.153051Z",
            "url": "https://files.pythonhosted.org/packages/54/42/3a4ea57a827ef2fa44e37e00f6509ae74df798ef76e1b42d55ffe820c1e5/pyswrd-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eaca54273d0cbe087b0facdbf760b8db06ac2ac11bc6455e6ca6b1a212f9dd9d",
                "md5": "8fe0d5acd0642799aaa54f51bc60ae3f",
                "sha256": "e896b9a95df2cde7764f201422558a6806be1618330f835aa6724e853309ed55"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8fe0d5acd0642799aaa54f51bc60ae3f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 2270274,
            "upload_time": "2024-02-28T01:50:19",
            "upload_time_iso_8601": "2024-02-28T01:50:19.097282Z",
            "url": "https://files.pythonhosted.org/packages/ea/ca/54273d0cbe087b0facdbf760b8db06ac2ac11bc6455e6ca6b1a212f9dd9d/pyswrd-0.1.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "731f7a3a61908cdf8a6ccdb2a5bbf4aaced24ffbfcdc725ae474f034c6288f20",
                "md5": "376247b21ce14140be56ad7ad8cccb56",
                "sha256": "188eed5da2390098e643e49c5fedaaf4a6646e79437761da6ad25a4b8bdc90ef"
            },
            "downloads": -1,
            "filename": "pyswrd-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "376247b21ce14140be56ad7ad8cccb56",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.5",
            "size": 2123853,
            "upload_time": "2024-02-28T01:50:20",
            "upload_time_iso_8601": "2024-02-28T01:50:20.307136Z",
            "url": "https://files.pythonhosted.org/packages/73/1f/7a3a61908cdf8a6ccdb2a5bbf4aaced24ffbfcdc725ae474f034c6288f20/pyswrd-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-28 01:50:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "althonos",
    "github_project": "pyswrd",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyswrd"
}
        
Elapsed time: 0.18765s