Read PLINK files into Pandas data frames
Project description
pandas-plink
Pandas-plink is a Python package for reading PLINK binary file format and realized relationship matrices (PLINK or GCTA). The file reading is taken place via lazy loading, meaning that it saves up memory by actually reading only the genotypes that are actually accessed by the user.
Notable changes can be found at the CHANGELOG.md.
Install
It can be installed using pip:
pip install pandas-plink
Alternatively it can be intalled via conda:
conda install -c conda-forge pandas-plink
Usage
It is as simple as
>>> from pandas_plink import read_plink1_bin
>>> G = read_plink1_bin("chr11.bed", "chr11.bim", "chr11.fam", verbose=False)
>>> print(G)
<xarray.DataArray 'genotype' (sample: 14, variant: 779)>
dask.array<shape=(14, 779), dtype=float64, chunksize=(14, 779)>
Coordinates:
* sample (sample) object 'B001' 'B002' 'B003' ... 'B012' 'B013' 'B014'
* variant (variant) object '11_316849996' '11_316874359' ... '11_345698259'
father (sample) <U1 '0' '0' '0' '0' '0' '0' ... '0' '0' '0' '0' '0' '0'
fid (sample) <U4 'B001' 'B002' 'B003' 'B004' ... 'B012' 'B013' 'B014'
gender (sample) <U1 '0' '0' '0' '0' '0' '0' ... '0' '0' '0' '0' '0' '0'
i (sample) int64 0 1 2 3 4 5 6 7 8 9 10 11 12 13
iid (sample) <U4 'B001' 'B002' 'B003' 'B004' ... 'B012' 'B013' 'B014'
mother (sample) <U1 '0' '0' '0' '0' '0' '0' ... '0' '0' '0' '0' '0' '0'
trait (sample) <U2 '-9' '-9' '-9' '-9' '-9' ... '-9' '-9' '-9' '-9' '-9'
a0 (variant) <U1 'C' 'G' 'G' 'C' 'C' 'T' ... 'T' 'A' 'C' 'A' 'A' 'T'
a1 (variant) <U1 'T' 'C' 'C' 'T' 'T' 'A' ... 'C' 'G' 'T' 'G' 'C' 'C'
chrom (variant) <U2 '11' '11' '11' '11' '11' ... '11' '11' '11' '11' '11'
cm (variant) float64 0.0 0.0 0.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0 0.0
pos (variant) int64 157439 181802 248969 ... 28937375 28961091 29005702
snp (variant) <U9 '316849996' '316874359' ... '345653648' '345698259'
>>> print(G.sel(sample="B003", variant="11_316874359").values)
0.0
>>> print(G.a0.sel(variant="11_316874359").values)
G
>>> print(G.sel(sample="B003", variant="11_316941526").values)
2.0
>>> print(G.a1.sel(variant="11_316941526").values)
C
Portions of the genotype will be read as the user access them.
Covariance matrices can also be read very easily. Example:
>>> from pandas_plink import read_rel
>>> K = read_rel("plink2.rel.bin")
>>> print(K)
<xarray.DataArray (sample_0: 10, sample_1: 10)>
array([[ 0.885782, 0.233846, -0.186339, -0.009789, -0.138897, 0.287779,
0.269977, -0.231279, -0.095472, -0.213979],
[ 0.233846, 1.077493, -0.452858, 0.192877, -0.186027, 0.171027,
0.406056, -0.013149, -0.131477, -0.134314],
[-0.186339, -0.452858, 1.183312, -0.040948, -0.146034, -0.204510,
-0.314808, -0.042503, 0.296828, -0.011661],
[-0.009789, 0.192877, -0.040948, 0.895360, -0.068605, 0.012023,
0.057827, -0.192152, -0.089094, 0.174269],
[-0.138897, -0.186027, -0.146034, -0.068605, 1.183237, 0.085104,
-0.032974, 0.103608, 0.215769, 0.166648],
[ 0.287779, 0.171027, -0.204510, 0.012023, 0.085104, 0.956921,
0.065427, -0.043752, -0.091492, -0.227673],
[ 0.269977, 0.406056, -0.314808, 0.057827, -0.032974, 0.065427,
0.714746, -0.101254, -0.088171, -0.063964],
[-0.231279, -0.013149, -0.042503, -0.192152, 0.103608, -0.043752,
-0.101254, 1.423033, -0.298255, -0.074334],
[-0.095472, -0.131477, 0.296828, -0.089094, 0.215769, -0.091492,
-0.088171, -0.298255, 0.910274, -0.024663],
[-0.213979, -0.134314, -0.011661, 0.174269, 0.166648, -0.227673,
-0.063964, -0.074334, -0.024663, 0.914586]])
Coordinates:
* sample_0 (sample_0) object 'HG00419' 'HG00650' ... 'NA20508' 'NA20753'
* sample_1 (sample_1) object 'HG00419' 'HG00650' ... 'NA20508' 'NA20753'
fid (sample_1) object 'HG00419' 'HG00650' ... 'NA20508' 'NA20753'
iid (sample_1) object 'HG00419' 'HG00650' ... 'NA20508' 'NA20753'
>>> print(K.values)
[[ 0.89 0.23 -0.19 -0.01 -0.14 0.29 0.27 -0.23 -0.10 -0.21]
[ 0.23 1.08 -0.45 0.19 -0.19 0.17 0.41 -0.01 -0.13 -0.13]
[-0.19 -0.45 1.18 -0.04 -0.15 -0.20 -0.31 -0.04 0.30 -0.01]
[-0.01 0.19 -0.04 0.90 -0.07 0.01 0.06 -0.19 -0.09 0.17]
[-0.14 -0.19 -0.15 -0.07 1.18 0.09 -0.03 0.10 0.22 0.17]
[ 0.29 0.17 -0.20 0.01 0.09 0.96 0.07 -0.04 -0.09 -0.23]
[ 0.27 0.41 -0.31 0.06 -0.03 0.07 0.71 -0.10 -0.09 -0.06]
[-0.23 -0.01 -0.04 -0.19 0.10 -0.04 -0.10 1.42 -0.30 -0.07]
[-0.10 -0.13 0.30 -0.09 0.22 -0.09 -0.09 -0.30 0.91 -0.02]
[-0.21 -0.13 -0.01 0.17 0.17 -0.23 -0.06 -0.07 -0.02 0.91]]
Please, refer to the pandas-plink documentation for more information.
Authors
License
This project is licensed under the MIT License.
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
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 pandas_plink-2.3.2.tar.gz.
File metadata
- Download URL: pandas_plink-2.3.2.tar.gz
- Upload date:
- Size: 18.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f43feeb2d974c156cb567807c0d38f66bc6e5b4358d333f1029422adf105df90
|
|
| MD5 |
a47ff95a1f5a203ce5a82612be5e4b66
|
|
| BLAKE2b-256 |
06478883a1a94852db1865b004e20cab7334c0c5478695427d68284efb3fa916
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2.tar.gz:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2.tar.gz -
Subject digest:
f43feeb2d974c156cb567807c0d38f66bc6e5b4358d333f1029422adf105df90 - Sigstore transparency entry: 211360828
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-pp310-pypy310_pp73-win_amd64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 55.8 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67695a02ecff0a50a21d478be548b265aa62ed53d0f2a47fcd489ed8418d54e7
|
|
| MD5 |
fab6c1bf3b24151921eb531e740935c2
|
|
| BLAKE2b-256 |
11ac0719b8c070dbc6206d3e33fb346e11e2a174d6b279d7b7d4c5909df506b7
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-pp310-pypy310_pp73-win_amd64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-pp310-pypy310_pp73-win_amd64.whl -
Subject digest:
67695a02ecff0a50a21d478be548b265aa62ed53d0f2a47fcd489ed8418d54e7 - Sigstore transparency entry: 211360889
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 83.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdd7c8f9933f890ccbaf7752b3a808063566f2a900b34b8b54b7c8ae838a1858
|
|
| MD5 |
f1a0cb4129812f4ccdd0f9da88acc9c3
|
|
| BLAKE2b-256 |
238517fc9040c45d90612e5220df538ec19b459037ad945c54f43ee1ad4f684b
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-pp310-pypy310_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
fdd7c8f9933f890ccbaf7752b3a808063566f2a900b34b8b54b7c8ae838a1858 - Sigstore transparency entry: 211360861
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 46.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e1f5bd2098e8c41b2de5e7857c22e1d90c9c31434cf0770401a89f0c91843ae
|
|
| MD5 |
296d8ec0cda43108b28d2e2b42bea9a6
|
|
| BLAKE2b-256 |
eaea2584b2f706552f8782e146eec36503db57b6df0b6eb5d43159e0e263cbcf
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
7e1f5bd2098e8c41b2de5e7857c22e1d90c9c31434cf0770401a89f0c91843ae - Sigstore transparency entry: 211360891
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-pp310-pypy310_pp73-macosx_14_0_arm64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-pp310-pypy310_pp73-macosx_14_0_arm64.whl
- Upload date:
- Size: 43.0 kB
- Tags: PyPy, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b96f6bf879a2ef5b4b34c4df00c7853a00d9362d30d74899a1b9ef29afafabb5
|
|
| MD5 |
bcf39d766b53ac359bc8784977becad4
|
|
| BLAKE2b-256 |
3ac5f2ed79eb7cc5cdc62e0e3f518268065a731ce611b1fd7ecace0a67a0534e
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-pp310-pypy310_pp73-macosx_14_0_arm64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-pp310-pypy310_pp73-macosx_14_0_arm64.whl -
Subject digest:
b96f6bf879a2ef5b4b34c4df00c7853a00d9362d30d74899a1b9ef29afafabb5 - Sigstore transparency entry: 211360831
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-pp310-pypy310_pp73-macosx_13_0_x86_64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-pp310-pypy310_pp73-macosx_13_0_x86_64.whl
- Upload date:
- Size: 42.1 kB
- Tags: PyPy, macOS 13.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3b6065ca5ece4673c1dc3d9cd6bd0fa187e57ff5d0e0307e11d933768dceee8
|
|
| MD5 |
9b978fac7855c05f7c18aa7141348b37
|
|
| BLAKE2b-256 |
d89371fab25bf65edf760e8ccbe24f317f650b3e334f6e1cbf41770f535428f2
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-pp310-pypy310_pp73-macosx_13_0_x86_64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-pp310-pypy310_pp73-macosx_13_0_x86_64.whl -
Subject digest:
d3b6065ca5ece4673c1dc3d9cd6bd0fa187e57ff5d0e0307e11d933768dceee8 - Sigstore transparency entry: 211360877
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 49.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2f96082b59416f108db0790ecbaa2699941afee79829267e41c75bb041e66f3
|
|
| MD5 |
9d5f436bd48fb95f6af67006b7ee1769
|
|
| BLAKE2b-256 |
7c3b2123a39bd61a919f48c3f1c6f69520b0285dc7dfcc117159d9bd823a5227
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp312-cp312-win_amd64.whl -
Subject digest:
e2f96082b59416f108db0790ecbaa2699941afee79829267e41c75bb041e66f3 - Sigstore transparency entry: 211360835
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 77.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
977e84aef7994edd9167b0c492dd3da7e33ed88af61b5fd24df43b1ee84da5c6
|
|
| MD5 |
3d4e6105a1a242703c577ace85c01cd4
|
|
| BLAKE2b-256 |
d41b68c8d8f8d15c4c0b33b9beb0e4e2186c0b3a847b7a930d43ebc922de5014
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
977e84aef7994edd9167b0c492dd3da7e33ed88af61b5fd24df43b1ee84da5c6 - Sigstore transparency entry: 211360872
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 42.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
260355a902cb120050f71dc103ed87c67004a91a9af520a75a39cd1a702ba95a
|
|
| MD5 |
40dcbb6b13d0081850177c563c73ee60
|
|
| BLAKE2b-256 |
2e24eda0b498f61de2c46b2c8b409f80c836ea6609e89062649332cd563003ec
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
260355a902cb120050f71dc103ed87c67004a91a9af520a75a39cd1a702ba95a - Sigstore transparency entry: 211360845
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 79.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53979344a97f9c980a1a9633f13bb80a52bdbe3e483fa67c3508c223947dbee0
|
|
| MD5 |
2fcec7726d2a3a8dabb4e630a3d9cc3d
|
|
| BLAKE2b-256 |
3d34f9cf6cd46399f0a59161be896259e0fa936bfedd9f000ecfa3ce6c2b6373
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
53979344a97f9c980a1a9633f13bb80a52bdbe3e483fa67c3508c223947dbee0 - Sigstore transparency entry: 211360833
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 42.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58216296e0c915c7349bcc64584b2bc41b10ac346ba624df38cd5abcf7fa5dc4
|
|
| MD5 |
e21de5331b7cffdebde58965c3a36ac3
|
|
| BLAKE2b-256 |
2ca78026819e037fcf0d52bb1a2705aef3e957092ec0a3d1a43c05a1b6f2e6a7
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
58216296e0c915c7349bcc64584b2bc41b10ac346ba624df38cd5abcf7fa5dc4 - Sigstore transparency entry: 211360878
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp312-cp312-macosx_14_0_arm64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp312-cp312-macosx_14_0_arm64.whl
- Upload date:
- Size: 40.1 kB
- Tags: CPython 3.12, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce7d82927ceae3fd51751ffe5b34e3864245125dfb7c36991e6e3e363c52d1cf
|
|
| MD5 |
d58d0fc7a49564c66d836622a3e95610
|
|
| BLAKE2b-256 |
b98124d19c39d18bfdf3627157f7601729f85d97f6e7e0ed6bafe91ae7632d5c
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp312-cp312-macosx_14_0_arm64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp312-cp312-macosx_14_0_arm64.whl -
Subject digest:
ce7d82927ceae3fd51751ffe5b34e3864245125dfb7c36991e6e3e363c52d1cf - Sigstore transparency entry: 211360849
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp312-cp312-macosx_13_0_x86_64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp312-cp312-macosx_13_0_x86_64.whl
- Upload date:
- Size: 39.4 kB
- Tags: CPython 3.12, macOS 13.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae25ef90db1ddfa0f39531c41b60d036a8eda2d90ba95e6d8763f85763a1c315
|
|
| MD5 |
f37e8e22fba8200ebfb40b962f9af798
|
|
| BLAKE2b-256 |
0ce47f9f771a6822389a5af2cd2f1b1bb455ed4f24458078b87002263f786567
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp312-cp312-macosx_13_0_x86_64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp312-cp312-macosx_13_0_x86_64.whl -
Subject digest:
ae25ef90db1ddfa0f39531c41b60d036a8eda2d90ba95e6d8763f85763a1c315 - Sigstore transparency entry: 211360841
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 40.9 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a3419d1adc92895c934584f104ab0e9bbfd45259c814ab306ed493583b48447
|
|
| MD5 |
1642bd5c70fefa06d5a0f3eab7375f25
|
|
| BLAKE2b-256 |
17b50f6fbba83564b8cbc4849b6613ee46c5ab0500779dc1ef6981fa66d6a15f
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp311-cp311-win_amd64.whl -
Subject digest:
8a3419d1adc92895c934584f104ab0e9bbfd45259c814ab306ed493583b48447 - Sigstore transparency entry: 211360870
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 59.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95d3281dafd6d4c1d971be57df2c8daf05d52dea7e7e2ea1e78455a6e969fcdd
|
|
| MD5 |
3ab0399038491cd3e9490f3fb5df5c17
|
|
| BLAKE2b-256 |
a2bf4da9d9ceb1a70b50832014dbd4d63b032930d8fe5a5a58d2baff6306ac12
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
95d3281dafd6d4c1d971be57df2c8daf05d52dea7e7e2ea1e78455a6e969fcdd - Sigstore transparency entry: 211360842
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 42.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f99f8c373433c4a908d860620d7235463a5692947fb3da3ef1eb1211bdecaa11
|
|
| MD5 |
76d5f7fc01a84872c52e150b8ed6cbef
|
|
| BLAKE2b-256 |
4309fc58bd3e314cc68de13680b82b0273741799352cb69ae6675512120cc2f7
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
f99f8c373433c4a908d860620d7235463a5692947fb3da3ef1eb1211bdecaa11 - Sigstore transparency entry: 211360874
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 60.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f244eddfbebab8a224974689fea838eaf448456b5649b712d10b3dc28b82f929
|
|
| MD5 |
8a7c4c379acbeeb07a8b4f504f353cac
|
|
| BLAKE2b-256 |
8f64558f20ae7173e0c53f308a295b5bba24d4cd18f7559bc15f6d1891fdcfd3
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
f244eddfbebab8a224974689fea838eaf448456b5649b712d10b3dc28b82f929 - Sigstore transparency entry: 211360875
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 42.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4c7582d8f8ddef72b91d454afb04d585069b85f816ecf17cc6f5286384555a0
|
|
| MD5 |
c6494033486ba72eeb3a620a6d03a601
|
|
| BLAKE2b-256 |
4c73ca12a024daa922023562f5cfa74c9cf2882104544f8e9f6fa544e65a5677
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
e4c7582d8f8ddef72b91d454afb04d585069b85f816ecf17cc6f5286384555a0 - Sigstore transparency entry: 211360852
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp311-cp311-macosx_14_0_arm64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp311-cp311-macosx_14_0_arm64.whl
- Upload date:
- Size: 34.6 kB
- Tags: CPython 3.11, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb6fff12fda5cc6ac22b950c0f7b949eeacad75021d7d87a01e5dd19a167961f
|
|
| MD5 |
3ea8731f89ac12b681af239b792aaad4
|
|
| BLAKE2b-256 |
9c7301311c7d930948a55932f345b149e68d1d45bc1b1de8f611d006cfc27700
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp311-cp311-macosx_14_0_arm64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp311-cp311-macosx_14_0_arm64.whl -
Subject digest:
eb6fff12fda5cc6ac22b950c0f7b949eeacad75021d7d87a01e5dd19a167961f - Sigstore transparency entry: 211360854
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp311-cp311-macosx_13_0_x86_64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp311-cp311-macosx_13_0_x86_64.whl
- Upload date:
- Size: 34.2 kB
- Tags: CPython 3.11, macOS 13.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
655a5c33e4625ecf550b2325c28a0ef362de954114a81be072ea0cd72c567a4c
|
|
| MD5 |
5873f4feb4192789b4cd0912ba51acb7
|
|
| BLAKE2b-256 |
ffc04bb8969927ed48980519f8f59ff19537ff9a0458def3b90288237d1beaa0
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp311-cp311-macosx_13_0_x86_64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp311-cp311-macosx_13_0_x86_64.whl -
Subject digest:
655a5c33e4625ecf550b2325c28a0ef362de954114a81be072ea0cd72c567a4c - Sigstore transparency entry: 211360883
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 32.3 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2d2a279319e658661758e0fe00acb0abb72995cddf61c1e1ad31110e1fe9dfa
|
|
| MD5 |
9b7dedf151b7d4c311a0ea12001e3966
|
|
| BLAKE2b-256 |
13a77a34e920d764d987aec41132c143b1809ed77c8391b367229109ed4c95fb
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp310-cp310-win_amd64.whl -
Subject digest:
f2d2a279319e658661758e0fe00acb0abb72995cddf61c1e1ad31110e1fe9dfa - Sigstore transparency entry: 211360880
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 41.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6d8c5697ba46e911c9662754f7afd6196da1dfc1790d8da81d84ad9f0f84b29
|
|
| MD5 |
20480619f21128a0783de8261f4d4bd2
|
|
| BLAKE2b-256 |
d7b1f13b885b489069689474c4806caef28b0c70824a8671e07f40d31a2ad9fd
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
f6d8c5697ba46e911c9662754f7afd6196da1dfc1790d8da81d84ad9f0f84b29 - Sigstore transparency entry: 211360890
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 41.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
078daac8507b1ac8cbf08c703d97c412ebf687ef22d8b13b244d4ee940a43485
|
|
| MD5 |
49a3ef1ba33d0e7e661e03f6a747e105
|
|
| BLAKE2b-256 |
b6a9be50ba843882a6964f8a541ce7880a4e63aa8355ac690b38ec80444a1157
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
078daac8507b1ac8cbf08c703d97c412ebf687ef22d8b13b244d4ee940a43485 - Sigstore transparency entry: 211360864
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 42.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62a4b4b289f7c8b9221e4ba34aa8bcf504195f388aa4287384fe7aaeb52cda04
|
|
| MD5 |
af2f052c46fe7bac1fbe074f146d1d52
|
|
| BLAKE2b-256 |
f514eca31f4a6d99fa9298180f7670a340f5aabf5eb59a781c435fbb494ad685
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux_2_5_x86_64.manylinux1_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
62a4b4b289f7c8b9221e4ba34aa8bcf504195f388aa4287384fe7aaeb52cda04 - Sigstore transparency entry: 211360868
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 42.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
854e4d66e21b6aff9d2054f48d058af7115d5510e262ac55d6a2fe876676806b
|
|
| MD5 |
589c2ad89a2a2bc290f7fb1db6e54fc6
|
|
| BLAKE2b-256 |
c102644056704b97748ee9206b670a009a5452212f21026d524d3076e31e0a77
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
854e4d66e21b6aff9d2054f48d058af7115d5510e262ac55d6a2fe876676806b - Sigstore transparency entry: 211360885
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp310-cp310-macosx_14_0_arm64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp310-cp310-macosx_14_0_arm64.whl
- Upload date:
- Size: 29.2 kB
- Tags: CPython 3.10, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1d81c57c4b17a37e86b4f17b4335db93b0a7482932f05c9719573aa816def7a
|
|
| MD5 |
4be80e9bd76b3f8997a33384a4692277
|
|
| BLAKE2b-256 |
1f5f3094443bb99cfb5b40e253e83c4431feb524b431c98c96923824509cde28
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp310-cp310-macosx_14_0_arm64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp310-cp310-macosx_14_0_arm64.whl -
Subject digest:
d1d81c57c4b17a37e86b4f17b4335db93b0a7482932f05c9719573aa816def7a - Sigstore transparency entry: 211360840
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pandas_plink-2.3.2-cp310-cp310-macosx_13_0_x86_64.whl.
File metadata
- Download URL: pandas_plink-2.3.2-cp310-cp310-macosx_13_0_x86_64.whl
- Upload date:
- Size: 29.0 kB
- Tags: CPython 3.10, macOS 13.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8772ce3dc3c54960633e610f1735c526497ac5a40dbb717dafa45294d35fb037
|
|
| MD5 |
67b9d007f21024fb9078c53681e71e18
|
|
| BLAKE2b-256 |
0d4e4ec332f464f1e103ef75eca397d065bc6b7bd1145d7bd8feb1b8015d79cc
|
Provenance
The following attestation bundles were made for pandas_plink-2.3.2-cp310-cp310-macosx_13_0_x86_64.whl:
Publisher:
release.yml on limix/pandas-plink
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pandas_plink-2.3.2-cp310-cp310-macosx_13_0_x86_64.whl -
Subject digest:
8772ce3dc3c54960633e610f1735c526497ac5a40dbb717dafa45294d35fb037 - Sigstore transparency entry: 211360884
- Sigstore integration time:
-
Permalink:
limix/pandas-plink@865f5a52719602e55dae034444ec7a22fe01e653 -
Branch / Tag:
refs/tags/v2.3.2 - Owner: https://github.com/limix
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@865f5a52719602e55dae034444ec7a22fe01e653 -
Trigger Event:
push
-
Statement type: