{ "info": { "author": "Kishore Jaganathan", "author_email": "kishorejaganathan@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "## SpliceAI: A deep learning-based tool to identify splice variants\n[![release](https://img.shields.io/badge/release-v1.3-orange.svg)](https://img.shields.io/badge/release-v1.3-orange.svg)\n[![license](https://img.shields.io/badge/license-GPLv3-green.svg)](https://img.shields.io/badge/license-GPLv3-green.svg)\n[![downloads](https://pepy.tech/badge/spliceai)](https://pepy.tech/badge/spliceai)\n\nThis package annotates genetic variants with their predicted effect on splicing, as described in [Jaganathan *et al*, Cell 2019 in press](https://doi.org/10.1016/j.cell.2018.12.015).\n\n**Update**: The annotations for all possible substitutions, 1 base insertions, and 1-4 base deletions within genes are available [here](https://basespace.illumina.com/analyses/194103939/files?projectId=66029966) for download.\n\n### Installation\nThe simplest way to install SpliceAI is through pip or conda:\n```sh\npip install spliceai\n# or\nconda install -c bioconda spliceai\n```\n\nAlternately, SpliceAI can be installed from the [github repository](https://github.com/Illumina/SpliceAI.git):\n```sh\ngit clone https://github.com/Illumina/SpliceAI.git\ncd SpliceAI\npython setup.py install\n```\n\nSpliceAI requires ```tensorflow>=1.2.0```, which is best installed separately via pip or conda (see the [TensorFlow](https://www.tensorflow.org/) website for other installation options):\n```sh\npip install tensorflow\n# or\nconda install tensorflow\n```\n\n### Usage\nSpliceAI can be run from the command line:\n```sh\nspliceai -I input.vcf -O output.vcf -R genome.fa -A grch37\n# or you can pipe the input and output VCFs\ncat input.vcf | spliceai -R genome.fa -A grch37 > output.vcf\n```\n\nRequired parameters:\n - ```-I```: Input VCF with variants of interest.\n - ```-O```: Output VCF with SpliceAI predictions `ALLELE|SYMBOL|DS_AG|DS_AL|DS_DG|DS_DL|DP_AG|DP_AL|DP_DG|DP_DL` included in the INFO column (see table below for details). Only SNVs and simple INDELs (REF or ALT is a single base) within genes are annotated. Variants in multiple genes have separate predictions for each gene.\n - ```-R```: Reference genome fasta file. Can be downloaded from [GRCh37/hg19](http://hgdownload.cse.ucsc.edu/goldenPath/hg19/bigZips/hg19.fa.gz) or [GRCh38/hg38](http://hgdownload.cse.ucsc.edu/goldenPath/hg38/bigZips/hg38.fa.gz).\n - ```-A```: Gene annotation file. Can instead provide `grch37` or `grch38` to use GENCODE V24 canonical annotation files included with the package. To create custom gene annotation files, use `spliceai/annotations/grch37.txt` in repository as template.\n\nOptional parameters:\n - ```-D```: Maximum distance between the variant and gained/lost splice site (default: 50).\n - ```-M```: Mask scores representing annotated acceptor/donor gain and unannotated acceptor/donor loss (default: 0).\n\nDetails of SpliceAI INFO field:\n\n| ID | Description |\n| -------- | ----------- |\n| ALLELE | Alternate allele |\n| SYMBOL | Gene symbol |\n| DS_AG | Delta score (acceptor gain) |\n| DS_AL | Delta score (acceptor loss) |\n| DS_DG | Delta score (donor gain) |\n| DS_DL | Delta score (donor loss) |\n| DP_AG | Delta position (acceptor gain) |\n| DP_AL | Delta position (acceptor loss) |\n| DP_DG | Delta position (donor gain) |\n| DP_DL | Delta position (donor loss) |\n\nDelta score of a variant, defined as the maximum of (DS_AG, DS_AL, DS_DG, DS_DL), ranges from 0 to 1 and can be interpreted as the probability of the variant being splice-altering. In the paper, a detailed characterization is provided for 0.2 (high recall), 0.5 (recommended), and 0.8 (high precision) cutoffs. Delta position conveys information about the location where splicing changes relative to the variant position (positive values are downstream of the variant, negative values are upstream).\n\n### Examples\nA sample input file and the corresponding output file can be found at `examples/input.vcf` and `examples/output.vcf` respectively. The output `T|RYR1|0.00|0.00|0.91|0.08|-28|-46|-2|-31` for the variant `19:38958362 C>T` can be interpreted as follows:\n* The probability that the position 19:38958360 (=38958362-2) is used as a splice donor increases by 0.91.\n* The probability that the position 19:38958331 (=38958362-31) is used as a splice donor decreases by 0.08.\n\nSimilarly, the output `CA|TTN|0.07|1.00|0.00|0.00|-7|-1|35|-29` for the variant `2:179415988 C>CA` has the following interpretation:\n* The probability that the position 2:179415981 (=179415988-7) is used as a splice acceptor increases by 0.07.\n* The probability that the position 2:179415987 (=179415988-1) is used as a splice acceptor decreases by 1.00.\n### Contact\nKishore Jaganathan: kishorejaganathan@gmail.com\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/illumina/SpliceAI", "keywords": "", "license": "GPLv3", "maintainer": "", "maintainer_email": "", "name": "spliceai", "package_url": "https://pypi.org/project/spliceai/", "platform": "", "project_url": "https://pypi.org/project/spliceai/", "project_urls": { "Homepage": "https://github.com/illumina/SpliceAI" }, "release_url": "https://pypi.org/project/spliceai/1.3/", "requires_dist": [ "keras (>=2.0.5)", "pyfaidx (>=0.5.0)", "pysam (>=0.10.0)", "numpy (>=1.14.0)", "pandas (>=0.23.0)", "tensorflow (>=1.2.0); extra == 'cpu'", "tensorflow-gpu (>=1.2.0); extra == 'gpu'" ], "requires_python": "", "summary": "SpliceAI: A deep learning-based tool to identify splice variants", "version": "1.3" }, "last_serial": 5969269, "releases": { "1.2": [ { "comment_text": "", "digests": { "md5": "b6a9989f855dfb13ba2390ff8788d68c", "sha256": "83a788e4281cef0780f843ac5b5bef3b9730c3570e07dec0ea2431b39f2a68ec" }, "downloads": -1, "filename": "spliceai-1.2-py2-none-any.whl", "has_sig": false, "md5_digest": "b6a9989f855dfb13ba2390ff8788d68c", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 13735387, "upload_time": "2019-02-17T22:28:03", "url": "https://files.pythonhosted.org/packages/f0/8f/e02e0bd7e6ca56a0c8ab41f71936af74007ef0d43be1f1166af0a13ca690/spliceai-1.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4a6024d6a87f27a01d5f7d9dad894622", "sha256": "97bdc6e34ebc0ce01d6bce4d700488dceafecb4bb481a41c1f3d4bae5613ea54" }, "downloads": -1, "filename": "spliceai-1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "4a6024d6a87f27a01d5f7d9dad894622", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13735387, "upload_time": "2019-02-17T23:27:24", "url": "https://files.pythonhosted.org/packages/c2/c9/688eeb1bfd307bffff58e1f0357d934d6cff5c62c5a38c3b08c1d698b92d/spliceai-1.2-py3-none-any.whl" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "08e120cde7354cf1d24145d3f4ddf85b", "sha256": "a1413b86a1f10cd45620a975d8395b6caca5b40cfa4891da38a42f0d426f26c6" }, "downloads": -1, "filename": "spliceai-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "08e120cde7354cf1d24145d3f4ddf85b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13735908, "upload_time": "2019-02-21T10:43:56", "url": "https://files.pythonhosted.org/packages/7c/43/c34aa7572112d4c5a32873ed17ead12846f9672be50d58082df88b5d1558/spliceai-1.2.1-py2.py3-none-any.whl" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "68cb0990be9e440305c872ee87fb8959", "sha256": "06fb037968487a6f6781972b1ae163e60c5a35e6a5545d389af90caee6445676" }, "downloads": -1, "filename": "spliceai-1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "68cb0990be9e440305c872ee87fb8959", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16678194, "upload_time": "2019-10-14T00:20:55", "url": "https://files.pythonhosted.org/packages/a7/08/4c6c0f746e4aadfa92a70cce454ba3b4a4d82d3882e944ad782a131a1976/spliceai-1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0729228d8bc6aab603a0a82eaece9e45", "sha256": "8e43a4e2e95da096ecf6401a4b6d8f1f8a79eec3ee4c205aef8cdaae10a4297d" }, "downloads": -1, "filename": "spliceai-1.3.tar.gz", "has_sig": false, "md5_digest": "0729228d8bc6aab603a0a82eaece9e45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16671691, "upload_time": "2019-10-14T00:21:00", "url": "https://files.pythonhosted.org/packages/8a/ed/7419762fa191c9690c78b25011fee8bd8a0f0c7e024878ad1823fb8d84b9/spliceai-1.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "68cb0990be9e440305c872ee87fb8959", "sha256": "06fb037968487a6f6781972b1ae163e60c5a35e6a5545d389af90caee6445676" }, "downloads": -1, "filename": "spliceai-1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "68cb0990be9e440305c872ee87fb8959", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16678194, "upload_time": "2019-10-14T00:20:55", "url": "https://files.pythonhosted.org/packages/a7/08/4c6c0f746e4aadfa92a70cce454ba3b4a4d82d3882e944ad782a131a1976/spliceai-1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0729228d8bc6aab603a0a82eaece9e45", "sha256": "8e43a4e2e95da096ecf6401a4b6d8f1f8a79eec3ee4c205aef8cdaae10a4297d" }, "downloads": -1, "filename": "spliceai-1.3.tar.gz", "has_sig": false, "md5_digest": "0729228d8bc6aab603a0a82eaece9e45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16671691, "upload_time": "2019-10-14T00:21:00", "url": "https://files.pythonhosted.org/packages/8a/ed/7419762fa191c9690c78b25011fee8bd8a0f0c7e024878ad1823fb8d84b9/spliceai-1.3.tar.gz" } ] }