{ "info": { "author": "Omer Weissbrod", "author_email": "omerw@cs.technion.ac.il", "bugtrack_url": null, "classifiers": [], "description": "LEAP\r\n----------------\r\n\r\nLEAP is a program for liability estimation in ascertained case-control genome-wide association studies, written in the Python language.\r\nLEAP estimates liabilities, that can then be treated as phenotypes in a GWAS context, which can greatly increase power.\r\n\r\n\r\n------------------\r\nInstallation\r\n------------------\r\nThe easiest way to install LEAP is via pip, by typing the command:\r\n```shell\r\npip install --user leap_gwas\r\n```\r\n\r\nTypically, the LEAP scripts will be installed at:\r\n```\r\n~/.local/lib/python2.7/site-packages/LEAP/\r\n```\r\n\r\nLEAP is particularly easy to install using the [Anaconda Python distribution](https://store.continuum.io/cshop/anaconda). The [numerically optimized version](http://continuum.io/blog/mkl-optimizations) of Anaconda can speed LEAP up by several orders of magnitude.\r\n\r\nAlternatively (if Anaconda can't be installed), for very fast performance it is recommended to have an optimized version of Numpy/Scipy [installed on your system](http://www.scipy.org/scipylib/building), using optimized numerical libraries such as [OpenBLAS](http://www.openblas.net) or [Intel MKL](https://software.intel.com/en-us/intel-mkl) (see [Compilation instructions for scipy with Intel MKL)](https://software.intel.com/en-us/articles/numpyscipy-with-intel-mkl). \r\n\r\nTo install LEAP manually, you need the following dependencies:\r\n* Python 2.7\r\n* [Numpy](http://www.numpy.org/) and [Scipy](http://www.scipy.org/)\r\n* [Scikits-learn](http://scikit-learn.org/stable/)\r\n* The Python [FaST-LMM package](https://github.com/MicrosoftGenomics/FaST-LMM).\r\n\r\nPlease make sure these are installed prior to using LEAP.\r\nTo verify that everything is correctly installed, please run the script test.py in the regression directory. It will run a small example analysis and print an error message if any problem is found.\r\n \r\n \r\n------------------\r\nUsage instructions\r\n----------------------\r\nThere are two ways to run LEAP.\r\nThe first is via a Python API. A detailed explanation about this option is provided in the [LEAP Ipython notebook](http://nbviewer.ipython.org/github/omerwe/LEAP/blob/master/leap/regression/Leap_example.ipynb).\r\n\r\nThe second option is to run LEAP though a series of Python scripts, as detailed below. This option is more suitable for those not familiar with Python. The script leapUtils.sh runs the full LEAP pipeline on a small example dataset, and can be used for reference.\r\n \r\nGenerally, LEAP uses the same file formats as [FaST-LMM](https://github.com/MicrosoftGenomics/FaST-LMM).\r\nNamely, input files are in [binary Plink format](http://pngu.mgh.harvard.edu/~purcell/plink/data.shtml#bed).\r\nWhen there is a contradiction between file formats used by Plink and by FastLMM, LEAP uses the convention adopted by FastLMM.\r\nExplanations about the parameters used by all the scripts can be seen by typing\r\n```\r\npython --help\r\n```\r\n\r\nThe command-line options for LEAP largely follow the options of the [C++ version of \r\nFaST-LMM](http://research.microsoft.com/en-us/projects/fastlmm/).\r\n \r\n \r\n### The LEAP pipeline\r\n**1) (optional): Find related individuals to be removed:**\r\n```\r\npython findRelated.py --bfilesim --out \r\n```\r\n This script creates a file marking the individuals that need to be removed to eliminate relatedness.\r\n \r\n **2) Compute an eigendecomposition of the kinship matrix:**\r\n```\r\npython eigenDecompose.py --bfilesim --out [--extractSim --pheno ]\r\n```\r\nThis script computes a kinship matrix and its eigendecomposition, and saves them to speed up subsequent stages. It is recommended to perform a leave-one-chromosome-out (LOCO) analysis by computing a different kinship matrix for each chromosome, each one consisting of all SNPs except those on the selected chromosome. The optional extractSim file is a text file with a list of SNP names (one SNP per line) to facilitate this. The optional phenotype file is only used to exclude individuals with an unknown phenotype.\r\n \r\n**3) Compute heritability using the method of [Golan et al.](http://www.pnas.org/content/111/49/E5272.long):**\r\n```\r\npython calc_h2.py --bfilesim --prev --pheno --h2coeff 1.0 [--eigen --extractSim --related --h2coeff ]\r\n```\r\nThis script outputs the heritability estimate. The optional eigen file is the one created in stage 2. The optional extractSim file is a text file with a list of SNP names (one SNP per line) that will be used for heritability estimation. It is recommended to perform a different heritability and liability estimation for every excluded chromosome, and then testing the SNPs on the excluded chromosome for association with the estimated liabilities. The bfilesim and extractSim parameters must be the same as the ones used in stage 2. The optional relatedness file should be the output of stage 1, and is used to exclude related individuals from the analysis, which improves analysis results.\r\n\r\n**4) Estimate liabilities:**\r\n```\r\npython probit.py --bfilesim --pheno --prev --out --h2 [--eigen --extractSim --related ]\r\n```\r\nThis script creates a file called \\.liabs, with estimated liabilities for every individual. The estimated liabilities can be used directly for GWAS by using them as a standard phenotype file. The eigen file is the one computes in stage 2, and the h2 parameter should be the heritability estimate from stage 3. The extractSim and relatedness file parameters should be the same as in stage 3.\r\n\r\n**5) Test for Associations:**\r\n```\r\npython leap_gwas.py --bfilesim --bfile --pheno --out --h2 [--eigen --extractSim --extract ]\r\n```\r\nThis script performs GWAS with a prespecified heritability level (as computed in stage 2). The eigen file is the one from stage 2, and the pheno parameter is the liabilities file computed in stage 4. The syntax largely follows that of the [C++ version of FaST-LMM](http://research.microsoft.com/en-us/projects/fastlmm/).\r\nThe bfile and bfilesim parameters can both point to the same file. In this case, the extract and extractSim parameters should be used to guarantee that kinship estimation doesn't use SNPs on the excluded chromosome, and that all tested SNPs are on the excluded chromosome.\r\n \r\n \r\n-----------------\r\nGeneral comments and tips\r\n-------------------------\r\n**1)** Fixed effects can be included in stages 2-4 by adding the flag --covar.\r\nPlease type\r\n```\r\npython probit.py --help\r\n```\r\nand\r\n```\r\npython leap_gwas.py --help\r\n```\r\nfor instructions. However, we note that under extreme ascertainment, it is recommded to use covariates only in stages 2-3 (see the paper for details).\r\n \r\n**2)** As described in the main text, it is recommended to perform a different liability estimation for every excluded chromosome, and then testing the SNPs on the excluded chromosome for association with the estimated liabilities. The -extractSim flag is useful for this. Please see the example file leap_pipeline.sh for a usage example.\r\n \r\n**3)** A complete end-to-end usage example is provided with the LEAP source files, and can be invoked via the script leap_pipeline.sh.\r\nThis example estimates liabilities for a small balanced case-control dataset.\r\nThe dataset was simulated with 50% heritability and 0.1% prevalence. It included 500 cases, 500 controls, 499 causal SNPs and 10000 SNPs differentiated with FST=0.01. Causal SNPs are called csnp\\. The original liabilities for this file are available in the file dataset1.phe.liab (but this file is not used by LEAP).\r\n \r\n\r\n-----------------\r\nContact\r\n---------\r\nFor questions and comments, please contact Omer Weissbrod at omerw[at]cs.technion.ac.il", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/omerwe/LEAP", "keywords": "gwas bioinformatics LMMs MLMs", "license": "Apache 2.0", "maintainer": null, "maintainer_email": null, "name": "leap_gwas", "package_url": "https://pypi.org/project/leap_gwas/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/leap_gwas/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/omerwe/LEAP" }, "release_url": "https://pypi.org/project/leap_gwas/0.1.8.9/", "requires_dist": null, "requires_python": null, "summary": "Liability Estimation in Case Control Studies", "version": "0.1.8.9" }, "last_serial": 2172405, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "3922dcec827e54016d5eaf707d7df8a5", "sha256": "ab526bba6e75e10c477f18c52b44c63541eac8692d2da3e338f1b9f5eaac88b9" }, "downloads": -1, "filename": "leap_gwas-0.1.tar.gz", "has_sig": false, "md5_digest": "3922dcec827e54016d5eaf707d7df8a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3033863, "upload_time": "2014-12-16T23:48:46", "url": "https://files.pythonhosted.org/packages/af/42/32d933fdde38dc74cb7de943c3ec9215a9fb4c43cd0c26e7d88a3aee6af1/leap_gwas-0.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "a06c05f017ac7d88b5183bac2c001246", "sha256": "1c84f4ac9b2f67db8b39dd97b14b7f0f46269da28012e5579c91ca48f48a62a5" }, "downloads": -1, "filename": "leap_gwas-0.1.2.tar.gz", "has_sig": false, "md5_digest": "a06c05f017ac7d88b5183bac2c001246", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3872460, "upload_time": "2014-12-20T23:35:21", "url": "https://files.pythonhosted.org/packages/dc/cf/1d2c4904968ef4497dc748775623cabd4c6d9349ad5ee44d44cf25abdf4a/leap_gwas-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "5c4e8b7c7d0da0c78820c5b52c6374d3", "sha256": "c528077d3a79aceada8a4c4d0ce207bad8bd15362a55a09cbfaedf4200a6b5c4" }, "downloads": -1, "filename": "leap_gwas-0.1.3.tar.gz", "has_sig": false, "md5_digest": "5c4e8b7c7d0da0c78820c5b52c6374d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3866832, "upload_time": "2014-12-20T23:54:33", "url": "https://files.pythonhosted.org/packages/6e/7c/b182217f17b1b51328821dd05180879effb3fac01b576c854ce1d73d9237/leap_gwas-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "1bb84400c4e7a2f444ee7b589b28edef", "sha256": "c008ba25d267f629303fd96c4ca5908faae3da2b42e7663527a71043a639092a" }, "downloads": -1, "filename": "leap_gwas-0.1.4.tar.gz", "has_sig": false, "md5_digest": "1bb84400c4e7a2f444ee7b589b28edef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3869863, "upload_time": "2014-12-21T00:28:47", "url": "https://files.pythonhosted.org/packages/0d/39/647021ed70350d559cbd98958324d9fac8882f8c5c6b79e320abca79b92c/leap_gwas-0.1.4.tar.gz" } ], "0.1.4.1": [ { "comment_text": "", "digests": { "md5": "5f60bcf10c25a745f4407f2bff006850", "sha256": "5a1495cf7d93abdedfcbb66574a32e1e1714cf5eebb454cf0209e9fa9f600c86" }, "downloads": -1, "filename": "leap_gwas-0.1.4.1.tar.gz", "has_sig": false, "md5_digest": "5f60bcf10c25a745f4407f2bff006850", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3869896, "upload_time": "2014-12-21T07:51:33", "url": "https://files.pythonhosted.org/packages/9e/15/f4bea3c18420ca9d5fa52633630898e01893754bd7ad23d9a198293cabf8/leap_gwas-0.1.4.1.tar.gz" } ], "0.1.4.2": [ { "comment_text": "", "digests": { "md5": "95cacdd2c50094d55c7c438e2a5f340e", "sha256": "77ba9af1aaf3f20b57171a4f5a6d664643dd00339c0e0601308d1b3361837720" }, "downloads": -1, "filename": "leap_gwas-0.1.4.2.tar.gz", "has_sig": false, "md5_digest": "95cacdd2c50094d55c7c438e2a5f340e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3869904, "upload_time": "2014-12-21T08:10:31", "url": "https://files.pythonhosted.org/packages/73/70/1df4c98b7b056647899662e96dec8ffb2e85d0a8f3dfdda67d51a11c6488/leap_gwas-0.1.4.2.tar.gz" } ], "0.1.4.2.1": [ { "comment_text": "", "digests": { "md5": "0bed04b22bb677eef8e3fe3edc454506", "sha256": "c6fed429f27451bdd25b2de4aef1515a44bd4515761ea6383727acb3db1c917f" }, "downloads": -1, "filename": "leap_gwas-0.1.4.2.1.tar.gz", "has_sig": false, "md5_digest": "0bed04b22bb677eef8e3fe3edc454506", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14850, "upload_time": "2014-12-25T11:50:10", "url": "https://files.pythonhosted.org/packages/c7/81/822c27fe3b5e25dcffdd1638ddd52f42b9ef8e5c5b6958f2cc3e3baced56/leap_gwas-0.1.4.2.1.tar.gz" } ], "0.1.4.2.2": [ { "comment_text": "", "digests": { "md5": "0c24f8911061c86c945f49c1f0a0213a", "sha256": "d7a021f6ebfc7b5fb9ab1312f9736d3ef4fe11a9195d91f1c82b9109d2fbafb3" }, "downloads": -1, "filename": "leap_gwas-0.1.4.2.2.tar.gz", "has_sig": false, "md5_digest": "0c24f8911061c86c945f49c1f0a0213a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15529, "upload_time": "2014-12-25T11:53:08", "url": "https://files.pythonhosted.org/packages/d9/49/979896573b38e282be633246377d9b432241eab7408440091e3691281136/leap_gwas-0.1.4.2.2.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "5b697de8c0eda1c4465d4a171dbabd7d", "sha256": "146784f718a59176b87370c620d5bbf09b52764a477ad069d4c9a71138a85aea" }, "downloads": -1, "filename": "leap_gwas-0.1.5.tar.gz", "has_sig": false, "md5_digest": "5b697de8c0eda1c4465d4a171dbabd7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15511, "upload_time": "2014-12-25T11:55:02", "url": "https://files.pythonhosted.org/packages/31/0e/f8a6828de4240e7ab5a5b1b46413933e38f9766d245a5630e9dde14e9541/leap_gwas-0.1.5.tar.gz" } ], "0.1.5.1": [ { "comment_text": "", "digests": { "md5": "6e80ebcf7e2a83b9178e874a3d36c9d1", "sha256": "a66dd708b738267d101aa9cb7891a1a151c9b28481c8d1e92bf206b44cab9e65" }, "downloads": -1, "filename": "leap_gwas-0.1.5.1.tar.gz", "has_sig": false, "md5_digest": "6e80ebcf7e2a83b9178e874a3d36c9d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3005878, "upload_time": "2014-12-25T12:16:04", "url": "https://files.pythonhosted.org/packages/b3/b3/d5decff71deac6146e7ccced0f6557d92d46b3a0090054093e98c4919f00/leap_gwas-0.1.5.1.tar.gz" } ], "0.1.5.2": [ { "comment_text": "", "digests": { "md5": "569a9cbbefc7bcebe06b4f38f2a868a4", "sha256": "ab0d19579941dd6e64539f8ed36623a8bd99b22fe74c6e02ec468829b93f8e0c" }, "downloads": -1, "filename": "leap_gwas-0.1.5.2.tar.gz", "has_sig": false, "md5_digest": "569a9cbbefc7bcebe06b4f38f2a868a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3006657, "upload_time": "2014-12-25T13:44:58", "url": "https://files.pythonhosted.org/packages/37/33/d40c68101e3e82cba770b044f9c1cc1f22606a792011ee66566a2c584593/leap_gwas-0.1.5.2.tar.gz" } ], "0.1.5.3": [ { "comment_text": "", "digests": { "md5": "9efd5fc32659ce2fcaae2567414f7f78", "sha256": "aaeb7f12c86af984df041ef20a4fcda72d7379e7097dd553df648a7774ebe8c0" }, "downloads": -1, "filename": "leap_gwas-0.1.5.3.tar.gz", "has_sig": false, "md5_digest": "9efd5fc32659ce2fcaae2567414f7f78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3006649, "upload_time": "2014-12-25T14:09:59", "url": "https://files.pythonhosted.org/packages/ab/55/e3f85601dbaa7f4e7aa6900b3d755033dd4cd444c755b77c9545a5878ee4/leap_gwas-0.1.5.3.tar.gz" } ], "0.1.5.4": [ { "comment_text": "", "digests": { "md5": "a267579b0757ae4915ef6382b891f082", "sha256": "4e9fc9475c71eae8533cfd8d49d0f2fe2169dfa632780cd595f12d5594d8cfc5" }, "downloads": -1, "filename": "leap_gwas-0.1.5.4.tar.gz", "has_sig": false, "md5_digest": "a267579b0757ae4915ef6382b891f082", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3006653, "upload_time": "2014-12-25T14:29:19", "url": "https://files.pythonhosted.org/packages/b8/cc/c5556e522062c791a9463dda3b6ff0b80273bf38d101e0041f33cce303e7/leap_gwas-0.1.5.4.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "fe3b8bf88e6ce809c9fa454a77e1e80b", "sha256": "b0cab63499a5346e7b9be9914b63209537a0d1625951a22d1e472ef7ad97558e" }, "downloads": -1, "filename": "leap_gwas-0.1.6.tar.gz", "has_sig": false, "md5_digest": "fe3b8bf88e6ce809c9fa454a77e1e80b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3101768, "upload_time": "2014-12-26T14:30:14", "url": "https://files.pythonhosted.org/packages/22/07/90e45d2b3308b6f7ce5c38baa91dfb84f1c8d05cf21603c61797784162c1/leap_gwas-0.1.6.tar.gz" } ], "0.1.6.1": [ { "comment_text": "", "digests": { "md5": "4b5a1c768cb26f9fdf0fa1387744df5d", "sha256": "f31510df4d343e070bbcff75a762da1e0c23674bfc83e11eb70c073b7bd2f801" }, "downloads": -1, "filename": "leap_gwas-0.1.6.1.tar.gz", "has_sig": false, "md5_digest": "4b5a1c768cb26f9fdf0fa1387744df5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3101885, "upload_time": "2014-12-26T14:39:55", "url": "https://files.pythonhosted.org/packages/46/9d/1a2098748b1b2d6d84d8c53b10d277e0b5ca308ddd7d04a7879ccf04a3e5/leap_gwas-0.1.6.1.tar.gz" } ], "0.1.6.2": [ { "comment_text": "", "digests": { "md5": "5360839fe9cacdf85fc642bece8795e0", "sha256": "cb3a1b4a04b29d472fc5b3515d16cce7e12be74b49e8aa753bc23bce118def0f" }, "downloads": -1, "filename": "leap_gwas-0.1.6.2.tar.gz", "has_sig": false, "md5_digest": "5360839fe9cacdf85fc642bece8795e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3105159, "upload_time": "2014-12-26T16:00:19", "url": "https://files.pythonhosted.org/packages/bc/ba/12309ebab5dbe6913e1f99421119d85b0c11a005e27068dd8a6b8de6549a/leap_gwas-0.1.6.2.tar.gz" } ], "0.1.6.5": [ { "comment_text": "", "digests": { "md5": "98281b4322318fc2e846b242078ce205", "sha256": "cc936b0d9ed70b0cb070457ae17bd30c8399eb41cbc3af25a4423ed81d467429" }, "downloads": -1, "filename": "leap_gwas-0.1.6.5.tar.gz", "has_sig": false, "md5_digest": "98281b4322318fc2e846b242078ce205", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3105584, "upload_time": "2014-12-26T16:38:23", "url": "https://files.pythonhosted.org/packages/36/7f/38dde1b4120616362dd6071ac961e7195be7337c8066e43930f7a6833b0e/leap_gwas-0.1.6.5.tar.gz" } ], "0.1.6.6": [ { "comment_text": "", "digests": { "md5": "91fe8ef28f37e42e8c6ad4b1b0c207d6", "sha256": "532f6614e401ff87880193ac21d8d7f66b51c2adde1ab39eb8425913b33088e7" }, "downloads": -1, "filename": "leap_gwas-0.1.6.6.tar.gz", "has_sig": false, "md5_digest": "91fe8ef28f37e42e8c6ad4b1b0c207d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3107344, "upload_time": "2014-12-27T17:01:56", "url": "https://files.pythonhosted.org/packages/f5/3a/02fd5300693b9a644d7080cc9f7a38e754cd2646515eb6ba56eee7fd6ba5/leap_gwas-0.1.6.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "20f856a131edb62fa5f082be7f01f945", "sha256": "cd554125171ee7462204ec7e88c3654cda37143321d496f77ff263d7a5c6df74" }, "downloads": -1, "filename": "leap_gwas-0.1.7.tar.gz", "has_sig": false, "md5_digest": "20f856a131edb62fa5f082be7f01f945", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3107345, "upload_time": "2015-01-04T11:10:02", "url": "https://files.pythonhosted.org/packages/0f/7b/4d9c0118c557384f86ab14437a5b6836888e8b5f53068de98b2293a49d82/leap_gwas-0.1.7.tar.gz" } ], "0.1.7.1": [ { "comment_text": "", "digests": { "md5": "a5e1bd717cca7862c08903b48edc2e23", "sha256": "b01642c791f445a1979eaf475685d56ecc45cb8eb1c8d4fd0ad730cf276fabc3" }, "downloads": -1, "filename": "leap_gwas-0.1.7.1.tar.gz", "has_sig": false, "md5_digest": "a5e1bd717cca7862c08903b48edc2e23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3107367, "upload_time": "2015-01-04T11:22:41", "url": "https://files.pythonhosted.org/packages/8d/50/df33e96fec96401f223975bf0edd9036b69f76a36be2aaef798b9ade27fa/leap_gwas-0.1.7.1.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "1feed182d7af0b5ac44b4021cb42cc5d", "sha256": "b958c70f8e263070bad3aa98b849d043a13da95f1c373b3df1cbcfa4ad02aa98" }, "downloads": -1, "filename": "leap_gwas-0.1.8.tar.gz", "has_sig": false, "md5_digest": "1feed182d7af0b5ac44b4021cb42cc5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18453527, "upload_time": "2015-07-30T15:24:53", "url": "https://files.pythonhosted.org/packages/1e/ba/dfa6529a5f533e80d342910d4d4420426c2bd9db49c5d797ef307bf90c07/leap_gwas-0.1.8.tar.gz" } ], "0.1.8.1": [ { "comment_text": "", "digests": { "md5": "41239d1f408e45ab90017fc653caa9ab", "sha256": "a28566a6d7e53e626656993093a9d434f905298bf576a8aa9b5c8f3e2da8b118" }, "downloads": -1, "filename": "leap_gwas-0.1.8.1.tar.gz", "has_sig": false, "md5_digest": "41239d1f408e45ab90017fc653caa9ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3131912, "upload_time": "2015-07-30T15:58:29", "url": "https://files.pythonhosted.org/packages/2c/4a/2611d6acbc77ce9f799400979596f081592242916a399f5be296081031dd/leap_gwas-0.1.8.1.tar.gz" } ], "0.1.8.2": [ { "comment_text": "", "digests": { "md5": "99d4123431f6ee56f154b50c19fd45e6", "sha256": "96a29d106e133dc6d79165da7e08d68ad96ea91becd549aa0c6f3dabf5bbce2b" }, "downloads": -1, "filename": "leap_gwas-0.1.8.2.tar.gz", "has_sig": false, "md5_digest": "99d4123431f6ee56f154b50c19fd45e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3132162, "upload_time": "2015-08-01T09:47:06", "url": "https://files.pythonhosted.org/packages/6e/63/9234eeba06f9e326a2146b65aad40d84c29da17c61d68bdd6deea5c49df5/leap_gwas-0.1.8.2.tar.gz" } ], "0.1.8.3": [ { "comment_text": "", "digests": { "md5": "7581774bd6f4ef12203d3708b1893443", "sha256": "7e893dec5b937c53c1f562c77697a5164ab9998af45bc246a7356d37f4a51144" }, "downloads": -1, "filename": "leap_gwas-0.1.8.3.tar.gz", "has_sig": false, "md5_digest": "7581774bd6f4ef12203d3708b1893443", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3158086, "upload_time": "2016-05-26T06:57:59", "url": "https://files.pythonhosted.org/packages/9d/a6/fa9bed7262ae7e38d78c79c55a99a913a5c12d3a03d3491275051f7912d4/leap_gwas-0.1.8.3.tar.gz" } ], "0.1.8.4": [ { "comment_text": "", "digests": { "md5": "85135f7776fe6b1809d3cf5f41c75d6f", "sha256": "3b105a89350a6fe9590421b6fa8456b0043abd624a7867d953bff3689eac226f" }, "downloads": -1, "filename": "leap_gwas-0.1.8.4.tar.gz", "has_sig": false, "md5_digest": "85135f7776fe6b1809d3cf5f41c75d6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3158101, "upload_time": "2016-05-26T07:00:57", "url": "https://files.pythonhosted.org/packages/b5/36/36926ac12a28f8ec244e1c6858d48f5b0555c400aad027b27c6be9d8207e/leap_gwas-0.1.8.4.tar.gz" } ], "0.1.8.5": [ { "comment_text": "", "digests": { "md5": "bd23abafc53ef6d6f96642ae6e996812", "sha256": "849743ba4c1f3aad7f1317630ab4b6c9c2d2cb60222bc37d5d0efcff29098558" }, "downloads": -1, "filename": "leap_gwas-0.1.8.5.tar.gz", "has_sig": false, "md5_digest": "bd23abafc53ef6d6f96642ae6e996812", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3158085, "upload_time": "2016-05-26T07:05:47", "url": "https://files.pythonhosted.org/packages/2e/20/0e2c529989757c38ab03e70d0b87542bda4cfc456e3fa74d381ce7eaefa3/leap_gwas-0.1.8.5.tar.gz" } ], "0.1.8.6": [ { "comment_text": "", "digests": { "md5": "a4a58aff286d64c7a723a6db09bf7ffb", "sha256": "2e063d12c9a82467d3c186c1a1885cd9b97ece22db4467be03ec5d392dbb05a5" }, "downloads": -1, "filename": "leap_gwas-0.1.8.6.tar.gz", "has_sig": false, "md5_digest": "a4a58aff286d64c7a723a6db09bf7ffb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3158135, "upload_time": "2016-05-28T12:26:01", "url": "https://files.pythonhosted.org/packages/2f/f5/01c84fb2a745aec3ab63fe0dba5396b7168ac2923646251c78829c8004f9/leap_gwas-0.1.8.6.tar.gz" } ], "0.1.8.7": [ { "comment_text": "", "digests": { "md5": "4c77e23077223c7b7f0e4f0dd94a9678", "sha256": "72a96519ab217c1d133b8302e5db26549bdb18a8ac07e844a0afc8c7f8b6cadb" }, "downloads": -1, "filename": "leap_gwas-0.1.8.7.tar.gz", "has_sig": false, "md5_digest": "4c77e23077223c7b7f0e4f0dd94a9678", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3163692, "upload_time": "2016-06-16T04:49:15", "url": "https://files.pythonhosted.org/packages/76/64/d59111a7de832be14eb21db2d0ddb0580d5a974967a3939f94cff2e0b3d0/leap_gwas-0.1.8.7.tar.gz" } ], "0.1.8.8": [ { "comment_text": "", "digests": { "md5": "d14150c4401de1e2d5ba25d41973b29f", "sha256": "c88d729211f1a18500e8161ddd7d7fdb32a1a2e6a9408330fcd0a42d6dacf5f3" }, "downloads": -1, "filename": "leap_gwas-0.1.8.8.tar.gz", "has_sig": false, "md5_digest": "d14150c4401de1e2d5ba25d41973b29f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3160610, "upload_time": "2016-06-17T05:01:04", "url": "https://files.pythonhosted.org/packages/16/9b/553fd5013426c3cda6d514886b88a70c5b0dc44d4e823aeffcd133062bec/leap_gwas-0.1.8.8.tar.gz" } ], "0.1.8.9": [ { "comment_text": "", "digests": { "md5": "7232c04c9925acb105a0268632848645", "sha256": "3da4f1e12c0184b6ab34cedbbb30394a5170ba34ca223b1064c6919b5f8dd758" }, "downloads": -1, "filename": "leap_gwas-0.1.8.9.tar.gz", "has_sig": false, "md5_digest": "7232c04c9925acb105a0268632848645", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3160584, "upload_time": "2016-06-17T05:02:15", "url": "https://files.pythonhosted.org/packages/79/6f/5e2e35eb4d65de319334ecdfaf871fd82866a3fcee25852dbfe30baa2715/leap_gwas-0.1.8.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7232c04c9925acb105a0268632848645", "sha256": "3da4f1e12c0184b6ab34cedbbb30394a5170ba34ca223b1064c6919b5f8dd758" }, "downloads": -1, "filename": "leap_gwas-0.1.8.9.tar.gz", "has_sig": false, "md5_digest": "7232c04c9925acb105a0268632848645", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3160584, "upload_time": "2016-06-17T05:02:15", "url": "https://files.pythonhosted.org/packages/79/6f/5e2e35eb4d65de319334ecdfaf871fd82866a3fcee25852dbfe30baa2715/leap_gwas-0.1.8.9.tar.gz" } ] }