pyfastx is a python module for fast random access to sequences from plain and gzipped FASTA/Q file
Project description
a robust python module for fast random access to sequences from plain and gzipped FASTA/Q file
Introduction
The pyfastx is a lightweight Python C extension that enables users to randomly access to sequences from plain and gzipped FASTA/Q files. This module aims to provide simple APIs for users to extract seqeunce from FASTA and reads from FASTQ by identifier and index number. The pyfastx will build indexes stored in a sqlite3 database file for random access to avoid consuming excessive amount of memory. In addition, the pyfastx can parse standard (sequence is spread into multiple lines with same length) and nonstandard (sequence is spread into one or more lines with different length) FASTA format. This module used kseq.h written by @attractivechaos in klib project to parse plain FASTA/Q file and zran.c written by @pauldmccarthy in project indexed_gzip to index gzipped file for random access.
This project was heavily inspired by @mdshw5’s project pyfaidx and @brentp’s project pyfasta.
Features
Single file for the Python extension
Lightweight, memory efficient for parsing FASTA/Q file
Fast random access to sequences from gzipped FASTA/Q file
Read sequences from FASTA file line by line
Calculate N50 and L50 of sequences in FASTA file
Calculate GC content and nucleotides composition
Extract reverse, complement and antisense sequences
Excellent compatibility, support for parsing nonstandard FASTA file
Support for FASTQ quality score conversion
Provide command line interface for splitting FASTA/Q file
Installation
Currently, pyfastx supports Python 3.5, 3.6, 3.7, 3.8. Make sure you have installed both pip and Python before starting.
You can install pyfastx via the Python Package Index (PyPI)
pip install pyfastx
Update pyfastx module
pip install -U pyfastx
FASTA
Read FASTA file
Read plain or gzipped FASTA file and build index, support for random access to FASTA.
>>> import pyfastx
>>> fa = pyfastx.Fasta('test/data/test.fa.gz')
>>> fa
<Fasta> test/data/test.fa.gz contains 211 seqs
FASTA records iteration
The fastest way to iterate plain or gzipped FASTA file without building index, the iteration will return a tuple contains name and sequence.
>>> import pyfastx
>>> for name, seq in pyfastx.Fasta('test/data/test.fa.gz', build_index=False):
>>> print(name, seq)
You can also iterate sequence object from FASTA object like this:
>>> import pyfastx
>>> for seq in pyfastx.Fasta('test/data/test.fa.gz'):
>>> print(seq.name)
>>> print(seq.seq)
>>> print(seq.description)
Iteration with build_index=True (default) return sequence object which allows you to access attributions of sequence. New in pyfastx 0.6.3.
Get FASTA information
>>> # get sequence counts in FASTA
>>> len(fa)
211
>>> # get total sequence length of FASTA
>>> fa.size
86262
>>> # get GC content of DNA sequence of FASTA
>>> fa.gc_content
43.529014587402344
>>> # get GC skew of DNA sequences in FASTA
>>> # New in pyfastx 0.3.8
>>> fa.gc_skews
0.004287730902433395
>>> # get composition of nucleotides in FASTA
>>> fa.composition
{'A': 24534, 'C': 18694, 'G': 18855, 'T': 24179}
>>> # get fasta type (DNA, RNA, or protein)
>>> fa.type
'DNA'
>>> # check fasta file is gzip compressed
>>> fa.is_gzip
True
Get longest and shortest sequence
New in pyfastx 0.3.0
>>> # get longest sequence
>>> s = fa.longest
>>> s
<Sequence> JZ822609.1 with length of 821
>>> s.name
'JZ822609.1'
>>> len(s)
821
>>> # get shortest sequence
>>> s = fa.shortest
>>> s
<Sequence> JZ822617.1 with length of 118
>>> s.name
'JZ822617.1'
>>> len(s)
118
Calculate N50 and L50
New in pyfastx 0.3.0
Calculate assembly N50 and L50, return (N50, L50), learn more about N50,L50
>>> # get FASTA N50 and L50
>>> fa.nl(50)
(516, 66)
>>> # get FASTA N90 and L90
>>> fa.nl(90)
(231, 161)
>>> # get FASTA N75 and L75
>>> fa.nl(75)
(365, 117)
Get sequence mean and median length
New in pyfastx 0.3.0
>>> # get sequence average length
>>> fa.mean
408
>>> # get seqeunce median length
>>> fa.median
430
Get sequence counts
New in pyfastx 0.3.0
Get counts of sequences whose length >= specified length
>>> # get counts of sequences with length >= 200 bp
>>> fa.count(200)
173
>>> # get counts of sequences with length >= 500 bp
>>> fa.count(500)
70
Get subsequences
Subsequences can be retrieved from FASTA file by using a list of [start, end] coordinates
>>> # get subsequence with start and end position
>>> interval = (1, 10)
>>> fa.fetch('JZ822577.1', interval)
'CTCTAGAGAT'
>>> # get subsequences with a list of start and end position
>>> intervals = [(1, 10), (50, 60)]
>>> fa.fetch('JZ822577.1', intervals)
'CTCTAGAGATTTTAGTTTGAC'
>>> # get subsequences with reverse strand
>>> fa.fetch('JZ822577.1', (1, 10), strand='-')
'ATCTCTAGAG'
Key function
New in pyfastx 0.5.1
Sometimes your fasta will have a long header which contains multiple identifiers and description, for example, “>JZ822577.1 contig1 cDNA library of flower petals in tree peony by suppression subtractive hybridization Paeonia suffruticosa cDNA, mRNA sequence”. In this case, both “JZ822577.1” and “contig1” can be used as identifer. you can specify the key function to select one as identifier.
>>> #default use JZ822577.1 as identifier
>>> #specify key_func to select contig1 as identifer
>>> fa = pyfastx.Fasta('tests/data/test.fa.gz', key_func=lambda x: x.split()[1])
>>> fa
<Fasta> tests/data/test.fa.gz contains 211 seqs
Sequence
Get a sequence from FASTA
>>> # get sequence like a dictionary by identifier
>>> s1 = fa['JZ822577.1']
>>> s1
<Sequence> JZ822577.1 with length of 333
>>> # get sequence like a list by index
>>> s2 = fa[2]
>>> s2
<Sequence> JZ822579.1 with length of 176
>>> # get last sequence
>>> s3 = fa[-1]
>>> s3
<Sequence> JZ840318.1 with length of 134
>>> # check a sequence name weather in FASTA file
>>> 'JZ822577.1' in fa
True
Get sequence information
>>> s = fa[-1]
>>> s
<Sequence> JZ840318.1 with length of 134
>>> # get sequence order number in FASTA file
>>> # New in pyfastx 0.3.7
>>> s.id
211
>>> # get sequence name
>>> s.name
'JZ840318.1'
>>> # get sequence description
>>> # New in pyfastx 0.3.1
>>> s.description
'R283 cDNA library of flower petals in tree peony by suppression subtractive hybridization Paeonia suffruticosa cDNA, mRNA sequence'
>>> # get sequence string
>>> s.seq
'ACTGGAGGTTCTTCTTCCTGTGGAAAGTAACTTGTTTTGCCTTCACCTGCCTGTTCTTCACATCAACCTTGTTCCCACACAAAACAATGGGAATGTTCTCACACACCCTGCAGAGATCACGATGCCATGTTGGT'
>>> # get sequence raw string, New in pyfastx 0.6.3
>>> print(s.raw)
>JZ840318.1 R283 cDNA library of flower petals in tree peony by suppression subtractive hybridization Paeonia suffruticosa cDNA, mRNA sequence
ACTGGAGGTTCTTCTTCCTGTGGAAAGTAACTTGTTTTGCCTTCACCTGCCTGTTCTTCACATCAACCTT
GTTCCCACACAAAACAATGGGAATGTTCTCACACACCCTGCAGAGATCACGATGCCATGTTGGT
>>> # get sequence length
>>> len(s)
134
>>> # get GC content if dna sequence
>>> s.gc_content
46.26865768432617
>>> # get nucleotide composition if dna sequence
>>> s.composition
{'A': 31, 'C': 37, 'G': 25, 'T': 41, 'N': 0}
Sequence slice
Sequence object can be sliced like a python string
>>> # get a sub seq from sequence
>>> s = fa[-1]
>>> ss = s[10:30]
>>> ss
<Sequence> JZ840318.1 from 11 to 30
>>> ss.name
'JZ840318.1:11-30'
>>> ss.seq
'CTTCTTCCTGTGGAAAGTAA'
>>> ss = s[-10:]
>>> ss
<Sequence> JZ840318.1 from 125 to 134
>>> ss.name
'JZ840318.1:125-134'
>>> ss.seq
'CCATGTTGGT'
Reverse and complement sequence
>>> # get sliced sequence
>>> fa[0][10:20].seq
'GTCAATTTCC'
>>> # get reverse of sliced sequence
>>> fa[0][10:20].reverse
'CCTTTAACTG'
>>> # get complement of sliced sequence
>>> fa[0][10:20].complement
'CAGTTAAAGG'
>>> # get reversed complement sequence, corresponding to sequence in antisense strand
>>> fa[0][10:20].antisense
'GGAAATTGAC'
Read sequence line by line
New in pyfastx 0.3.0
The sequence object can be iterated line by line as they appear in FASTA file.
>>> for line in fa[0]:
... print(line)
...
CTCTAGAGATTACTTCTTCACATTCCAGATCACTCAGGCTCTTTGTCATTTTAGTTTGACTAGGATATCG
AGTATTCAAGCTCATCGCTTTTGGTAATCTTTGCGGTGCATGCCTTTGCATGCTGTATTGCTGCTTCATC
ATCCCCTTTGACTTGTGTGGCGGTGGCAAGACATCCGAAGAGTTAAGCGATGCTTGTCTAGTCAATTTCC
CCATGTACAGAATCATTGTTGTCAATTGGTTGTTTCCTTGATGGTGAAGGGGCTTCAATACATGAGTTCC
AAACTAACATTTCTTGACTAACACTTGAGGAAGAAGGACAAGGGTCCCCATGT
Search for subsequence
New in pyfastx 0.3.6
Search for subsequence from given sequence and get one-based start position of the first occurrence
>>> # search subsequence in sense strand
>>> fa[0].search('GCTTCAATACA')
262
>>> # check subsequence weather in sequence
>>> 'GCTTCAATACA' in fa[0]
True
>>> # search subsequence in antisense strand
>>> fa[0].search('CCTCAAGT', '-')
301
FASTQ
New in pyfastx 0.4.0
Read FASTQ file
Read plain or gzipped file and build index, support for random access to reads from FASTQ.
>>> import pyfastx
>>> fq = pyfastx.Fastq('tests/data/test.fq.gz')
>>> fq
<Fastq> tests/data/test.fq.gz contains 100 reads
FASTQ records iteration
The fastest way to parse plain or gzipped FASTQ file without building index, the iteration will return a tuple contains read name, seq and quality.
>>> import pyfastx
>>> for name,seq,qual in pyfastx.Fastq('tests/data/test.fq.gz', build_index=False):
>>> print(name)
>>> print(seq)
>>> print(qual)
You can also iterate read object from FASTQ object like this:
>>> import pyfastx
>>> for read in pyfastx.Fastq('test/data/test.fq.gz'):
>>> print(read.name)
>>> print(read.seq)
>>> print(read.qual)
>>> print(read.quali)
Iteration with build_index=True (default) return read object which allows you to access attribution of read. New in pyfastx 0.6.3.
Get FASTQ information
>>> # get read counts in FASTQ
>>> len(fq)
800
>>> # get total bases
>>> fq.size
120000
>>> # get GC content of FASTQ file
>>> fq.gc_content
66.17471313476562
>>> # get composition of bases in FASTQ
>>> fq.composition
{'A': 20501, 'C': 39705, 'G': 39704, 'T': 20089, 'N': 1}
>>> # New in pyfastx 0.6.10
>>> # get average length of reads
>>> fq.avglen
150.0
>>> # get maximum lenth of reads
>>> fq.maxlen
150
>>> # get minimum length of reas
>>> fq.minlen
150
>>> # get maximum quality score
>>> fq.maxqual
70
>>> # get minimum quality score
>>> fq.minqual
35
>>> # get phred which affects the quality score conversion
>>> fq.phred
33
>>> # Guess fastq quality encoding system
>>> # New in pyfastx 0.4.1
>>> fq.encoding_type
['Sanger Phred+33', 'Illumina 1.8+ Phred+33']
Read
Get read from FASTQ
>>> #get read like a dict by read name
>>> r1 = fq['A00129:183:H77K2DMXX:1:1101:4752:1047']
>>> r1
<Read> A00129:183:H77K2DMXX:1:1101:4752:1047 with length of 150
>>> # get read like a list by index
>>> r2 = fq[10]
>>> r2
<Read> A00129:183:H77K2DMXX:1:1101:18041:1078 with length of 150
>>> # get the last read
>>> r3 = fq[-1]
>>> r3
<Read> A00129:183:H77K2DMXX:1:1101:31575:4726 with length of 150
>>> # check a read weather in FASTQ file
>>> 'A00129:183:H77K2DMXX:1:1101:4752:1047' in fq
True
Get read information
>>> r = fq[-10]
>>> r
<Read> A00129:183:H77K2DMXX:1:1101:1750:4711 with length of 150
>>> # get read order number in FASTQ file
>>> r.id
791
>>> # get read name
>>> r.name
'A00129:183:H77K2DMXX:1:1101:1750:4711'
>>> # get read full header line, New in pyfastx 0.6.3
>>> r.description
'@A00129:183:H77K2DMXX:1:1101:1750:4711 1:N:0:CAATGGAA+CGAGGCTG'
>>> # get read length
>>> len(r)
150
>>> # get read sequence
>>> r.seq
'CGAGGAAATCGACGTCACCGATCTGGAAGCCCTGCGCGCCCATCTCAACCAGAAATGGGGTGGCCAGCGCGGCAAGCTGACCCTGCTGCCGTTCCTGGTCCGCGCCATGGTCGTGGCGCTGCGCGACTTCCCGCAGTTGAACGCGCGCTA'
>>> # get raw string of read, New in pyfastx 0.6.3
>>> print(r.raw)
@A00129:183:H77K2DMXX:1:1101:1750:4711 1:N:0:CAATGGAA+CGAGGCTG
CGAGGAAATCGACGTCACCGATCTGGAAGCCCTGCGCGCCCATCTCAACCAGAAATGGGGTGGCCAGCGCGGCAAGCTGACCCTGCTGCCGTTCCTGGTCCGCGCCATGGTCGTGGCGCTGCGCGACTTCCCGCAGTTGAACGCGCGCTA
+
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF:FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF:FF,FFFFFFFFFFFFFFFFFFFFFFFFFF,F:FFFFFFFFF:
>>> # get read quality ascii string
>>> r.qual
'FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF:FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF:FF,FFFFFFFFFFFFFFFFFFFFFFFFFF,F:FFFFFFFFF:'
>>> # get read quality integer value, ascii - 33 or 64
>>> r.quali
[37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 25, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 25, 37, 37, 11, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 11, 37, 25, 37, 37, 37, 37, 37, 37, 37, 37, 37, 25]
>>> # get read length
>>> len(r)
150
Identifiers
Get identifiers
Get all identifiers of sequence as a list-like object.
>>> ids = fa.keys()
>>> ids
<Identifier> contains 211 identifiers
>>> # get count of sequence
>>> len(ids)
211
>>> # get identifier by index
>>> ids[0]
'JZ822577.1'
>>> # check identifier where in fasta
>>> 'JZ822577.1' in ids
True
>>> # iter identifiers
>>> for name in ids:
>>> print(name)
>>> # convert to a list
>>> list(ids)
Sort identifiers
Sort identifiers by sequence id, name, or length for iteration
New in pyfastx 0.5.0
>>> # sort identifiers by length with descending order
>>> for name in ids.sort(by='length', reverse=True):
>>> print(name)
>>> # sort identifiers by name with ascending order
>>> for name in ids.sort(by='name'):
>>> print(name)
>>> # sort identifiers by id with descending order
>>> for name in ids.sort(by='id', reverse=True)
>>> print(name)
Filter identifiers
Filter identifiers by sequence length and name
New in pyfastx 0.5.10
>>> # get identifiers with length > 600
>>> ids.filter(ids > 600)
<Identifier> contains 48 identifiers
>>> # get identifiers with length >= 500 and <= 700
>>> ids.filter(ids>=500, ids<=700)
<Identifier> contains 48 identifiers
>>> # get identifiers with length > 500 and < 600
>>> ids.filter(500<ids<600)
<Identifier> contains 22 identifiers
>>> # get identifiers contain JZ8226
>>> ids.filter(ids % 'JZ8226')
<Identifier> contains 90 identifiers
>>> # get identifiers contain JZ8226 with length > 550
>>> ids.filter(ids % 'JZ8226', ids>550)
<Identifier> contains 17 identifiers
>>> # clear sort order and filters
>>> ids.reset()
<Identifier> contains 211 identifiers
>>> # list a filtered result
>>> ids.filter(ids % 'JZ8226', ids>730)
>>> list(ids)
['JZ822609.1', 'JZ822650.1', 'JZ822664.1', 'JZ822699.1']
>>> # list a filtered result with sort order
>>> ids.filter(ids % 'JZ8226', ids>730).sort('length', reverse=True)
>>> list(ids)
['JZ822609.1', 'JZ822699.1', 'JZ822664.1', 'JZ822650.1']
>>> ids.filter(ids % 'JZ8226', ids>730).sort('name', reverse=True)
>>> list(ids)
['JZ822699.1', 'JZ822664.1', 'JZ822650.1', 'JZ822609.1']
Command line interface
New in pyfastx 0.5.0
$ pyfastx -h
usage: pyfastx COMMAND [OPTIONS]
A command line tool for FASTA/Q file manipulation
optional arguments:
-h, --help show this help message and exit
-v, --version show program's version number and exit
Commands:
index build index for fasta/q file
stat show detailed statistics information of fasta/q file
split split fasta/q file into multiple files
fq2fa convert fastq file to fasta file
subseq get subsequences from fasta file by region
sample randomly sample sequences from fasta or fastq file
extract extract full sequences or reads from fasta/q file
Build index
New in pyfastx 0.6.10
$ pyfastx index -h
usage: pyfastx index [-h] [-f] fastx [fastx ...]
positional arguments:
fastx fasta or fastq file, gzip support
optional arguments:
-h, --help show this help message and exit
-f, --full build full index, base composition will be calculated
Show statistics information
$ pyfastx stat -h
usage: pyfastx info [-h] fastx
positional arguments:
fastx input fasta or fastq file, gzip support
optional arguments:
-h, --help show this help message and exit
Split FASTA/Q file
$ pyfastx split -h
usage: pyfastx split [-h] (-n int | -c int) [-o str] fastx
positional arguments:
fastx fasta or fastq file, gzip support
optional arguments:
-h, --help show this help message and exit
-n int split a fasta/q file into N new files with even size
-c int split a fasta/q file into multiple files containing the same sequence counts
-o str, --out-dir str
output directory, default is current folder
Convert FASTQ to FASTA file
$ pyfastx fq2fa -h
usage: pyfastx fq2fa [-h] [-o str] fastx
positional arguments:
fastx fastq file, gzip support
optional arguments:
-h, --help show this help message and exit
-o str, --out-file str
output file, default: output to stdout
Get subsequence with region
$ pyfastx subseq -h
usage: pyfastx subseq [-h] [-r str | -b str] [-o str] fastx [region [region ...]]
positional arguments:
fastx input fasta file, gzip support
region format is chr:start-end, start and end position is 1-based, multiple names were separated by space
optional arguments:
-h, --help show this help message and exit
-r str, --region-file str
tab-delimited file, one region per line, both start and end position are 1-based
-b str, --bed-file str
tab-delimited BED file, 0-based start position and 1-based end position
-o str, --out-file str
output file, default: output to stdout
Sample sequences
$ pyfastx sample -h
usage: pyfastx sample [-h] (-n int | -p float) [-s int] [--sequential-read] [-o str] fastx
positional arguments:
fastx fasta or fastq file, gzip support
optional arguments:
-h, --help show this help message and exit
-n int number of sequences to be sampled
-p float proportion of sequences to be sampled, 0~1
-s int, --seed int random seed, default is the current system time
--sequential-read start sequential reading, particularly suitable for sampling large numbers of sequences
-o str, --out-file str
output file, default: output to stdout
Extract sequences
New in pyfastx 0.6.10
$ pyfastx extract -h
usage: pyfastx extract [-h] [-l str] [--reverse-complement] [--out-fasta] [-o str] [--sequential-read]
fastx [name [name ...]]
positional arguments:
fastx fasta or fastq file, gzip support
name sequence name or read name, multiple names were separated by space
optional arguments:
-h, --help show this help message and exit
-l str, --list-file str
a file containing sequence or read names, one name per line
--reverse-complement output reverse complement sequence
--out-fasta output fasta format when extract reads from fastq, default output fastq format
-o str, --out-file str
output file, default: output to stdout
--sequential-read start sequential reading, particularly suitable for extracting large numbers of sequences
Drawbacks
If you intensively check sequence names exists in FASTA file using in operator on FASTA object like:
>>> fa = pyfastx.Fasta('tests/data/test.fa.gz')
>>> # Suppose seqnames has 100000 names
>>> for seqname in seqnames:
>>> if seqname in fa:
>>> do something
This will take a long time to finish. Becuase, pyfastx does not load the index into memory, the in operating is corresponding to sql query existence from index database. The faster alternative way to do this is:
>>> fa = pyfastx.Fasta('tests/data/test.fa.gz')
>>> # load all sequence names into a set object
>>> all_names = set(fa.keys())
>>> for seqname in seqnames:
>>> if seqname in all_names:
>>> do something
Testing
The pyfaidx module was used to test pyfastx. To run the tests:
$ python setup.py test
Acknowledgements
kseq.h and zlib was used to parse FASTA format. Sqlite3 was used to store built indexes. pyfastx can randomly access to sequences from gzipped FASTA file mainly attributed to indexed_gzip.
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 Distribution
Built Distributions
Hashes for pyfastx-0.6.15-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d962f17c1dee7dcb0d74331dc47b89a0f41b052873480051c64433da58375be |
|
MD5 | 691b7b6048b2f2c8b70c7962072da5ab |
|
BLAKE2b-256 | e16ffed8511836c7437b47e5e9661de720f0900424dd5eacc0e04c4fff47952b |
Hashes for pyfastx-0.6.15-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9079e1af98538a233173268edbfccabcbd529c32b351bf4a374fdc3d36f969b |
|
MD5 | bc212162f5802db568be842e10ace370 |
|
BLAKE2b-256 | 89ddb90640797e9c782bf75ca612bec46533ed4e129253479d5c5f51ba082ceb |
Hashes for pyfastx-0.6.15-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43d91efb8ce95349ae719f350160750f52f606595a9c57ccad274930a25935ef |
|
MD5 | 8fecd0273253b1e4d1dc941a190818d9 |
|
BLAKE2b-256 | 4efcfb9ba8f96c2a33221742b8ca4cb122140b7d4aad7203f013d91c85c916d6 |
Hashes for pyfastx-0.6.15-cp38-cp38-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddff9aee6f8233b4f877a56d29d958db6ef08f91b99ad94ba1be35af81c88928 |
|
MD5 | abf8db7b42e4611ba0dbf5571daec58a |
|
BLAKE2b-256 | 123ba41198b34680c35bb9717c7c5c2eb3cc5adf677dac122ddc4d4a1dcfc114 |
Hashes for pyfastx-0.6.15-cp38-cp38-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7aa55a22abb9bd9d9c3db16c493088b5126d8f0584918255b394b5904e79def7 |
|
MD5 | f997b936ec794942046528f9ddeef506 |
|
BLAKE2b-256 | 1a4d6e7685d8dda60f34f6677c47de5779db7374ee1528a0003222293c77e898 |
Hashes for pyfastx-0.6.15-cp38-cp38-manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 650e132aa83bdc75ad82227af457e8a1412c514cb95d2f39b099cf4e65b52471 |
|
MD5 | 10d43a55e08df86772146dfb2bd05aa1 |
|
BLAKE2b-256 | ea6179dab601be2bdfda5c4ed9c026416a6d113505a28227e59197829aec083b |
Hashes for pyfastx-0.6.15-cp38-cp38-manylinux2010_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5f67ae999416f6cbe7f9e9b6e08a449e0fa984a02f7f317465d3881afcef6cdf |
|
MD5 | 1ca53a363b910136dee5c71d4231416b |
|
BLAKE2b-256 | 0af6b9fa0a77e7b212ac24ac9b9bdbd783b1f43175718bf9b028980a9f1a96b1 |
Hashes for pyfastx-0.6.15-cp38-cp38-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9106d5bda84fbf0d19ff0aa0d86da77acc384e51f754b2018c8fe2053d37d884 |
|
MD5 | ca4dbac66f2df241549213f3299fbdb9 |
|
BLAKE2b-256 | 0691e32262a18c79fa375c19d88e19026cccd73e56ca1bfd3f25271866d5941b |
Hashes for pyfastx-0.6.15-cp38-cp38-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 202ed5062fae416fce602ae21b5aa297c8728c61ed01a485c9f55ae6bb208a1a |
|
MD5 | 87fe286ff4eb44d5c3062d6a48456cf1 |
|
BLAKE2b-256 | b23aefc0475a6e7c2ac1f3725f3dec3da8f95d104969f754b2ebbaf918da714a |
Hashes for pyfastx-0.6.15-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9cd96f773d88b1a8a0b222ac6083f0cc81fb7f12a2265a0aff64e48a8857baf3 |
|
MD5 | 9b23c188b37c7ae2eccfb6d09d8a0385 |
|
BLAKE2b-256 | 81c248ca682cd06d6b4e40ddd6d4bbc15f9700b123c631aa5a94184816c4b64c |
Hashes for pyfastx-0.6.15-cp37-cp37m-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 424da82a94567be75f11faf5542d3428ba830e5893fb24e27f65d5b7d2aef0e1 |
|
MD5 | 4d2d0e79a8fa023efabefde019f3b777 |
|
BLAKE2b-256 | 2f255f1ccf2682f2fd127a4a5af885e4621c30bc23400d8f125b910a95786d8f |
Hashes for pyfastx-0.6.15-cp37-cp37m-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | db57fbcf173ef09fe2aad1bd37fd40182f892e0cd1b4c3b51ddde6e72cb15a82 |
|
MD5 | 1ffd89c77b1316d67aba14c000cdd31e |
|
BLAKE2b-256 | b1e16e2b1ee36d8b7cc015e8f258f657bc4426f306f00ba7860fa7238e4da9de |
Hashes for pyfastx-0.6.15-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a30ec8db4d4f9a4585b33f3cf07ba63817009d71a0b93e3bda5c3cf5e0abd3f |
|
MD5 | 0a2c58c7bfc8e2a979995cefd8005d1f |
|
BLAKE2b-256 | 8660b723d539747b05771d1ebddbb2ca14d19599ffad61a36545239d41117162 |
Hashes for pyfastx-0.6.15-cp37-cp37m-manylinux2010_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | eeb5973819af3d2d4b56c2b8d70654c47f5efc6e4d88f21663b02c039c89e9ab |
|
MD5 | b58b3d5f94b79b9018cf6b47ff09df0a |
|
BLAKE2b-256 | 04c93e67e2e6ffe4124d0e0c773146478873be32f4bfb524c88ebd7ab73fafa9 |
Hashes for pyfastx-0.6.15-cp37-cp37m-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 602983f53722bc134c1d3cd2fcdc08e8b79ab3e1b71d6419fc5e23424d6c4bf0 |
|
MD5 | 463a1a12db3f385fa1544b829886c057 |
|
BLAKE2b-256 | d9dd36a009052211f8833693404197f12849fd8e909c95d3d8847e9edbcda44c |
Hashes for pyfastx-0.6.15-cp37-cp37m-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fcafb741bb31c3e0dceaf2359227d09019ce01e44e082439c36a4444a63c57c8 |
|
MD5 | acc89b643f2b0c0f040b783a6049f208 |
|
BLAKE2b-256 | 798f37502883439799ea38de1bde3969647a8ddfc9ce82c764e0aad0a5352257 |
Hashes for pyfastx-0.6.15-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 908e8b0105e360d1ddafc4e11a1afa9e3f87418825d194fc1691aa61e1fb2359 |
|
MD5 | 3bd9c8e6ee9c49c296ccf00bf59033ea |
|
BLAKE2b-256 | 24956df000d00398150fcf4cbef800b047dc3fea713add8c03c1b57ff104087c |
Hashes for pyfastx-0.6.15-cp36-cp36m-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f60fd6d5fb104f53e5acdec71a12940a223c5dbd2c8769e17ae255be8260dcd7 |
|
MD5 | f846283426090ce05a2b5ea4b103f51d |
|
BLAKE2b-256 | f279cc53969c0bf9a28614f94f63905657fc9e40a6ce7895e65a1cdf29fdb19d |
Hashes for pyfastx-0.6.15-cp36-cp36m-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 971c925cd55a9c9e7b37188cedfd22bd94c1fe497a8bbaf23868ae22504ccb39 |
|
MD5 | 1aefbcc5158fb2d7da4f7fff8e0be187 |
|
BLAKE2b-256 | 12ac9737f4c53ecd8433f401bd58892a65e35eb7f4652a629f39e2aa116977e9 |
Hashes for pyfastx-0.6.15-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 35ee2d442007847d55b2071fb32977e9ca17ac17e84058d83af8a81744b5764c |
|
MD5 | 3fb5ed1f22ab57f7ee98d53c2b22d4e6 |
|
BLAKE2b-256 | 16203f7b299baf3305754aad4c38e888dbbe8811954b32e2c24faaeed96076d3 |
Hashes for pyfastx-0.6.15-cp36-cp36m-manylinux2010_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2f61701229b7d3548890c4b34996dc9940505f456237dff45f311f5e847badd |
|
MD5 | 331eb62d2213e35831f49b0040855814 |
|
BLAKE2b-256 | ceec437a67eb0e4e0a0bed4dc6d632a75b39003762a73907c7abd2e0e9119cb2 |
Hashes for pyfastx-0.6.15-cp36-cp36m-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff63b77a481b9ae71d2410e5efc5671573ed2d5a5cae2cfae7e462473f41513c |
|
MD5 | 20f2541a67c10363359c2f0b44cd7b84 |
|
BLAKE2b-256 | fe1d569dc7569f7b8b18d7cbe4fc041fd72bb7a93e63cf4486a0c25c561825e9 |
Hashes for pyfastx-0.6.15-cp36-cp36m-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00cc9ef483f9ab4878a2d2f59f8da006e70e35b12db46b622b1f9787097cde7a |
|
MD5 | d2b95536d3c0db9ffe5121e19caa085b |
|
BLAKE2b-256 | 32ab501c121f20502588e43c51a759e7015f45ea617020b22497f8c6d28fed49 |
Hashes for pyfastx-0.6.15-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | afff2bba0eba1bed321ccd107116cd57f4f8d7f8073c115baa82684458f1e829 |
|
MD5 | 0a909c7c2199f77a9d687ccbdfef0c07 |
|
BLAKE2b-256 | 87a4297efb5c83c152e3bab1ae768e1984322762b31e65fe029fca9e8819f1b1 |
Hashes for pyfastx-0.6.15-cp35-cp35m-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 077b8d3d63ecc39ac948d5c5e8c1a901f23ff437daeb7030c836882488edc975 |
|
MD5 | 243738904bf2d6d405b5b5c4597091e1 |
|
BLAKE2b-256 | 1b2e410e2b26e32342f2b5360eef65a48fb136262414f0227bbdf272fcd3ab9e |
Hashes for pyfastx-0.6.15-cp35-cp35m-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c7641f43a711bb402beed1d55951666b72dc5f7e744e9e8c6f8d4f812ccf71a |
|
MD5 | 0230cc576e80d70be21265bce083670c |
|
BLAKE2b-256 | b95b4416051dd0d687df789c546615d5ce82b1694549be95666a5e035ac44c28 |
Hashes for pyfastx-0.6.15-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f8dafd6cd650016be2072604360570913a5e395631c9b49897c2db39e4b7332 |
|
MD5 | 648808e10ae09393d3a31668ec1844e2 |
|
BLAKE2b-256 | a2432872a90ee9db6031144e9df192c63608a784acdb618dd9d5f080f64cae24 |
Hashes for pyfastx-0.6.15-cp35-cp35m-manylinux2010_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c287a6193b4542213bcbc4543b8c2c8e118b08cdd812d6af4ec7fc637749c580 |
|
MD5 | 639dafcbb2159565db14250393c60748 |
|
BLAKE2b-256 | e172e9ff8a23b5d9e2a0f2178a724bff7ef36d1d9ae866c560e1e8d95f3f0768 |
Hashes for pyfastx-0.6.15-cp35-cp35m-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c150f97abb4fa52a203336ee864bcdc578da05a3c503bbae2869ef4e1e8fa72 |
|
MD5 | e6961fe4099f6df5d34874e4e004dad8 |
|
BLAKE2b-256 | 37789ef148392a6fe64647a6552642c8f9db7551e20f2cebd0093facbf3cf6c8 |
Hashes for pyfastx-0.6.15-cp35-cp35m-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30f607c6ad769d55a5f9c9977dc24b7c31b3743017fb79a7b92828b210f486ce |
|
MD5 | e07a46e24f1a925c676b144773411fa0 |
|
BLAKE2b-256 | 4e37745d111acd3f2ce3b67ed7b87015dcf1c3156a09f00bad0abd3bdd93397d |
Hashes for pyfastx-0.6.15-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88f67ea8daa9b70b4171981f9772398bf1f371d1cfe13a1e055dc967ec18dc0c |
|
MD5 | 28d64086dde9b8490068a780513f11cb |
|
BLAKE2b-256 | c09c2644fc0baf122ac8a635036df19ebfbc996caa61b64fe5632c5066ed824f |