Skip to main content

Dependency free, Cython-compatible scoring matrices to use with biological sequences.

Project description

🧬🔠 scoring-matrices Stars

Dependency free, Cython-compatible scoring matrices to use with biological sequences.

Actions Coverage License PyPI Bioconda AUR Wheel Python Versions Python Implementations Source Issues Docs Changelog Downloads

🗺️ Overview

Scoring Matrices are matrices used to score the matches and mismatches between two characters are the same position in a sequence alignment. Some of these matrices are derived from substitution matrices, which uses evolutionary modeling.

The scoring-matrices package is a dependency-free, batteries included library to handle and distribute common substitution matrices:

  • no external dependencies: The matrices are distributed as-is: you don't need the whole Biopython ecosystem, or even NumPy.
  • Cython compatibility: The ScoringMatrix is a Cython class that can be inherited, and the matrix data can be accessed as either a raw pointer, or a typed memoryview.
  • most common matrices: The package distributes most common matrices, such as those used by the NCBI BLAST+ suite, including:
    • PAM matrices by Dayhoff et al. (1978).
    • BLOSUM matrices by Henikoff & Henikoff (1992).
    • VTML matrices by Muller et al. (2002).
    • BENNER matrices by Benner et al. (1994).

🔧 Installing

scoring-matrices can be installed directly from PyPI, which hosts some pre-built wheels for the x86-64 architecture (Linux/OSX/Windows) and the Aarch64 architecture (Linux/OSX), as well as the code required to compile from source with Cython:

$ pip install scoring-matrices

Otherwise, scoring-matrices is also available as a Bioconda package:

$ conda install bioconda::scoring-matrices

💡 Usage

Python

  • Import the ScoringMatrix class from the installed module:
    from scoring_matrices import ScoringMatrix
    
  • Load one of the built-in matrices:
    blosum62 = ScoringMatrix.from_name("BLOSUM62")
    
  • Get individual matrix weights either by index or by alphabet letter:
    x = blosum62[0, 0]
    y = blosum62['A', 'A']
    
  • Get a row of the matrix either by index or by alphabet letter:
    row_x = blosum62[0]
    row_y = blosum62['A']
    

Cython

  • Access the matrix weights as raw pointers to constant data:
    from scoring_matrices cimport ScoringMatrix
    
    cdef ScoringMatrix blosum = ScoringMatrix.from_name("BLOSUM62")
    cdef const float*  data   = blosum.data_ptr()    # dense array
    cdef const float** matrix = blosum.matrix_ptr()  # array of pointers
    
  • Access the ScoringMatrix weights as a typed memoryview using the buffer protocol in more recents versions of Python:
    from scoring_matrices cimport ScoringMatrix
    
    cdef ScoringMatrix     blosum  = ScoringMatrix.from_name("BLOSUM62")
    cdef const float[:, :] weights = blosum
    

💭 Feedback

⚠️ Issue Tracker

Found a bug ? Have an enhancement request ? Head over to the GitHub issue tracker 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 for more details.

📋 Changelog

This project adheres to Semantic Versioning and provides a changelog in the Keep a Changelog format.

⚖️ License

This library is provided under the MIT License. Matrices were collected from the MMseqs2, Biopython and NCBI BLAST+ sources and are believed to be in the public domain.

This project was developed by Martin Larralde during his PhD project at the Leiden University Medical Center in the Zeller team.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scoring_matrices-0.3.0.tar.gz (62.6 kB view details)

Uploaded Source

Built Distributions

scoring_matrices-0.3.0-pp310-pypy310_pp73-win_amd64.whl (95.6 kB view details)

Uploaded PyPy Windows x86-64

scoring_matrices-0.3.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (102.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

scoring_matrices-0.3.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (97.2 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

scoring_matrices-0.3.0-pp39-pypy39_pp73-win_amd64.whl (95.7 kB view details)

Uploaded PyPy Windows x86-64

scoring_matrices-0.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (102.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

scoring_matrices-0.3.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (97.2 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

scoring_matrices-0.3.0-pp38-pypy38_pp73-win_amd64.whl (95.5 kB view details)

Uploaded PyPy Windows x86-64

scoring_matrices-0.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (103.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

scoring_matrices-0.3.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (97.1 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

scoring_matrices-0.3.0-pp37-pypy37_pp73-win_amd64.whl (95.5 kB view details)

Uploaded PyPy Windows x86-64

scoring_matrices-0.3.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (102.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

scoring_matrices-0.3.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl (97.1 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

scoring_matrices-0.3.0-cp312-cp312-win_amd64.whl (109.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

scoring_matrices-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (121.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

scoring_matrices-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (116.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

scoring_matrices-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (111.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

scoring_matrices-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (112.4 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

scoring_matrices-0.3.0-cp311-cp311-win_amd64.whl (108.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

scoring_matrices-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (126.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

scoring_matrices-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (121.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

scoring_matrices-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (112.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

scoring_matrices-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (113.1 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

scoring_matrices-0.3.0-cp310-cp310-win_amd64.whl (108.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

scoring_matrices-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (127.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

scoring_matrices-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (122.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

scoring_matrices-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (111.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

scoring_matrices-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl (111.7 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

scoring_matrices-0.3.0-cp39-cp39-win_amd64.whl (109.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

scoring_matrices-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (127.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

scoring_matrices-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (122.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

scoring_matrices-0.3.0-cp39-cp39-macosx_11_0_arm64.whl (112.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

scoring_matrices-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl (113.6 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

scoring_matrices-0.3.0-cp38-cp38-win_amd64.whl (109.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

scoring_matrices-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (128.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

scoring_matrices-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (122.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

scoring_matrices-0.3.0-cp38-cp38-macosx_11_0_arm64.whl (112.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

scoring_matrices-0.3.0-cp38-cp38-macosx_10_12_x86_64.whl (112.7 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

scoring_matrices-0.3.0-cp37-cp37m-win_amd64.whl (109.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

scoring_matrices-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (127.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

scoring_matrices-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (123.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

scoring_matrices-0.3.0-cp37-cp37m-macosx_10_12_x86_64.whl (113.1 kB view details)

Uploaded CPython 3.7m macOS 10.12+ x86-64

File details

Details for the file scoring_matrices-0.3.0.tar.gz.

File metadata

  • Download URL: scoring_matrices-0.3.0.tar.gz
  • Upload date:
  • Size: 62.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for scoring_matrices-0.3.0.tar.gz
Algorithm Hash digest
SHA256 0eba50087f65f752cb7ac3c20f58cbbae6650ed923c3c48070245b64bdebb3cb
MD5 56889a60b26bc4a3b56107f8a21557b1
BLAKE2b-256 a5f19e7cb732fffa2dd709248723299fe7e224981e47be2932b2906abaab1a20

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 520f8602350b9084689ffd42786a23ea8c565f260e0afc5bb4a94413c488b677
MD5 cdfc9f906f42edaaf8feca948f3ccec4
BLAKE2b-256 15400a50c25ec9fed643dba47b3dd259b3c0e7ef456751840350f77b0c101383

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8868429a37ffecdaded6e7103d820fc06fe0955c82c8e77c349c639a1e3c53c
MD5 15043e37e5962f7b6febe5123de66d26
BLAKE2b-256 8de520d2f5c95aece69378e1479f2705bf2dc09405bafd2ca1edc41bad606d85

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d50b1f058fc5191a9dcac27e800798a3019c5396d550911f0846f27dd0cba40
MD5 11b90d6ed8b20e65b72f29828d4d4da4
BLAKE2b-256 176b08e6776457d30df6efd9f6f44d5bf67c38cd164f09557ea7f5b535d26ef9

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3c3044e3b72303fa7e29430777864819113b109c951f18943d3badd33e9db7e2
MD5 962a28f8a394c81a58fc2bf299d9bd4c
BLAKE2b-256 48f88708894deb2142bbb163e2367205fbb023025478da1142aa83fec517b943

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 af8a56c631cd03a31a8fde8284176771812376896eb0d4ccac7d31e537a12389
MD5 e2606bd0534fc55f3cb7820fe7aa7acd
BLAKE2b-256 1855bd032e547d7970ca9dad9c2d2adb89552e31e637d1d3545f9089183af98a

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a14cf3808a3c2cd00f4f5db975fb9dc22d4938d632f603b1607f74992215908f
MD5 300868ca27060552146206b4f7ff8e5b
BLAKE2b-256 6a9f193f988f4dda7dd9d28aad2865d1d64a2822d923dc2cd84a19dfaf75ba70

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94ff3bebd23a832366dce85276be2c6f23979252df8799e6c225b87c86433dad
MD5 e1e9f3c9fff50848fed2abe3c3f51f08
BLAKE2b-256 33baaf8cec56fa3fb7cf459efd5d4675e51ca5bb10fdee547771ee80e10b4814

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7edaf33f6c700cf697dbd5d383ba8c0b5ed8744f8e3ed673e920e3692c9d5315
MD5 8c16f3db319c7790c0cfdeeb2bed657e
BLAKE2b-256 d5345303c2b30a4c56696cd461aa08a8bbdc0f94bafa0e13c111f449923f6e2f

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a9971584121aefdf788a658c1c9f92cac9fc0ce5104ecba7a85172e9c996b080
MD5 5d695204f3a60a7d897be5409c06db96
BLAKE2b-256 f0a00139070332b634bc9e241826238bc06d0b570dded02885b962c8b54e06d1

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e041396c7bea3d6c3a0ac20ca631acdb662cdaf3e8dae5999056e7797d5351da
MD5 1ffb3191ed4fa6d8468fd937fde3fa0e
BLAKE2b-256 e902eadf4f716b16956ba01413edbbd57d9802fb8040e0a9e6d616cbed581bea

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7986a69a6a187e0feb9d9b47a4e3ddff986aa283431d5eab102bcaaf338c790
MD5 a91201bb08651921d1de2f3cae186081
BLAKE2b-256 1fc1eccefc2660912a43439b41046f8ac7dee32b481350f2ce192353fd2622aa

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 edb458b663d73ba88714bd659d692c3f0780e98e33bdb61cb933bb067cf34da0
MD5 a68c524204faea740418aab1f8c28a29
BLAKE2b-256 b9b0dd57dadaa2fe5854cc4702ac52b8d63a3fdf09f54e026f8a804a9b9c7e8c

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9301d0843d343eebffa9334ecbf537e52148f71ff0035ffdd23080993b636968
MD5 497268491dc84286c87d8db1f3c3c5a0
BLAKE2b-256 a3e237e1ea939e7bcf45998864d412bb725585cde1a6d02543949900bc7d92e9

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e235cf9f6b6555a3c831e56db5b236e98385fb1e2a229263cfa53b6b586088b5
MD5 b06fbda5a85a3fe5b21ef6916017f5de
BLAKE2b-256 a7a73f0843107b4827bf82415d1bb05eccff9026cfbdee2a5ac43bc74aca42b0

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93a6c228437beb8e95e63e853a9f1d22db34e7f007191a9317bdc3cb1bad76d7
MD5 117be5f99e628be0eecc090e50242b9b
BLAKE2b-256 00a4480189b1302f1dafa619dac46db3553df954cb19ebcc9f44f84d3d05d3ae

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b580583d1f46f5a39ea63566cdd257dd347036dfb8a821969a8d8646c67e162f
MD5 915ec6c09808d6e0755625b0ddbb8328
BLAKE2b-256 7ec67b57be6558a7027f7d9c61a57cace248ea794bf7c9a1a0755798f68af38b

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2a70a5a320f0081adf6ddfb653171d91033fe44ba6d66011422ea7dea0c6d21b
MD5 a36b4ebe11799d3efe935bda9653403d
BLAKE2b-256 50f9013198cf12bdba57d778fa44f1d9fb95ed9278a23fccdcb2e6e675ae0e5c

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d9c67ef00a17f0da5a2d40ed4857303624615013030f6625a612ea64f642c21
MD5 5eb9bcae29e6d8fe9bc87fe5fbda3c07
BLAKE2b-256 c4171ed8cae64ac7b27af858e4f882e310b303f01cb6a01f9cb71d4ceb7f412b

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71ec211369a20d8d435b12d6e2cd809f028f7213f71d77cc64de5bab57ee4931
MD5 828713ce15329001bf16860ea12e58f1
BLAKE2b-256 e2a51381e6c164a32cd2e7f092458eb799af2c7c0e3e5f1dd512e7a92e6ac344

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67c112aa363cf0820e553055756c6cd39a5ab7b88c11a42aabf00e28692e4602
MD5 0d9c69ff9d108f6ae591c2c84297d18d
BLAKE2b-256 f419a474f76edfa09320f45ce04c6ac195e2400fa53f30cc47e043ccca373c9b

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a81a705f266d1e4df1c4b6b51b7d660942359f4b1763215f29fcc9b8f84786e
MD5 cba081e4cfdac6412cbd695223faa3a5
BLAKE2b-256 38c63753ebbf0ca88ce7aa9222b05da1feb8e53b8c1c4a6bfd9207447c6ea3bb

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8122a9835d556bccee12ef1dcac63f4e3eadb84bfc72f818629b1c06b7b627cc
MD5 5501b8564c463e0ba76bcd98eac6fd4e
BLAKE2b-256 670be0a7196a6d5cff32d03e535fe5daed28949e9e66da3e8b6e358eef9db7e9

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53b09f27574c4b0bfd69b4f0e3926cf0d121c7ed061a52c5cbd984952771fa2f
MD5 685eeaa3777f9b45a2b0693d7a19c35b
BLAKE2b-256 55c65ac496f4a7240ec7092f26cacd46fd01ffce25f439b37a8958753d4892a7

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07e1bb8d74885f2f4f82f39117388b22862f1fb7d8547e5e0626780fbd6b8b27
MD5 2533efffcf2c5a6aed8820055903ebd0
BLAKE2b-256 bc327f0533f2e3d5d70cb0ad423407b64f1185078dacd7b14ed3081b1d0cd3c6

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad416679f5544d1e14c9f5d98b9af3f5d2bd09480d9dd33ffe9edcb2705b6e7f
MD5 ed154fd296d1f808add1228bb0685422
BLAKE2b-256 9edf718388508e9c8886789cb75178721c2dbbca7fbe3b7470e328f79fd41c88

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e9a8d4a87c764b3ebaad28c08fd5403207d148184ba7ad5305b7d7f7be0c3a29
MD5 6c7ac5cc4c3c0b98fa60bada8da5fa85
BLAKE2b-256 a0b7e79af6eca88ceee23141a6781e2ed2abbb90040adf7a5ef286b619407bf2

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d0726cfd44664d70bce9afa14c235c4bac8346a82d66755094c809d66a60eacf
MD5 8978b08a0eb0dcfd4905eeba69faee7a
BLAKE2b-256 c925f59b6826c8461370010f32d24dd8efb25f851c3080efb895aa0184e44b02

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40013e312f505989d0b5ddd1c6fea3d1b128a43027fa08ca20cea5f945db9535
MD5 9ada2bff798ee6d9eaece020d74577c5
BLAKE2b-256 80a05f26932888402da1fb42fedc3e319f6dff890b0d899c4f3c57dbe2290d63

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 685cae1b94ba825686a760be877e42c10979761c9437e5a5689c9822f5e8b688
MD5 be6688a86b5228e938da77e550623c6c
BLAKE2b-256 e3d14c0ba6d1dad31acc769609b7f586a2f7a93e7dd4b1c742e05b35fe17b29a

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15c9be348947d622b7945e97da6fb57d27eed4c974c91f06efb9e5b10899b363
MD5 be6172d46b4d9b21dda3599634b4884a
BLAKE2b-256 22ca14a8f766c7dd88f6a42e8f6560469c75a44a657364d358f1ef7d65d4180b

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f4ce1c17c2b6d608778867b2a10eae5728e6d1280c3ae0c811cdf70e7fdc48d2
MD5 0260fb972d6be05432518e2bb99e5c59
BLAKE2b-256 95a84b276da8cc5597673e5dc297963e11735b3e95c402685d902f927afdbd93

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5be736fcc103442505adc75d452097d9919747be7a1cedad13a2bd85a9ac72b1
MD5 09738e89bffe947e0205c5c18b807fa9
BLAKE2b-256 747af6bc2a18b699254b88908c978d2b43b4805b6945678e3560113dbd9e97a1

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f950f660ead48098b962963ba2835e989c232800ad0d5be0a41f3ac4c6d62bcd
MD5 8dfc706f5973415f2c7a8c9057087aac
BLAKE2b-256 ea4f5f489d9e9db6517df4bdb5a91e71f4522b74339d355ca25c031873c10ce6

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5589a4e2b68b770137f703b7daf50f6d308a08e449cd3ef87c7c7b20a6e82412
MD5 a851e299e3d184213ccc3285e20bd0c6
BLAKE2b-256 0784ec943d414b221134e8c5d6aa01ddf53828cc1ec9464fda61228b4b300f00

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e4cf2cb0c8858f0c756f9de685ab67223e1dfce2068df7bb6daba5a99199228
MD5 dd85ebcc76183737097dd36a62ded59f
BLAKE2b-256 d13b900ebbcb610aa6a42c4d18a6595ad35ff6ff734391b306de575601c0f684

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2d16d94adc54357ad73f563dc4dafe0af0fddca7cf5e52e310291d2ad28c526b
MD5 bd827d015b14fd39f7104456ed4d4e7e
BLAKE2b-256 65efca5dd9075dbada9db8edcb4c7cb0b3393871e4409833a74b733349535455

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2025b9068905bc8ab90a9165293217df713387f88c8d7cf4d3ceb2db426eedba
MD5 0aa979ccee868dac66b02bb708897c6b
BLAKE2b-256 99ec4139233039b8f7b909d817fc5e24c3fadb37b0dccef97e74ea1d795fd526

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35065d4164694d0ec13573f8a59ff552e4ff95d65c018b47d37e6a627b8d57bb
MD5 92c14ddc8996b80fe24366b9b2196272
BLAKE2b-256 e83383953a465d3a03fe2afcf94a959537c747b5a40b46d074c2bee2b9255d45

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26644b9a125eb174d5a26bcb3a3c2a4b60b9e763e3a7f6e8b0fc6fcf3c8dda39
MD5 4f672a5819d70cfeed89c4b4812c62a0
BLAKE2b-256 902ee62708d1d92ec991bf8bf3eac9782780e65e0fe3b02797f487d3b4bcf3e2

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 663d34ffaab88a7d3cade4baa906bb02152c850abf3421c17366735f844a1650
MD5 53d16db711007c3243bae720ddb4cf7d
BLAKE2b-256 ce987f0eaa12f4e6e9ce2cc253a70a2c143955b5c45c822f5b0acfee8519293f

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 529b987be265475c4c3a8ba63674a8dd6f1a850067f36182732fbf044808d066
MD5 cb6c28c9d74be8fa75fcc480a5e824a2
BLAKE2b-256 d75bc9f2ed310ce333a00280c4fe80056ace64d18b213cec38ae92df4fb6864d

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6fb563bd360a761073ad308a1951d4e4bcc37bc20d38121044b4e46ac0a54add
MD5 6f59a9624d1bf4141ec5f0be3f8356ee
BLAKE2b-256 cc325df7321849692bc3eae6e35f6137ba3d5eed8351e0667322fc222de0a074

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70617f48f5f6235cd5a94c44d97fd188973a13165c63f47b8ee7b55591dcefba
MD5 723c70b9de4fcba886162f2727647e88
BLAKE2b-256 68ea11d19ebef7e90d319e461ba3cb2b7f6f935eb94c5741158261813df28c25

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 122c97297eb926eed8594bad34f2e0fab10eb91503e455362d22476a66d36619
MD5 64ae0f2958789533ada630022035ab1a
BLAKE2b-256 65e35499eb9683db7cb99224bc659114ff8003997ca9481009b2cf72d03331df

See more details on using hashes here.

File details

Details for the file scoring_matrices-0.3.0-cp37-cp37m-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scoring_matrices-0.3.0-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20f37f6d04cd58e6806fc107f6c240e5370abab2c46102cca97c21c09248b44a
MD5 e74eadf0f167f11c6e496cd94bc52e7e
BLAKE2b-256 5cdd69d4c62dab23e0af0efe308b1932760d1dbbc1f8ede09dcc3b5085976a61

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page