Skip to main content

Python bindings for MAFFT-rs multiple sequence alignment

Reason this release was yanked:

Partial release; superseded by 0.1.1

Project description

pymafft

Python bindings for MAFFT-rs, a Rust reimplementation of the MAFFT multiple sequence alignment tool.

Installation

pip install pymafft

Quick start

import pymafft

# Align protein sequences
result = pymafft.align([
    "ACDEFGHIKLMNPQRSTVWY",
    "ACDEFHIKLMNPQRSTVWY",
    "ACDEHIKLMNPQRSTVWY",
])

for seq in result:
    print(f"{seq.name}: {seq.sequence}")

print(f"Alignment width: {result.width}")

Usage

Align from a list of sequences

# Auto-named (seq_1, seq_2, ...)
result = pymafft.align(["ACDEFGHIK", "ACDEFHIK", "ACDHIK"])

# Named sequences
result = pymafft.align([
    ("human", "ACDEFGHIKLMNP"),
    ("mouse", "ACDEFHIKLMNP"),
    ("fish",  "ACDEHIKLMNP"),
])

Align from a FASTA file

result = pymafft.align_file("sequences.fasta")

Align from a FASTA string

fasta = ">s1\nACDEFGHIK\n>s2\nACDEFHIK\n"
result = pymafft.align_fasta_string(fasta)

Choose an alignment strategy

# FFT-NS-2: fast default
result = pymafft.align(seqs, strategy="fftns2")

# G-INS-i: global iterative (accurate, for globally alignable sequences)
result = pymafft.align(seqs, strategy="ginsi")

# L-INS-i: local iterative (most accurate for <200 sequences)
result = pymafft.align(seqs, strategy="linsi")

# E-INS-i: generalized affine (for sequences with large internal gaps)
result = pymafft.align(seqs, strategy="einsi")

# FFT-NS-i: progressive + iterative refinement
result = pymafft.align(seqs, strategy="fftnsi", maxiterate=100)

Work with results

result = pymafft.align(["ACDEFGHIK", "ACDEFHIK"])

# Access sequences
result.nseq              # number of sequences
result.width             # alignment width (columns)
result[0].name           # sequence name
result[0].sequence       # aligned sequence (with gaps)
result[0].ungapped()     # sequence without gaps

# Export
result.to_fasta()        # FASTA-formatted string
result.to_tuples()       # list of (name, sequence) tuples

# Iterate
for seq in result:
    print(seq.name, len(seq))

Supported strategies

Strategy Flag Description
fftns2 default Fast progressive alignment
fftnsi --maxiterate N Progressive + iterative refinement
ginsi --globalpair Global iterative (accurate)
linsi --localpair Local iterative (most accurate for <200 seqs)
einsi --genafpair Generalized affine (large internal gaps)

License

  • Rust code: MIT
  • Original MAFFT algorithm: BSD-3-Clause

Based on MAFFT by Kazutaka Katoh.

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

pymafft-0.1.0.tar.gz (647.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pymafft-0.1.0-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

pymafft-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pymafft-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pymafft-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymafft-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pymafft-0.1.0-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

pymafft-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pymafft-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pymafft-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymafft-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pymafft-0.1.0-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pymafft-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pymafft-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pymafft-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymafft-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pymafft-0.1.0-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

pymafft-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pymafft-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pymafft-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymafft-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

pymafft-0.1.0-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

pymafft-0.1.0-cp39-cp39-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pymafft-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pymafft-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymafft-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file pymafft-0.1.0.tar.gz.

File metadata

  • Download URL: pymafft-0.1.0.tar.gz
  • Upload date:
  • Size: 647.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pymafft-0.1.0.tar.gz
Algorithm Hash digest
SHA256 038f431a45d57f0b73f31d23d8c081621c380b48da7a2a78d94d9a29a7346871
MD5 5613849c1bc6199101d4f8f00c60f51a
BLAKE2b-256 c388045db2b13cda068c631afbb164bc2cc31c42fc81632eee81aa18647eb8ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0.tar.gz:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pymafft-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pymafft-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aef33e1a02ecf7c2686e5ef935cf593633494e149efe58f4fd4736c177e0df43
MD5 4db189933a76bca77b09d49a72ac373b
BLAKE2b-256 91dca6399a94ddb1cd3beb8182719b880262bd44bea0e9f82b91745114311e6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be99a0f9a58837dab529141971412ce42afdca9116f426889dd82116c0f9bc06
MD5 770c47126b0f73457e8d5ff4a01844a8
BLAKE2b-256 7e69796860364a94b4504c3e2af0dcbd28e505c6e5662cc6392919678c89d946

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fde75b231af640f5a7fd7bbaafc42c5826822bcbd4fbc059fcd7950a681d067
MD5 a4115cfd330f0a444e82c8e7f512f94b
BLAKE2b-256 be59e167e6d025a48efc650dd7bf3c2fd4e6a514ed0c8972738fd4eaf63496bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bcd1bf10c5a2c0efa4f238f565990640c92507329f964ef6af365918e1d7561
MD5 4e51de56eb485c3b7404c0fef34d4816
BLAKE2b-256 bef0cbd48ae978abbc8fdadfddc27bfc10e49e06a5b9c581d0d3c1468dc28913

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 285805a5335f75d548762111eafc1eb15de71397263dc7f2660e01b6c9b0ca0e
MD5 f6557d5a8dece35c31567f65e4603e92
BLAKE2b-256 b11eba12f6434572b2ca92309cba2263048d786023dc1c104ac609ac0d54ccbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pymafft-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pymafft-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3b443063e364bfa6ef1d0e97558f3ca0fa8714e709d0394d7290f51839792d49
MD5 35ac0e19a2ce78e3abf7d964474104fb
BLAKE2b-256 adb845875e1fa4859e9ca71c9613475e144ba2e46d7ecd7cf24c2f98818e0c21

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 382cde0738ce5b546d8516763d762606a3bebb4971ca989168bac71c3d8b7381
MD5 978e38bf4cf724b3bd76255b78c79ec3
BLAKE2b-256 c67415f8454b2647f9825d45598765fcfb3e669bcd7d3538cf7f0a1d36a767e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e959d7533fcb05f4f06fd2750a7d2ab950bf604ec2aa7e17e660cabf156f2b5
MD5 6d1dd956d5582d9b34ad941ccf25750d
BLAKE2b-256 b5d9b8618ff8faa2d5db6f902af44ab8c8b63cd2fc266e4878f8ebc249218d31

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54ec579b9126e3878ae5860623d6a4b4cdc1918ba48aca8404e6d0af0cb900d7
MD5 93e39e8481b1b6f995b05eeeeb2b36bd
BLAKE2b-256 7aed28ff2b2eb949856aa02a3e92f3fa236eabe890bab99a9fad1d8c175ac168

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 154fab6ff3b2fdc2fd4c29d7fd84e9efe084d350623ff0c3f3a1a3e3b5677db5
MD5 b9caca372df12aab8f329f954537e8cf
BLAKE2b-256 32af82eaafea3c68a786370640ebd084b1f6d1341d2a4ad33c08a90f119c3279

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pymafft-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pymafft-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fa1ceb76fffa7cfcb1053913274d7422c9fc88a1a8939c8e79f81c684978afb7
MD5 eb421cd0efb151f316a503d3f22a6f2e
BLAKE2b-256 2e522257e6efb2e78fde2f4e9669504eebd0c14173ba309330b782589138fe73

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 29ebfa74f1798085fce1b3e79edd3e70f17fd819fa2e3afb19bc0c8c64bc68f5
MD5 491e0ac42545c0d59ec929ac113de9b8
BLAKE2b-256 ddec85cb53676f697223c10e350e587912c12dc59d9493d8f36ad2afd5be1b8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a635a45b03edf5676208da840c605c285d293174e5131f3b6f135029d71b5ff2
MD5 af4a82c612578860184c151ba843aae2
BLAKE2b-256 f9513eb9ebc0f2e18139c12ced76c9a974be908ec9ba74bb61bb6222f6af0efc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d2b0a3276a8c986e7458ec293150435e9e7a13c0d705e9d42aafe0b9712dba3
MD5 35d94b99366bb856d083e8aecce77b6b
BLAKE2b-256 f22f270fd9ca09b575bfcf484a93f4f4a0ba2cb2b1f5699cb73d7cba85c3c5e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a4b1c877358d10811366140015bfec2575543ee5fa4569f53fc37cd98eb21670
MD5 aee88d966736dec41b37176c7f5ec6f5
BLAKE2b-256 ef843264126f742a481a8e1dae77da4bfe0d2a0962171a07cf756201f3f2660c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pymafft-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pymafft-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 efadeea35028d7beb6a5ce4d237f503af55e4d374d4b21cfb11dc4dc6627091c
MD5 4f479b23245be9c2129d533a5e5d5dcf
BLAKE2b-256 318d5a602e0f236fad07f7ba233d8e68be2f7c5b4fa8677544a78a9d6911ec13

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f6fc9b6f1c8371954f1197d7b0cba8799de0b1372ae8d90727fa3e034d37416
MD5 ede68a66d9f72c735ade3faec07ea27e
BLAKE2b-256 8d52649fa442e145236c135d48de6802f8376f1003c01e00e62e92e876894be9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e55d808856c3af426e3c4ba69dc2e943b76384197d30fa8c5fb77ecf25e2e56d
MD5 2d6380313ee06cd0f9446038e8eca7b0
BLAKE2b-256 86d629d5d32a04dc67704b54342de3b8f13afb7a9b1442ac78c0af32b43426ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e467fe9f60fe22ee93db8a3b991ef283fb5f0ac60e6eeb50a6b39192e4d02b1
MD5 f586f7c6ce9e1132fe5f4d0b3dcf34a3
BLAKE2b-256 7eca05f2b2c0dfb3cfecc3cd4776943a89b44bf861012325216efba22a1a26be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 89e6ded7d40cf8dded990737db4dad91f4b275eccbcb388870a61b1dd797385d
MD5 9e710216f59bd2f55f956b623856b69b
BLAKE2b-256 6462af4d63e062c3442373e01d1c8462fd0431372a196352d611557d5950b104

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pymafft-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pymafft-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 21a4ba4e2b15b7ec46903e5a0bea415a335689671ace0c389dfd4b7e0172dab2
MD5 c9706644baa22cd7f969cb6f0933e4b2
BLAKE2b-256 11339838bba95d898d1e0a002270e5c3776e2855fdcc8d11cec22a2f8467bfea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp39-cp39-win_amd64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c9f8a7653d3d29cdb39acfde662ccffdfc9eb9acaee217a2792f8dad9bbd848
MD5 4656d1a74de4c361dd0b2df9dc25c951
BLAKE2b-256 88dfabd5bc226fdfa28d2b58bfd8c6bedbe25aa2bab9be31e1fe0b9a90cea68f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d111986c3f1a7e9441ac5ef3c4fd54b655874d079384c4a98427b25ca47f61d7
MD5 a7e1caf449604a69f5c33e586466b9a3
BLAKE2b-256 c71f4702178f7b5746c661b4783e4a8b177af475e00bcbb1a7209f1e9143deb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 934ec28d92016e9afadd9f73ef756697da35f36d5058e55df14f3309c0d4ff50
MD5 ed8f694070fc1c8d5cd7221782679508
BLAKE2b-256 2d3242ae97e9989407c7e7c2268c3ce83a3d1d7b06683f7bd658200d1ea953d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymafft-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pymafft-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b71ec45f9110a160da9d868b1b21b05ff80057efad0b93b66fbe76fcb8530b51
MD5 8ceb0d2a0ee0c5bed371e521ad62e474
BLAKE2b-256 5b1320cd88f9b3b8128f9ca78efd9750ea2eda4423506caee427b966bc8ed6b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymafft-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: python.yml on luksgrin/rust-MAFFT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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