A package for reading and writing fasta/fastq files
Project description
Documentation: https://openbioseq.github.io/fastseqio/
fastseqio
fastseqio is a Python library for fast reading and writing of FASTA/FASTQ files.
It supports plain text and gzip-compressed files (.gz) and provides a small, practical API centered on:
seqioFile: file reader/writerRecord: sequence record object
Installation
pip install fastseqio
Quick Start
Read records (FASTA/FASTQ auto-detection)
from fastseqio import seqioFile
with seqioFile("test-data/test2.fa", "r") as f:
for record in f:
print(record.name, record.sequence)
Write FASTA
from fastseqio import seqioFile
with seqioFile("out.fa", "w") as f:
f.writeFasta("seq1", "ACGGGGGGGTTTT")
f.writeFasta("seq2", "TTTTCCCCAAAAG")
Write FASTQ
from fastseqio import seqioFile
with seqioFile("out.fq", "w") as f:
f.writeFastq("read1", "ACGT", "IIII")
File API (seqioFile)
Create a file handle
seqioFile(path: str, mode: 'r' | 'w' = 'r', compressed: bool = False)
path: input/output file path. Use"-"for stdin/stdout.mode:"r": read mode"w": write mode
compressed: force gzip mode when needed (for example whenpath="-").
Notes:
- If
pathends with.gz, compression is enabled automatically. - Iteration consumes the file sequentially. To re-read from the beginning, call
reset().
Read methods
readOne()→ read next record (auto format)readFasta()→ read next FASTA recordreadFastq()→ read next FASTQ recordfor record in file:→ iterate withreadOne()internally
All read methods return Record or None at end-of-file.
Write methods
writeFasta(name, sequence, comment=None)writeFastq(name, sequence, quality, comment=None)writeOne(name, sequence, quality=None, comment=None)- writes FASTA when
qualityis not provided - writes FASTQ when
qualityis provided
- writes FASTA when
writeRecord(record, fastq=False)
Validation:
- For FASTQ, sequence length must equal quality length.
Writer options
file.set_write_options(
lineWidth=80, # optional; when provided it must be > 0
includeComments=True, # optional
baseCase="upper", # optional: "upper" or "lower"
)
Utilities and properties
reset()→ rewind file to beginningfflush()→ flush write bufferclose()→ close filereadable/writablesize→ file size in bytesoffset→ current byte offset
Record API (Record)
Create a record
from fastseqio import Record
record = Record("seq1", "ACGGGG", quality=None, comment="example")
Fields
record.namerecord.sequencerecord.qualityrecord.commentrecord.length(same aslen(record))
Sequence helpers
record.upper(inplace=False)record.lower(inplace=False)record.reverse(inplace=False)record.subseq(start, length)record.hpc()(homopolymer compression)record.kmers(k)(iterator of k-mers)
Example:
from fastseqio import Record
r = Record("id", "AAACCCGGGTTT")
print(r.hpc()) # ACGT
print(list(r.kmers(4))) # ['AAAC', 'AACC', ...]
Gzip Example
from fastseqio import seqioFile
# Compression auto-detected by .gz suffix
with seqioFile("reads.fa.gz", "w") as w:
w.writeFasta("seq1", "ACGTACGT")
with seqioFile("reads.fa.gz", "r") as r:
for rec in r:
print(rec.name)
Recommended Usage Pattern
Use context managers (with seqioFile(...) as f) so files are always closed correctly.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastseqio-0.2.3-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 151.6 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e8f8585d62fa02bc32dd71a9378e57b79bb43577d0e77bc47a093fc43c3af17
|
|
| MD5 |
474d2477f7b2e113e9cf797e8a2354a3
|
|
| BLAKE2b-256 |
1569f56697b23cc2a88da9a4b030c723bc3b06592a3c72771a607d68f9ff7840
|
File details
Details for the file fastseqio-0.2.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93cebee03895530fca3a79bf6727770c83be5726aa33c823b7d3a2e9d8c6b7d5
|
|
| MD5 |
0db55488680be3e646f696faa5aaa74b
|
|
| BLAKE2b-256 |
4cc140c3b009089fb3d9396172616e72289f7b667f87b478e7f01e252c23e090
|
File details
Details for the file fastseqio-0.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebb7c50f08a856cf37883febed637e608476616b35b35887883bd81ad6cf543d
|
|
| MD5 |
f1dd607e9067c342969a7c293280d605
|
|
| BLAKE2b-256 |
204cf93a110c528e3f2e2f57475fdf532fc2c52bec64fe9369b21c713f866244
|
File details
Details for the file fastseqio-0.2.3-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 184.5 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02aee97beafb7f4407bcadc7345b9c9828c4f84d9e4db2484db3db21fe7fd0fb
|
|
| MD5 |
cd57126a1dda6e1f11e33c1fc51d3854
|
|
| BLAKE2b-256 |
c412479663583f8e60aa76fee80210e7d389052fa38772be94e60e3b992596f0
|
File details
Details for the file fastseqio-0.2.3-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 187.0 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f97873223b7265fa53ef0ad3b4e8cec91c6511e3733ebdd5766f7997d8d1213c
|
|
| MD5 |
cb4d9b9c64adf07f259d78f088110300
|
|
| BLAKE2b-256 |
983a2c316eae19503b168b564f354fd8ade083d4544769339dca5e80051b957f
|
File details
Details for the file fastseqio-0.2.3-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 147.6 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcf266d59778054772268908510e682ffcb08a55a05e4b0eeffb2a8d04de07d6
|
|
| MD5 |
b07a42ab9d2d321abbec7ba8519442d3
|
|
| BLAKE2b-256 |
5a22bf1419d151af1accdd806514f62f599e4908dad91a262f8cb61c85b32a77
|
File details
Details for the file fastseqio-0.2.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e2325a2232f27c33eccfa828332cd387558be89e4c9e058afe8450d9355f985
|
|
| MD5 |
038fd68d5671d18be49ccf7dd72f39ff
|
|
| BLAKE2b-256 |
d5678c779f21a418a3f6a8dd6642330d9e44eeea0f0092d126c69db4042b64fe
|
File details
Details for the file fastseqio-0.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d02e8b5f3acdbc84451e7e2611b3cd58085caa14b2bdedd6d46113629daca0ba
|
|
| MD5 |
bce8ebd58e4472dcddc7ff25664f3900
|
|
| BLAKE2b-256 |
67c13db3181b80d75a8c82c59f7d20a3683ff44178e23c47d89b0d74403bf54e
|
File details
Details for the file fastseqio-0.2.3-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 183.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ed8b23be09420f6bf81c8c868fcf8e7f0ad299a341521e6dad11bb17d46d57b
|
|
| MD5 |
4a8975b46b74f8f343c7d058f0a74e9d
|
|
| BLAKE2b-256 |
99fa179c66e7f460f6bb53de128518132dd615922cd6a203075f6ddb089adc9c
|
File details
Details for the file fastseqio-0.2.3-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 186.6 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fb996885cf583a767782392b728b1164724f3a687ea8987626e7290a0a4eeb6
|
|
| MD5 |
8791dc4466a04db8a1e8099a971d11e7
|
|
| BLAKE2b-256 |
97b7aa89bbd6a22067e487c3764b25a1c08a76c3b2143173d26dd22fc64a4a6a
|
File details
Details for the file fastseqio-0.2.3-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 147.6 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b900d1b8486f4255cd50cd5d05a003a45d0ef51d9396c7df500daf3efbb9d71a
|
|
| MD5 |
e3377352ab3f9b9c83e3cd4a3717e1c8
|
|
| BLAKE2b-256 |
6090f0f8b5d148f45abb22ad43fb10229a52946e95f60b19a488635ec8fc8f74
|
File details
Details for the file fastseqio-0.2.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f1e673e370e1695278797a7cac9e571004cdddade6f58686fa9b59a178a1407
|
|
| MD5 |
dada8a1167013e89a41316145025c695
|
|
| BLAKE2b-256 |
6ae35ba92dce0c132b57ca4cf1f75a1b2e80a1d1c42be8fcb5a07dd0660dfefb
|
File details
Details for the file fastseqio-0.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f4fcb63c73d9d7cae30c8a575bc2d6497fb6902876dea360161f274ef7e877a
|
|
| MD5 |
1431f3b95017de37bf97ac2ee7da55b2
|
|
| BLAKE2b-256 |
da8b57e37357bd03ea258e7992eff5c5ddd4fa5f0be3e84f52c73a1e89124603
|
File details
Details for the file fastseqio-0.2.3-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 183.8 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcdde321f9934e976a42782e81ea85a765c9b51b8966827a8c380c62189d0b97
|
|
| MD5 |
8cedef8758b59a57db506df54a55d592
|
|
| BLAKE2b-256 |
be080e63e903fc854af311deaa5ef586e27eb4d45ec1c1dc96b11e203126de37
|
File details
Details for the file fastseqio-0.2.3-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 186.6 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f8338d2187975ff005f32e1eb6a3a4c0c9d4383dfd3be797a346b543511967e
|
|
| MD5 |
db20c41f0bf152d4ce578e28f70ffa49
|
|
| BLAKE2b-256 |
18a0431d18a0a4b76c7b53aa8cd8c517df246439b24f90f646a99d2abc8c307c
|
File details
Details for the file fastseqio-0.2.3-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 147.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45fc1c948cfc04f6fe16725459be87d03e958123cb2e7290e57f82b6ce9b363d
|
|
| MD5 |
9424d2d939f579c3d5b57e14366f0b47
|
|
| BLAKE2b-256 |
11ba645d1a4c5cb8767bc33c9fc07c8115c5105f68608182166bd918d47e453c
|
File details
Details for the file fastseqio-0.2.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
353502b9f4faacf6b6e62e7bdd416c8aa38957e6154ce699f0092201aa2a657a
|
|
| MD5 |
d38dd7519cf0f9ec4e5f548ec579201a
|
|
| BLAKE2b-256 |
5e53796ce9e03ce683e4b5caabfb9aabaeeafdc175082f03fc4e210e15862266
|
File details
Details for the file fastseqio-0.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5db63b2519a71ea16ed0ef92d75ac0b8e9f6567305c1bf6fca92e36af750723
|
|
| MD5 |
93fd4dc98bd2fb1c2da5fffda3c5c3e4
|
|
| BLAKE2b-256 |
19ce0b3083e2d0cbc17dd1bdda51062995f5ed9305c438bbda9e10d32846980c
|
File details
Details for the file fastseqio-0.2.3-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 185.1 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9252de7a902766c8a24e196ed78eec897009b9919ec6a236679d4d2dd351f895
|
|
| MD5 |
56ed59857525a08a3d7344afa2e30310
|
|
| BLAKE2b-256 |
bf7177d49f0870fbc9504eb3200477555168d37c69d3d7c2b686b2d17d18f568
|
File details
Details for the file fastseqio-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 186.7 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1567ee4364645b867a0df7db561d975ad49f4d95b1dd8ec737db5359e6ec1c53
|
|
| MD5 |
e0fdde37f247b955aa85ef7d1a2e70c3
|
|
| BLAKE2b-256 |
078bcc0c5883dc57a92db4f048502a8ea5048ba5c37791274326c28e3afae4cc
|
File details
Details for the file fastseqio-0.2.3-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 146.3 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e5401d1e1cc2baeda50d737aaa8a59d199bc1b0b5a9de072a38333ccaaaf93d
|
|
| MD5 |
9c91f5967d5f109b845db39275a914c0
|
|
| BLAKE2b-256 |
ba05224e6f0348f52e1cced68853faa0a9706262b8905fd4ead954430e3e31b0
|
File details
Details for the file fastseqio-0.2.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a90a16adc9f2732eed4c07b87476d884ad7a62cac07f66900f57409cd94fe239
|
|
| MD5 |
b98639099c8ce997f4e834b20d9316e3
|
|
| BLAKE2b-256 |
67579ca98fb11d558342e1b8b4e01f772f322e7dc1a491d6090f87ad729e38f1
|
File details
Details for the file fastseqio-0.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15bc2c32d4460ea48fa6fb6c00d426add93d2217af0dff069b17a5a360c4fe78
|
|
| MD5 |
cde033234a73c53fe43db33a50da4f13
|
|
| BLAKE2b-256 |
a171120ec3cb664f1c972a78a8d1a1d41be2a42f3dd7f9c710a54c75e32eefe4
|
File details
Details for the file fastseqio-0.2.3-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 183.9 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ae692190b8376f1d287ba63418bc83b7d33e5b93a40ad0d176820df4cc77fac
|
|
| MD5 |
2f0d2f6ddcc011afc72fb30bdf3c21e9
|
|
| BLAKE2b-256 |
e9fdfd533691c47582eed42217723075395d8b80fd452d8d82f6c8c855f0c1b2
|
File details
Details for the file fastseqio-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 185.2 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c835c8a8c3a3e9fe3cfa18002ec1052dea3c45c5e4414fe01570ba35b5f74c5
|
|
| MD5 |
7359aee0e1003008956ccee5302b121a
|
|
| BLAKE2b-256 |
51e1b9ab40a094869e3d6d7b976ef31eb25cfec0a21804cec278491c5864307b
|
File details
Details for the file fastseqio-0.2.3-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 146.4 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5596a69faec5e0704b4ecdbff013232861076edb5519c77c2f5a9117fe20aad7
|
|
| MD5 |
8ef32e68d95df33cdbe2cf18d1853282
|
|
| BLAKE2b-256 |
d5b969c6d70680c74a1cc5787ce87358740cf5945ece4ef657853b409b704643
|
File details
Details for the file fastseqio-0.2.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6f42eaa5b6bf3b488789f2ddd5e497426fd5d3f8b57859f93ebfad493d13b41
|
|
| MD5 |
8bb50dc879d31c2d7947c22cd97cd355
|
|
| BLAKE2b-256 |
a4e6891be997acba59ffd7dbdc4d50ea4eda899a2083752ebc719bfcb26fe6a4
|
File details
Details for the file fastseqio-0.2.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9903b4eafe0dcc72fcff8a8169b658f8b1b37736991dd9ce9e6cffadc5ff713b
|
|
| MD5 |
0ed9bcdbd86c5e9d531aeddb9c8fb5cd
|
|
| BLAKE2b-256 |
ed6dca01311ff05d112e7845da3f28006b867e84d1ab32a910e0e3f835c5cc42
|
File details
Details for the file fastseqio-0.2.3-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 183.9 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fb4a39ea8bfc7c4c6858fd864506f25fc612e45de642d34e0bf0d192f81e70f
|
|
| MD5 |
8c0f8532c18de01bee3fa74c575cb82d
|
|
| BLAKE2b-256 |
943cd508b972efc7d6ad05c1ee27736a59a72c6e84224bce26705189c3388014
|
File details
Details for the file fastseqio-0.2.3-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: fastseqio-0.2.3-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 185.4 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9212f71104f339fe802db222d0644329cfadc957e0811c852226e8a3b53c1f40
|
|
| MD5 |
3a533cdf7232d370ccde4efd3b9a5a36
|
|
| BLAKE2b-256 |
9cee59d4601a704bd1f29a0b4cec7da0b0d79a42368399771ae22b469d1603c2
|