pandas-plink


Namepandas-plink JSON
Version 2.2.9 PyPI version JSON
download
home_pagehttps://github.com/limix/pandas-plink
SummaryRead PLINK files into Pandas data frames
upload_time2021-07-02 01:23:10
maintainerDanilo Horta
docs_urlhttps://pythonhosted.org/pandas-plink/
authorDanilo Horta
requires_python>=3.7
licenseMIT
keywords plink reader genetics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pandas-plink

Pandas-plink is a Python package for reading [PLINK binary file format](https://www.cog-genomics.org/plink2/formats) andrealized relationship matrices (PLINK or GCTA).
The file reading is taken place via [lazy loading](https://en.wikipedia.org/wiki/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](https://raw.githubusercontent.com/limix/pandas-plink/master/CHANGELOG.md).

## Install

It can be installed using [pip](https://pypi.python.org/pypi/pip):

```bash
pip install pandas-plink
```

Alternatively it can be intalled via [conda](http://conda.pydata.org/docs/index.html):

```bash
conda install -c conda-forge pandas-plink
```

## Usage

It is as simple as

```python
>>> 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:

```python
>>> 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](https://pandas-plink.readthedocs.io/) for more information.

## Authors

* [Danilo Horta](https://github.com/horta)

## License

This project is licensed under the [MIT License](https://raw.githubusercontent.com/limix/pandas-plink/master/LICENSE.md).



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/limix/pandas-plink",
    "name": "pandas-plink",
    "maintainer": "Danilo Horta",
    "docs_url": "https://pythonhosted.org/pandas-plink/",
    "requires_python": ">=3.7",
    "maintainer_email": "horta@ebi.ac.uk",
    "keywords": "plink,reader,genetics",
    "author": "Danilo Horta",
    "author_email": "horta@ebi.ac.uk",
    "download_url": "https://files.pythonhosted.org/packages/32/98/3a9ce4ab7cc8274fdb7e9d2911cdb946e953280214c06f70943fc02b5b2a/pandas_plink-2.2.9.tar.gz",
    "platform": "Windows",
    "description": "# pandas-plink\n\nPandas-plink is a Python package for reading [PLINK binary file format](https://www.cog-genomics.org/plink2/formats) andrealized relationship matrices (PLINK or GCTA).\nThe file reading is taken place via [lazy loading](https://en.wikipedia.org/wiki/Lazy_loading), meaning that it saves up memory by actually reading only the genotypes that are actually accessed by the user.\n\nNotable changes can be found at the [CHANGELOG.md](https://raw.githubusercontent.com/limix/pandas-plink/master/CHANGELOG.md).\n\n## Install\n\nIt can be installed using [pip](https://pypi.python.org/pypi/pip):\n\n```bash\npip install pandas-plink\n```\n\nAlternatively it can be intalled via [conda](http://conda.pydata.org/docs/index.html):\n\n```bash\nconda install -c conda-forge pandas-plink\n```\n\n## Usage\n\nIt is as simple as\n\n```python\n>>> from pandas_plink import read_plink1_bin\n>>> G = read_plink1_bin(\"chr11.bed\", \"chr11.bim\", \"chr11.fam\", verbose=False)\n>>> print(G)\n<xarray.DataArray 'genotype' (sample: 14, variant: 779)>\ndask.array<shape=(14, 779), dtype=float64, chunksize=(14, 779)>\nCoordinates:\n  * sample   (sample) object 'B001' 'B002' 'B003' ... 'B012' 'B013' 'B014'\n  * variant  (variant) object '11_316849996' '11_316874359' ... '11_345698259'\n    father   (sample) <U1 '0' '0' '0' '0' '0' '0' ... '0' '0' '0' '0' '0' '0'\n    fid      (sample) <U4 'B001' 'B002' 'B003' 'B004' ... 'B012' 'B013' 'B014'\n    gender   (sample) <U1 '0' '0' '0' '0' '0' '0' ... '0' '0' '0' '0' '0' '0'\n    i        (sample) int64 0 1 2 3 4 5 6 7 8 9 10 11 12 13\n    iid      (sample) <U4 'B001' 'B002' 'B003' 'B004' ... 'B012' 'B013' 'B014'\n    mother   (sample) <U1 '0' '0' '0' '0' '0' '0' ... '0' '0' '0' '0' '0' '0'\n    trait    (sample) <U2 '-9' '-9' '-9' '-9' '-9' ... '-9' '-9' '-9' '-9' '-9'\n    a0       (variant) <U1 'C' 'G' 'G' 'C' 'C' 'T' ... 'T' 'A' 'C' 'A' 'A' 'T'\n    a1       (variant) <U1 'T' 'C' 'C' 'T' 'T' 'A' ... 'C' 'G' 'T' 'G' 'C' 'C'\n    chrom    (variant) <U2 '11' '11' '11' '11' '11' ... '11' '11' '11' '11' '11'\n    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\n    pos      (variant) int64 157439 181802 248969 ... 28937375 28961091 29005702\n    snp      (variant) <U9 '316849996' '316874359' ... '345653648' '345698259'\n>>> print(G.sel(sample=\"B003\", variant=\"11_316874359\").values)\n0.0\n>>> print(G.a0.sel(variant=\"11_316874359\").values)\nG\n>>> print(G.sel(sample=\"B003\", variant=\"11_316941526\").values)\n2.0\n>>> print(G.a1.sel(variant=\"11_316941526\").values)\nC\n```\nPortions of the genotype will be read as the user access them.\n\nCovariance matrices can also be read very easily.\nExample:\n\n```python\n>>> from pandas_plink import read_rel\n>>> K = read_rel(\"plink2.rel.bin\")\n>>> print(K)\n<xarray.DataArray (sample_0: 10, sample_1: 10)>\narray([[ 0.885782,  0.233846, -0.186339, -0.009789, -0.138897,  0.287779,\n         0.269977, -0.231279, -0.095472, -0.213979],\n       [ 0.233846,  1.077493, -0.452858,  0.192877, -0.186027,  0.171027,\n         0.406056, -0.013149, -0.131477, -0.134314],\n       [-0.186339, -0.452858,  1.183312, -0.040948, -0.146034, -0.204510,\n        -0.314808, -0.042503,  0.296828, -0.011661],\n       [-0.009789,  0.192877, -0.040948,  0.895360, -0.068605,  0.012023,\n         0.057827, -0.192152, -0.089094,  0.174269],\n       [-0.138897, -0.186027, -0.146034, -0.068605,  1.183237,  0.085104,\n        -0.032974,  0.103608,  0.215769,  0.166648],\n       [ 0.287779,  0.171027, -0.204510,  0.012023,  0.085104,  0.956921,\n         0.065427, -0.043752, -0.091492, -0.227673],\n       [ 0.269977,  0.406056, -0.314808,  0.057827, -0.032974,  0.065427,\n         0.714746, -0.101254, -0.088171, -0.063964],\n       [-0.231279, -0.013149, -0.042503, -0.192152,  0.103608, -0.043752,\n        -0.101254,  1.423033, -0.298255, -0.074334],\n       [-0.095472, -0.131477,  0.296828, -0.089094,  0.215769, -0.091492,\n        -0.088171, -0.298255,  0.910274, -0.024663],\n       [-0.213979, -0.134314, -0.011661,  0.174269,  0.166648, -0.227673,\n        -0.063964, -0.074334, -0.024663,  0.914586]])\nCoordinates:\n  * sample_0  (sample_0) object 'HG00419' 'HG00650' ... 'NA20508' 'NA20753'\n  * sample_1  (sample_1) object 'HG00419' 'HG00650' ... 'NA20508' 'NA20753'\n    fid       (sample_1) object 'HG00419' 'HG00650' ... 'NA20508' 'NA20753'\n    iid       (sample_1) object 'HG00419' 'HG00650' ... 'NA20508' 'NA20753'\n>>> print(K.values)\n[[ 0.89  0.23 -0.19 -0.01 -0.14  0.29  0.27 -0.23 -0.10 -0.21]\n [ 0.23  1.08 -0.45  0.19 -0.19  0.17  0.41 -0.01 -0.13 -0.13]\n [-0.19 -0.45  1.18 -0.04 -0.15 -0.20 -0.31 -0.04  0.30 -0.01]\n [-0.01  0.19 -0.04  0.90 -0.07  0.01  0.06 -0.19 -0.09  0.17]\n [-0.14 -0.19 -0.15 -0.07  1.18  0.09 -0.03  0.10  0.22  0.17]\n [ 0.29  0.17 -0.20  0.01  0.09  0.96  0.07 -0.04 -0.09 -0.23]\n [ 0.27  0.41 -0.31  0.06 -0.03  0.07  0.71 -0.10 -0.09 -0.06]\n [-0.23 -0.01 -0.04 -0.19  0.10 -0.04 -0.10  1.42 -0.30 -0.07]\n [-0.10 -0.13  0.30 -0.09  0.22 -0.09 -0.09 -0.30  0.91 -0.02]\n [-0.21 -0.13 -0.01  0.17  0.17 -0.23 -0.06 -0.07 -0.02  0.91]]\n```\n\nPlease, refer to the [pandas-plink documentation](https://pandas-plink.readthedocs.io/) for more information.\n\n## Authors\n\n* [Danilo Horta](https://github.com/horta)\n\n## License\n\nThis project is licensed under the [MIT License](https://raw.githubusercontent.com/limix/pandas-plink/master/LICENSE.md).\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Read PLINK files into Pandas data frames",
    "version": "2.2.9",
    "project_urls": {
        "Download": "https://github.com/limix/pandas-plink",
        "Homepage": "https://github.com/limix/pandas-plink"
    },
    "split_keywords": [
        "plink",
        "reader",
        "genetics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac99e8291374655d4f6c076bda47f5f553727570adcb9813209768a3daac83c5",
                "md5": "34587387e5239b0e0f65a540db726667",
                "sha256": "ad28cbf123ad3b0a6fca9fb1b09dbf0c98533568aee0d8b1e984aceaa87874c9"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "34587387e5239b0e0f65a540db726667",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 85597,
            "upload_time": "2021-07-02T01:22:39",
            "upload_time_iso_8601": "2021-07-02T01:22:39.613519Z",
            "url": "https://files.pythonhosted.org/packages/ac/99/e8291374655d4f6c076bda47f5f553727570adcb9813209768a3daac83c5/pandas_plink-2.2.9-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb297e1b76125008a84409fb3bd77cd0976103dc8a8d7719be064d8d6eb31d20",
                "md5": "4528163b0ce97d5775a8ba109287dc8c",
                "sha256": "0f47ad0230d7014f376d45906f2e847264222257cc8bceaf5ddca81f2504c619"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp37-cp37m-manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "4528163b0ce97d5775a8ba109287dc8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 99109,
            "upload_time": "2021-07-02T01:22:40",
            "upload_time_iso_8601": "2021-07-02T01:22:40.775157Z",
            "url": "https://files.pythonhosted.org/packages/bb/29/7e1b76125008a84409fb3bd77cd0976103dc8a8d7719be064d8d6eb31d20/pandas_plink-2.2.9-cp37-cp37m-manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7930628e9676f56ff8f344bff2f818c1eaf22c5d054493819d894599c80abebe",
                "md5": "6ffceddc80b1b234dfafbaf84f6a9ef2",
                "sha256": "e45fffbae7bd2a2e372f533e52abd93ab396ed6ecf9c3f63081a7c6b538f735e"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp37-cp37m-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6ffceddc80b1b234dfafbaf84f6a9ef2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 100309,
            "upload_time": "2021-07-02T01:22:42",
            "upload_time_iso_8601": "2021-07-02T01:22:42.257964Z",
            "url": "https://files.pythonhosted.org/packages/79/30/628e9676f56ff8f344bff2f818c1eaf22c5d054493819d894599c80abebe/pandas_plink-2.2.9-cp37-cp37m-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "418f2ac7de1bd8b40c033d6fcd558960bb3741024dee78ce2fe1c595cef9b55b",
                "md5": "3443ee00753f2e33264e8a9ccfb6ad88",
                "sha256": "3163b2edeba12c4f7a4b9eeb4d2cb86607ba1029778f4bb0afa4f725261d99cf"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp37-cp37m-manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "3443ee00753f2e33264e8a9ccfb6ad88",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 99112,
            "upload_time": "2021-07-02T01:22:43",
            "upload_time_iso_8601": "2021-07-02T01:22:43.346234Z",
            "url": "https://files.pythonhosted.org/packages/41/8f/2ac7de1bd8b40c033d6fcd558960bb3741024dee78ce2fe1c595cef9b55b/pandas_plink-2.2.9-cp37-cp37m-manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9866a0d1eb049e237d66373ee0be4ae4823338d0fc4fa541109e84142a9d8e92",
                "md5": "0901435a39f83709d96efa79d33ed5ad",
                "sha256": "6a4644fd7e097215c6154f87e95783ce279f8af263e9546da8696796eef26b5a"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp37-cp37m-manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0901435a39f83709d96efa79d33ed5ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 100312,
            "upload_time": "2021-07-02T01:22:44",
            "upload_time_iso_8601": "2021-07-02T01:22:44.289375Z",
            "url": "https://files.pythonhosted.org/packages/98/66/a0d1eb049e237d66373ee0be4ae4823338d0fc4fa541109e84142a9d8e92/pandas_plink-2.2.9-cp37-cp37m-manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6117af8d59b1a6b3dbd9f285788ffac9b1520bc742c2188f3df35e266d8ef5cd",
                "md5": "bd78aaad439051f730df553e9099aaed",
                "sha256": "9f36ecd20e6bd5378fe119951e7efcf87e31528b69e2b7dd753a3d3fa11c4b26"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "bd78aaad439051f730df553e9099aaed",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 89105,
            "upload_time": "2021-07-02T01:22:45",
            "upload_time_iso_8601": "2021-07-02T01:22:45.345612Z",
            "url": "https://files.pythonhosted.org/packages/61/17/af8d59b1a6b3dbd9f285788ffac9b1520bc742c2188f3df35e266d8ef5cd/pandas_plink-2.2.9-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a99511aee6b0ec6ba6e75d6d8308d2c04d16bcce92048ce428d8afaab548cd13",
                "md5": "abd5bbd283e04de439bbf11e1e204f3a",
                "sha256": "458667b5fafd659da3649fc599d91a8e718947a1ca8666b4d346945becc31650"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "abd5bbd283e04de439bbf11e1e204f3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 90312,
            "upload_time": "2021-07-02T01:22:46",
            "upload_time_iso_8601": "2021-07-02T01:22:46.833229Z",
            "url": "https://files.pythonhosted.org/packages/a9/95/11aee6b0ec6ba6e75d6d8308d2c04d16bcce92048ce428d8afaab548cd13/pandas_plink-2.2.9-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82f5276d3f9920fc704ac8176fa7afaae92f4089199d857d82022d3929dbd8bf",
                "md5": "46e6bfbc365db8888e089346b6696285",
                "sha256": "b1af21a7dcaca732ffa03af341a37bfb81e73bc7d153f2cdcd8f4300b6bb6203"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46e6bfbc365db8888e089346b6696285",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 85656,
            "upload_time": "2021-07-02T01:22:48",
            "upload_time_iso_8601": "2021-07-02T01:22:48.250867Z",
            "url": "https://files.pythonhosted.org/packages/82/f5/276d3f9920fc704ac8176fa7afaae92f4089199d857d82022d3929dbd8bf/pandas_plink-2.2.9-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9eb51433e17237f3b8dddc791b9248de38267420728ef4717cfcd04ec948ee1",
                "md5": "17c6a843a3f1672ac9cebfc8a641fcba",
                "sha256": "5a1df95433846f7b4d68304728fdc9453c11c6c745372c0d912180de31e8e6c5"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp38-cp38-manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "17c6a843a3f1672ac9cebfc8a641fcba",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 99598,
            "upload_time": "2021-07-02T01:22:49",
            "upload_time_iso_8601": "2021-07-02T01:22:49.419232Z",
            "url": "https://files.pythonhosted.org/packages/e9/eb/51433e17237f3b8dddc791b9248de38267420728ef4717cfcd04ec948ee1/pandas_plink-2.2.9-cp38-cp38-manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ecb9b5424a00d8f4b3b73fa4694ef47a9768d8f869a025936ffd590aa19d1d3",
                "md5": "9945650afb4fda71c02e42a3e949c3fd",
                "sha256": "40a259b067c1b00d40b59df716d4b440babcab08c620ecc22b29a2f96a45577e"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp38-cp38-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9945650afb4fda71c02e42a3e949c3fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 100810,
            "upload_time": "2021-07-02T01:22:50",
            "upload_time_iso_8601": "2021-07-02T01:22:50.524951Z",
            "url": "https://files.pythonhosted.org/packages/4e/cb/9b5424a00d8f4b3b73fa4694ef47a9768d8f869a025936ffd590aa19d1d3/pandas_plink-2.2.9-cp38-cp38-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0c7e20e35179ebeac5b1dcba58e4d96e2a1f450b77423808f28628f56d597b6",
                "md5": "e394eff3109b88bc1bcec74becd80c65",
                "sha256": "8e96e6bd1c3754b77329f3a5b3d5fbbe32980b8ed539ee503bd7c02450c37823"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp38-cp38-manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "e394eff3109b88bc1bcec74becd80c65",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 99599,
            "upload_time": "2021-07-02T01:22:51",
            "upload_time_iso_8601": "2021-07-02T01:22:51.534521Z",
            "url": "https://files.pythonhosted.org/packages/e0/c7/e20e35179ebeac5b1dcba58e4d96e2a1f450b77423808f28628f56d597b6/pandas_plink-2.2.9-cp38-cp38-manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9f851ab062a7190a2cfb591453f6df44eed7eb9dc744aa8934afbb8bb6bd426",
                "md5": "a06624cebcfb4ab8c38789aac06b30fe",
                "sha256": "39a9e40f48fd152ab4ac3851bf641d9a63964aa7ac2c3a5c748393d45a5d218d"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp38-cp38-manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a06624cebcfb4ab8c38789aac06b30fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 100813,
            "upload_time": "2021-07-02T01:22:52",
            "upload_time_iso_8601": "2021-07-02T01:22:52.677620Z",
            "url": "https://files.pythonhosted.org/packages/d9/f8/51ab062a7190a2cfb591453f6df44eed7eb9dc744aa8934afbb8bb6bd426/pandas_plink-2.2.9-cp38-cp38-manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4fdf9ee91a5c67e156123fb5d5767acd9767076003ecf44c2385c86035b8b1f",
                "md5": "68a16ec9f7bc5f3cc020237ab3def512",
                "sha256": "d51397a5c3b9ca5e80f810f606a2946ef2f73f61a49a1a95022eb43b2f6d0492"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "68a16ec9f7bc5f3cc020237ab3def512",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 89138,
            "upload_time": "2021-07-02T01:22:54",
            "upload_time_iso_8601": "2021-07-02T01:22:54.142301Z",
            "url": "https://files.pythonhosted.org/packages/b4/fd/f9ee91a5c67e156123fb5d5767acd9767076003ecf44c2385c86035b8b1f/pandas_plink-2.2.9-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "024350782970f377fcb2b7eb5ae436288ba9dbe559ce2edee82cc2f7315bbe73",
                "md5": "684b72d7895704599e41ff00ecab03ba",
                "sha256": "cf2008bf2e9f9c0d0eebc65717cf402be48bc2084faddea826992e6b6d67cc5b"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "684b72d7895704599e41ff00ecab03ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 90349,
            "upload_time": "2021-07-02T01:22:55",
            "upload_time_iso_8601": "2021-07-02T01:22:55.641206Z",
            "url": "https://files.pythonhosted.org/packages/02/43/50782970f377fcb2b7eb5ae436288ba9dbe559ce2edee82cc2f7315bbe73/pandas_plink-2.2.9-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc71c141692e0431eea22bca13b85ec71e30273441ebe1d8f81c2744a345457a",
                "md5": "89d9d72092f6c2d68dc2940160060f75",
                "sha256": "a6dfd283b4e1eb78ccdc4addf1aeefd988b03fed741db08b5e28ceef3aeebe64"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "89d9d72092f6c2d68dc2940160060f75",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 85654,
            "upload_time": "2021-07-02T01:22:56",
            "upload_time_iso_8601": "2021-07-02T01:22:56.817292Z",
            "url": "https://files.pythonhosted.org/packages/fc/71/c141692e0431eea22bca13b85ec71e30273441ebe1d8f81c2744a345457a/pandas_plink-2.2.9-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7714386d5d33c62b2f3952b6cee1ffebf42aa17012ae3ec3e98df38ad73657d",
                "md5": "90ca934ed4512d82a2d928056f1c8a8b",
                "sha256": "a20b3db7b7e93f789f81012231850a5e6f806454290e27469e8ab8fa8fcba420"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp39-cp39-manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "90ca934ed4512d82a2d928056f1c8a8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 99212,
            "upload_time": "2021-07-02T01:22:57",
            "upload_time_iso_8601": "2021-07-02T01:22:57.813741Z",
            "url": "https://files.pythonhosted.org/packages/c7/71/4386d5d33c62b2f3952b6cee1ffebf42aa17012ae3ec3e98df38ad73657d/pandas_plink-2.2.9-cp39-cp39-manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eda29d7abb5e6d259c0cf7d4ae1a511127f53cd37ab5e1f76f0ffc8dd43c6284",
                "md5": "68a4fd9dd09ee837049d6760dfb1ca0e",
                "sha256": "c348ebad54fa1c520031f8f4bcf1038946c51bd2413da9af3d0d8a94829b127f"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp39-cp39-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "68a4fd9dd09ee837049d6760dfb1ca0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 100406,
            "upload_time": "2021-07-02T01:22:59",
            "upload_time_iso_8601": "2021-07-02T01:22:59.076722Z",
            "url": "https://files.pythonhosted.org/packages/ed/a2/9d7abb5e6d259c0cf7d4ae1a511127f53cd37ab5e1f76f0ffc8dd43c6284/pandas_plink-2.2.9-cp39-cp39-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24330de6c04af954fc3e05c3ee69668af36b7ae946d32311dfd4c7d476e0bbec",
                "md5": "f9180a7c8e39d412412fa40fa58dd7d7",
                "sha256": "42dea8921507bb771b84d8e0ecc9457ca855c0ce44c81926d9f20b85d56394e3"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp39-cp39-manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "f9180a7c8e39d412412fa40fa58dd7d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 99214,
            "upload_time": "2021-07-02T01:23:01",
            "upload_time_iso_8601": "2021-07-02T01:23:01.206273Z",
            "url": "https://files.pythonhosted.org/packages/24/33/0de6c04af954fc3e05c3ee69668af36b7ae946d32311dfd4c7d476e0bbec/pandas_plink-2.2.9-cp39-cp39-manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ff7da675d9f70577756577ab4b9bf98fb9973e0c6a87eb919d7bb1ec332746c",
                "md5": "31d76ebc370a5b689c6b9829c7e32f6f",
                "sha256": "4a31d394094816c7ea8fa58bd83e679805fdf1aa49f7eab90f0c0890be7aabe3"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp39-cp39-manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31d76ebc370a5b689c6b9829c7e32f6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 100410,
            "upload_time": "2021-07-02T01:23:02",
            "upload_time_iso_8601": "2021-07-02T01:23:02.278182Z",
            "url": "https://files.pythonhosted.org/packages/4f/f7/da675d9f70577756577ab4b9bf98fb9973e0c6a87eb919d7bb1ec332746c/pandas_plink-2.2.9-cp39-cp39-manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4178c74fa1c056ac4459feaa744b78d7ca8407e6198b18b19808fc1c073d207b",
                "md5": "d9055772b355c07bd31f2ca807d01c8e",
                "sha256": "6ad1eaf56c7c7df5400802eb45a7259ae076463b487adb36981d26e1b50a4af7"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "d9055772b355c07bd31f2ca807d01c8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 89129,
            "upload_time": "2021-07-02T01:23:03",
            "upload_time_iso_8601": "2021-07-02T01:23:03.398785Z",
            "url": "https://files.pythonhosted.org/packages/41/78/c74fa1c056ac4459feaa744b78d7ca8407e6198b18b19808fc1c073d207b/pandas_plink-2.2.9-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d281e3f4392b10f3fc9e6c6a941bba813afb5408914a704e880af0eed543f224",
                "md5": "6decab22312943c74f77a4307f7ef6d1",
                "sha256": "6cb5b13377a5e9ec995fcea18303421900e609a76b2d00d89a5199d7873440e2"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6decab22312943c74f77a4307f7ef6d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 90340,
            "upload_time": "2021-07-02T01:23:05",
            "upload_time_iso_8601": "2021-07-02T01:23:05.081754Z",
            "url": "https://files.pythonhosted.org/packages/d2/81/e3f4392b10f3fc9e6c6a941bba813afb5408914a704e880af0eed543f224/pandas_plink-2.2.9-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a2a6f8cbf5f4dedc78582b664e22e7e79074b95ec6f30f7d85dfeaf7bdbe745",
                "md5": "d72356352b16793df6004a9f26c7c492",
                "sha256": "d8381704733caf7a1afe751bd33b867f00d9abb5b7f4c0e394a3612156db6865"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d72356352b16793df6004a9f26c7c492",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 83006,
            "upload_time": "2021-07-02T01:23:06",
            "upload_time_iso_8601": "2021-07-02T01:23:06.177422Z",
            "url": "https://files.pythonhosted.org/packages/1a/2a/6f8cbf5f4dedc78582b664e22e7e79074b95ec6f30f7d85dfeaf7bdbe745/pandas_plink-2.2.9-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00fb2fcd548768fbb806ca805506bbde096250eb913bd83a5d2d928151278734",
                "md5": "38c42aa3648e510601e6bb85818971e9",
                "sha256": "694a501d3ee92a49b63afec8b801544d27c6b19006eae333bd32f64b2b30775b"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-pp37-pypy37_pp73-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38c42aa3648e510601e6bb85818971e9",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 84415,
            "upload_time": "2021-07-02T01:23:07",
            "upload_time_iso_8601": "2021-07-02T01:23:07.175831Z",
            "url": "https://files.pythonhosted.org/packages/00/fb/2fcd548768fbb806ca805506bbde096250eb913bd83a5d2d928151278734/pandas_plink-2.2.9-pp37-pypy37_pp73-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "334f640ef754c2e4d9b7391f4d5887b5fb84bde93e4bb4ff6b2d0b5ba1a08b74",
                "md5": "85447d30182250df78548c1b5216cb6f",
                "sha256": "50caa66f34d4a6ce44151371f0d740716a472ee216d44780a5a9dd4e9b5bf05e"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-pp37-pypy37_pp73-manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "85447d30182250df78548c1b5216cb6f",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 84419,
            "upload_time": "2021-07-02T01:23:08",
            "upload_time_iso_8601": "2021-07-02T01:23:08.245176Z",
            "url": "https://files.pythonhosted.org/packages/33/4f/640ef754c2e4d9b7391f4d5887b5fb84bde93e4bb4ff6b2d0b5ba1a08b74/pandas_plink-2.2.9-pp37-pypy37_pp73-manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e66ad62c402e5811013c1d2bca7a249ca990f0dea324466451839dc000d05bb",
                "md5": "7100656f327e63df929d1b3ede1404a1",
                "sha256": "019a544b436a793cd814d135075e072af64db0b8cba0f5e8ac8ac597c7c2eef3"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9-pp37-pypy37_pp73-win32.whl",
            "has_sig": false,
            "md5_digest": "7100656f327e63df929d1b3ede1404a1",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 88032,
            "upload_time": "2021-07-02T01:23:09",
            "upload_time_iso_8601": "2021-07-02T01:23:09.180603Z",
            "url": "https://files.pythonhosted.org/packages/9e/66/ad62c402e5811013c1d2bca7a249ca990f0dea324466451839dc000d05bb/pandas_plink-2.2.9-pp37-pypy37_pp73-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32983a9ce4ab7cc8274fdb7e9d2911cdb946e953280214c06f70943fc02b5b2a",
                "md5": "28d3fd16c5b5f4b39464d0216926af20",
                "sha256": "f5ecacc46c7b92d67968310d14000327333ec1720f35142b091e56da6ef80711"
            },
            "downloads": -1,
            "filename": "pandas_plink-2.2.9.tar.gz",
            "has_sig": false,
            "md5_digest": "28d3fd16c5b5f4b39464d0216926af20",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 77372,
            "upload_time": "2021-07-02T01:23:10",
            "upload_time_iso_8601": "2021-07-02T01:23:10.168180Z",
            "url": "https://files.pythonhosted.org/packages/32/98/3a9ce4ab7cc8274fdb7e9d2911cdb946e953280214c06f70943fc02b5b2a/pandas_plink-2.2.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2021-07-02 01:23:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "limix",
    "github_project": "pandas-plink",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pandas-plink"
}
        
Elapsed time: 0.19724s