{ "info": { "author": "Jasleen Grewal", "author_email": "grewalj23@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Healthcare Industry", "Programming Language :: Python :: 2.7", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Scientific/Engineering :: Bio-Informatics", "Topic :: Scientific/Engineering :: Medical Science Apps." ], "description": "# Cancerscope for SCOPE\n[![pypi](https://badge.fury.io/py/cancerscope.svg)](https://pypi.python.org/pypi/cancerscope)\n[![Coverage Status](https://coveralls.io/repos/github/jasgrewal/cancerscope/badge.svg?branch=master)](https://coveralls.io/github/jasgrewal/cancerscope?branch=master)\n[![build_status](https://travis-ci.org/jasgrewal/cancerscope.svg?branch=master)](https://travis-ci.org/jasgrewal/cancerscope)\n[![Documentation Status](https://readthedocs.org/projects/cancerscope/badge/?version=latest)](http://cancerscope.readthedocs.io/?badge=latest)\n[![license](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) \n[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)\n[![PyPI pyversions](https://img.shields.io/pypi/pyversions/ansicolortags.svg)](https://pypi.python.org/pypi/cancerscope/) \n\nSCOPE, Supervised Cancer Origin Prediction using Expression, is a method for predicting the tumor type (or matching normal) of an RNA-Seq sample. \nSCOPE's python package, **cancerscope**, allows users to pass the RPKM values with matching Gene IDs and receive a set of probabilities across 66 different categories (40 tumor types and 26 healthy tissues), that sum to 1. Users can optionally generate plots visualizing each sample's classification as well. \n\nSince SCOPE is an ensemble-based approach, it is possible to train additional models and include them in the ensemble that SCOPE uses (Instructions forthcoming). \n\n# The current PyPi release does not support Python 3.x due to issues with plotting library support. \n\n## Installation \nBefore installing **cancerscope**, you will need to install the correct version of the packages [lasagne](https://lasagne.readthedocs.io/en/latest/) and [theano](https://pypi.org/project/Theano/). \n`pip install --upgrade https://github.com/Theano/Theano/archive/master.zip` \n`pip install --upgrade https://github.com/Lasagne/Lasagne/archive/master.zip` \n\n### Automated Install \nOnce you have the latest lasagne and theano python packages installed, you can set up **cancerscope** using the command `pip install cancerscope`. \n\nAt initial install, cancerscope will attempt to download the models needed for prediction. This may take a while depending on your internet connection (3-10 minutes). Please ensure you have a reliable internet connection and atleast 5 GB of space before proceeding with install. \n\n## Setup and Usage \nTo get started with SCOPE, launch a python instance and run: \n`>>> import cancerscope` \n\nIncase the download was unsuccessful at the time of package install, the first time you import cancerscope, the package will attempt to set up a local download of the models needed for prediction. Please be patient as this will take a while (3-10 minutes). \n\n### Prediction - Example \nPrediction can be performed from a pre-formatted input file, or by passing in the data matrix. Please refer to the [tutorial](tutorial/README.md) and [detailed documentation](DETAILED_EXPL.md.md) for more information. \n\nThe commands are as simple as follows: \n`>>> import cancerscope as cs` \n`>>> scope_obj = cs.scope()` \n\nThis will set up the references to the requires SCOPE models. \n\nNext, you can process the predictions straight from the input file: \n`>>> predictions_from_file = scope_obj.get_predictions_from_file(filename) ` \nHere, the input file should be prepared as follows. Columns should be tab-separated, with unique sample IDs. The first column is always the Gene identifier (Official HUGO ID, Ensemble Gene ID, or Gencode). An example is shown with the first 2 rows of input. \n\n| ENSEMBL | Sample 1 | Sample 2 | ... |\n|---|---|---|---|\n|ENSG000XXXXX| 0.2341 | 9451.2 | .... |\n\n...or you can pass in the data matrix, list of sample names, list of feature names, the type of gene names (ENSG, HUGO etc), and optionally, the list of sample names. \n`>>> predictions = scope_obj.predict(` \n`\tX = numpy_array_X, ` \n`\tx_features = list_of_features, `\n`\tx_features_genecode = string_genecode, `\n`\tx_sample_names = list_of_sample_names)` \n\nThe output will look like this: \n\n|'ix'|`sample_ix`|`label`|`pred`|`freq`|`models`|`rank_pred`|`sample_name`|\n|---|---|---|---|---|---|---|---|\n|0|0|BLCA\\_TS|0.268193|2|v1\\_none17kdropout,v1\\_none17k|1|test1|\n|1|0|LUSC\\_TS|0.573807|1|v1\\_smotenone17k|2|test1|\n|2|0|PAAD\\_TS|0.203504|1|v1\\_rm500|3|test1|\n|3|0|TFRI\\_GBM\\_NCL\\_TS|0.552021|1|v1\\_rm500dropout|4|test1|\n|4|1|ESCA\\_EAC\\_TS|0.562124|2|v1\\_smotenone17k,v1\\_none17k|1|test2|\n|5|1|HSNC\\_TS|0.223115|1|v1\\_rm500|2|test2|\n|6|1|MB-Adult\\_TS|0.743373|1|v1\\_none17kdropout|3|test2|\n|7|1|TFRI\\_GBM\\_NCL\\_TS|0.777685|1|v1\\_rm500dropout|4|test2|\n\nHere, 2 samples, called *test1* and *test2*, were processed. The top prediction from each model in the ensemble was taken, and aggregated. \n- For instance, 2 models predicted that 'BLCA\\_TS' was the most likely class for *test1*. The column **freq** gives you the count of contributing models for a prediction, and the column **models** lists these models. The other 3 models had a prediction of 'LUSC\\_TS', 'PAAD\\_TS', and 'TFRI\\_GBM\\_NCL\\_TS' respectively. \n- You can use the rank of the predictions, shown in the column **rank\\_pred**, to filter out the prediction you want to use for interpretation. \n- When SCOPE is highly confident in the prediction, you will see **freq** = 5, indicating all models have top-voted for the same class. \n\n### Visualizing or exporting results - Example \n**cancerscope** can also automatically generate plots for each sample, and save the prediction dataframe to file. This is done by passing the output directory to the prediction functions: \n`>>> predictions_from_file = scope_obj.get_predictions_from_file(filename, outdir = output_folder) ` \n`>>> predictions = scope_obj.predict(X = numpy_array_X, x_features = list_of_features, x_features_genecode = string_genecode, x_sample_names = list_of_sample_names, **outdir = output_folder**)` \n\nThis will automatically save the dataframe returned from the prediction functions as `output_folder + /SCOPE_topPredictions.txt`, and the predictions from all models across all classes as `output_folder + /SCOPE_allPredictions.txt`. \n\nSample specific plots are also generated automatically in the same directory, and labelled `SCOPE_sample-SAMPLENAME_predictions.svg`. \n\n

\n \n

\n\n## Citing cancerscope \nIf you have used this package for any academic research, it would be great if you could cite the [associated paper](https://jamanetwork.com/journals/jamanetworkopen/fullarticle/2731678). \nFull citation: \n**Grewal JK, Tessier-Cloutier B, Jones M, et al. Application of a Neural Network Whole Transcriptome\u2013Based Pan-Cancer Method for Diagnosis of Primary and Metastatic Cancers. JAMA Netw Open. 2019;2(4):e192597. doi:10.1001/jamanetworkopen.2019.2597** \n\nA bibtex citation is provided for your ease of use: \n@article{jgscope2019, \n author = {Grewal, Jasleen K. and Tessier-Cloutier, Basile and Jones, Martin and Gakkhar, Sitanshu and Ma, Yussanne and Moore, Richard and Mungall, Andrew J. and Zhao, Yongjun and Taylor, Michael D. and Gelmon, Karen and Lim, Howard and Renouf, Daniel and Laskin, Janessa and Marra, Marco and Yip, Stephen and Jones, Steven J. M.}, \n title = \"{Application of a Neural Network Whole Transcriptome\u2013Based Pan-Cancer Method for Diagnosis of Primary and Metastatic CancersAssessment of a Machine Learning\u2013Based Method for Diagnosing Primary and Metastatic CancersAssessment of a Machine Learning\u2013Based Method for Diagnosing Primary and Metastatic Cancers}\", \n journal = {JAMA Network Open}, \n volume = {2}, \n number = {4}, \n pages = {e192597-e192597}, \n year = {2019}, \n month = {04}, \n issn = {2574-3805}, \n doi = {10.1001/jamanetworkopen.2019.2597}, \n url = {https://doi.org/10.1001/jamanetworkopen.2019.2597}, \n eprint = {https://jamanetwork.com/journals/jamanetworkopen/articlepdf/2731678/grewal\\_2019\\_oi\\_190114.pdf}, \n}\n\n\n## License \ncancerscope is distributed under the terms of the [MIT](https://opensource.org/licenses/MIT) license. \n\n## Feature requests \nIf you wished outputs were slightly (or significantly) easier to use, or want to see additional options for customizing the output, please open up a GitHub issue [here](https://github.com/jasgrewal/cancerscope/issues). \n\n## Issues \nIf you encounter any problems, please contact the developer and provide detailed error logs and description [here](https://github.com/jasgrewal/cancerscope/issues). \n\n## Common Errors \nTheano is a bit finicky when working with the cudnn backend, and may sometimes throw errors at you due to version conflicts. Here's a common one if you are setting up **cancerscope** in GPU-friendly environment. \n`RuntimeError: Mixed dnn version. The header is version 5110 while the library is version 7401.` \n- Please ensure that only 1 cudnn version exists on your system. \n- Cancerscope has been developed and tested with cudnn-7.0 (v3.0) \n\npkg_resources.VersionConflict: (pandas xxxx (/path/to/sitepckgs/), Requirement.parse('pandas>=0.23.4')) \n- This error may arise because you have an older version of pandas installed, which conflicts with the plotting library we use (plotnine, this package needs pandas >=0.23.4) \n- You can either manually install plotnine ('pip install plotnine') or update your pandas library ('pip update pandas') \n\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://pypi.org/project/cancerscope/", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "cancerscope", "package_url": "https://pypi.org/project/cancerscope/", "platform": "", "project_url": "https://pypi.org/project/cancerscope/", "project_urls": { "Homepage": "https://pypi.org/project/cancerscope/" }, "release_url": "https://pypi.org/project/cancerscope/0.31/", "requires_dist": [ "coverage", "numpy", "scikit-learn (>=0.18)", "scipy", "plotnine", "requests", "pyyaml", "matplotlib (<=2.2.2)", "pysocks (==1.6.8)" ], "requires_python": ">=2.6,<3.0", "summary": "An RNA-Seq based tool for Supervised Cancer Origin Prediction using Expression", "version": "0.31" }, "last_serial": 5194112, "releases": { "0.21": [ { "comment_text": "", "digests": { "md5": "1ff48bb7b50f4fa8958ef3f667c3b2e9", "sha256": "16d9177ddcc4150b0dd07ccd8514db91c7be39c4164d0fc2a4650df1c2b6291d" }, "downloads": -1, "filename": "cancerscope-0.21.tar.gz", "has_sig": false, "md5_digest": "1ff48bb7b50f4fa8958ef3f667c3b2e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 630368, "upload_time": "2019-02-25T23:10:29", "url": "https://files.pythonhosted.org/packages/b8/43/53dc277c4860bde6b75aaf936921caca23a41aa17cec5d419b34c3b702fc/cancerscope-0.21.tar.gz" } ], "0.25": [ { "comment_text": "", "digests": { "md5": "13a343d08aa20aaa46e635ee398a227d", "sha256": "037855a3e99f251a3cdb123e919940f1cfe8bded30db1e2fb92cef3f7c94d4e7" }, "downloads": -1, "filename": "cancerscope-0.25-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "13a343d08aa20aaa46e635ee398a227d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 876187, "upload_time": "2019-04-23T20:11:39", "url": "https://files.pythonhosted.org/packages/66/8c/054d09b5e18d6796d80922e922ca498e1bd2d173f304c47ecc291895d765/cancerscope-0.25-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "33f4f453edd2268fec98c4837470be89", "sha256": "13f0f645afa266cd312db2e9e4478430681b28a61ca476a1dfeb7ed408c6830f" }, "downloads": -1, "filename": "cancerscope-0.25.tar.gz", "has_sig": false, "md5_digest": "33f4f453edd2268fec98c4837470be89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 848212, "upload_time": "2019-04-23T19:52:10", "url": "https://files.pythonhosted.org/packages/df/ba/856bec7a220ff24f30cd937a9416b99dd855a0c3ce6484dc46a8c1d0388f/cancerscope-0.25.tar.gz" } ], "0.27": [ { "comment_text": "", "digests": { "md5": "cdd7fa21dd97c3d3ed8af4c3bd930a07", "sha256": "9d62282f66f844a9563151d976553a0b7253d9909649bc21e0e5085d45318e1d" }, "downloads": -1, "filename": "cancerscope-0.27-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cdd7fa21dd97c3d3ed8af4c3bd930a07", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6, <=3.5", "size": 876186, "upload_time": "2019-04-23T20:21:23", "url": "https://files.pythonhosted.org/packages/af/21/b19d51188d3a6ffc17fd42438e40e7f58e684d25e2111cda5d24345fa9fa/cancerscope-0.27-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e2605f0386942cad71544e8fff1a4478", "sha256": "3fe56ce017ec62ffa662e53816c0f0b46c6ecdbe49eb226c2a48cf575bd8a6a2" }, "downloads": -1, "filename": "cancerscope-0.27.tar.gz", "has_sig": false, "md5_digest": "e2605f0386942cad71544e8fff1a4478", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6, <=3.5", "size": 848424, "upload_time": "2019-04-23T20:21:26", "url": "https://files.pythonhosted.org/packages/2b/4d/b9e44d5356dce39264ed493839a576126def961bdfacefdffbabd6cfe75f/cancerscope-0.27.tar.gz" } ], "0.28": [ { "comment_text": "", "digests": { "md5": "38ef520bd742ac94d4bd963b11755666", "sha256": "6c6a2bd6b9909202dfa1b3701971adfc7d6d6f5cb297e946233d6ffd0269887d" }, "downloads": -1, "filename": "cancerscope-0.28-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "38ef520bd742ac94d4bd963b11755666", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6, <=3.5", "size": 876083, "upload_time": "2019-04-23T20:33:10", "url": "https://files.pythonhosted.org/packages/16/5e/8ce007d2fa346d9ce198504b482a4cb7fb67df21d413ec8de061b2fe220b/cancerscope-0.28-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "50e3c19ead92be7c0d541dafcba31775", "sha256": "e2118af0269853daf2bfdb05bce22a89b8bd7feee2b0a38d888056ef74b17867" }, "downloads": -1, "filename": "cancerscope-0.28.tar.gz", "has_sig": false, "md5_digest": "50e3c19ead92be7c0d541dafcba31775", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6, <=3.5", "size": 848275, "upload_time": "2019-04-23T20:33:13", "url": "https://files.pythonhosted.org/packages/9e/d3/74144385dac165dae423d54043022e17217c9b63beb9d7185159f0cb9a8a/cancerscope-0.28.tar.gz" } ], "0.29": [ { "comment_text": "", "digests": { "md5": "6b103b883ef14734da04e7933c921f27", "sha256": "622d86a990e09583a537a7d794d5ca80e08b6885754678d0fc44b33f562038d2" }, "downloads": -1, "filename": "cancerscope-0.29-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6b103b883ef14734da04e7933c921f27", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6, <=3.5", "size": 876022, "upload_time": "2019-04-23T20:40:03", "url": "https://files.pythonhosted.org/packages/a1/60/cec885dc92fbafd064be635b59154f45115ca35c625e8ad7b73a169c5491/cancerscope-0.29-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e0f071e7ff99aeee6b9c1b0522c732a6", "sha256": "ba05b95c4fb1472086851da079d2e8edc6e3d231c4d332497ef5f88015ae7c64" }, "downloads": -1, "filename": "cancerscope-0.29.tar.gz", "has_sig": false, "md5_digest": "e0f071e7ff99aeee6b9c1b0522c732a6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6, <=3.5", "size": 848044, "upload_time": "2019-04-23T20:40:05", "url": "https://files.pythonhosted.org/packages/91/7f/7ae562fbe6010e242cfc44489b68c68025b23352a0e6bf6bb9358bb71038/cancerscope-0.29.tar.gz" } ], "0.30": [ { "comment_text": "", "digests": { "md5": "12f66ac23cdab025d05360b33c905dad", "sha256": "65cd00090098e02b36fecb81082c4726331d27ede2c16dccefb00d02f9751957" }, "downloads": -1, "filename": "cancerscope-0.30-py3-none-any.whl", "has_sig": false, "md5_digest": "12f66ac23cdab025d05360b33c905dad", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.6, <3.0", "size": 879442, "upload_time": "2019-04-25T21:12:05", "url": "https://files.pythonhosted.org/packages/55/b1/9d55296861813e3a53d4543dbd64b6a3e07165514eb4b080a0cc9d29eb20/cancerscope-0.30-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1bf50d8be5c89753a947d02765fb86f0", "sha256": "13c3d5d7ff5d1451818d86c6a8fb027b9effa9045e7bcd8920399bab1fdf6a06" }, "downloads": -1, "filename": "cancerscope-0.30.tar.gz", "has_sig": false, "md5_digest": "1bf50d8be5c89753a947d02765fb86f0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6, <3.0", "size": 846747, "upload_time": "2019-04-25T21:12:08", "url": "https://files.pythonhosted.org/packages/70/af/a9ab50130814fb51ac9824066ffad989a7fe4304632eac5cfb1667186767/cancerscope-0.30.tar.gz" } ], "0.30.1": [ { "comment_text": "", "digests": { "md5": "8414c1cf57b013d2f2b09f8d728b8b40", "sha256": "2d1a40a2901d492cbd99423aae1c633a931d8e29159b22a7bc641d4216f2e928" }, "downloads": -1, "filename": "cancerscope-0.30.1-py2-none-any.whl", "has_sig": false, "md5_digest": "8414c1cf57b013d2f2b09f8d728b8b40", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.6, <3.0", "size": 875957, "upload_time": "2019-04-25T21:20:52", "url": "https://files.pythonhosted.org/packages/c7/07/3e36a1106a926d438783553b702a25957afa1780de1fcbd3b0b12b8cf675/cancerscope-0.30.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8b372254f195a0b1a7ce06ae24e1d87b", "sha256": "5034642c58e237305a9ccbadf3d99795cca533937fa8545d54bf22d4971f8e43" }, "downloads": -1, "filename": "cancerscope-0.30.1.tar.gz", "has_sig": false, "md5_digest": "8b372254f195a0b1a7ce06ae24e1d87b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6, <3.0", "size": 846761, "upload_time": "2019-04-25T21:20:54", "url": "https://files.pythonhosted.org/packages/d5/c6/fbb9e5ea82d5a19813eb74fcf9d0061f5e9b9df3223b9ea243ebaba9df54/cancerscope-0.30.1.tar.gz" } ], "0.30.2": [ { "comment_text": "", "digests": { "md5": "1dc733de15d5c976412f0de72bd1c644", "sha256": "7817d066daa228da1f4eba6d76970495686d7ab764080b6f7d681f61d9ea8da1" }, "downloads": -1, "filename": "cancerscope-0.30.2-py2-none-any.whl", "has_sig": false, "md5_digest": "1dc733de15d5c976412f0de72bd1c644", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.6, <3.0", "size": 876397, "upload_time": "2019-04-25T21:27:02", "url": "https://files.pythonhosted.org/packages/4a/51/7b2004ad3fd360070b15a873f28b7cea4fdcaff43845c7fd69fec5f76fdd/cancerscope-0.30.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d2f784e7fd22ce290589c866ef228d4f", "sha256": "517797b8136d9fd3c0f31bc0e966e14b8a3b1b717baffebec72efcfaf7eca9f5" }, "downloads": -1, "filename": "cancerscope-0.30.2.tar.gz", "has_sig": false, "md5_digest": "d2f784e7fd22ce290589c866ef228d4f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6, <3.0", "size": 846997, "upload_time": "2019-04-25T21:27:05", "url": "https://files.pythonhosted.org/packages/8d/77/2c831cf10a6845875fb43e27b2d5f88df102daf1b70104e36c66d4da04e0/cancerscope-0.30.2.tar.gz" } ], "0.30.3": [ { "comment_text": "", "digests": { "md5": "6cdff4699e105990d25dc106f39b75e2", "sha256": "7057dc8cd1f2f1c9589d7fe6647c2cc98732b28cfcdf95486432271a4ccb0273" }, "downloads": -1, "filename": "cancerscope-0.30.3-py2-none-any.whl", "has_sig": false, "md5_digest": "6cdff4699e105990d25dc106f39b75e2", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.6, <3.0", "size": 1666331, "upload_time": "2019-04-26T01:51:49", "url": "https://files.pythonhosted.org/packages/71/51/17d2a0ce0958ac958484a1ad8d7b3dfac7a3f0fc52d7ef2b20534adbde72/cancerscope-0.30.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e44d4767e2c648fcb0660e7ee3d6d12", "sha256": "f9f726b94890c70decb923bea2bea7adfefbd90345dd1625a82d44679e2cce3b" }, "downloads": -1, "filename": "cancerscope-0.30.3.tar.gz", "has_sig": false, "md5_digest": "0e44d4767e2c648fcb0660e7ee3d6d12", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6, <3.0", "size": 1628001, "upload_time": "2019-04-26T01:51:52", "url": "https://files.pythonhosted.org/packages/9c/b4/2c84bbf0d5611b6f3e518ec65e9c1a40f7de588589078851b8706ccd2902/cancerscope-0.30.3.tar.gz" } ], "0.30.4": [ { "comment_text": "", "digests": { "md5": "bff64690e7cb42cfa237fb793951ed4f", "sha256": "4893ba68d1222f3689e1402d7eaef1879a39941b0c6d2f2d0781917ff2859390" }, "downloads": -1, "filename": "cancerscope-0.30.4-py2-none-any.whl", "has_sig": false, "md5_digest": "bff64690e7cb42cfa237fb793951ed4f", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.6,<3.0", "size": 1666399, "upload_time": "2019-04-26T16:57:51", "url": "https://files.pythonhosted.org/packages/4e/27/a4f7e52e7805ccf76a84fa3abc2b0ee2c73a08765891dbfe9dad87ac46b1/cancerscope-0.30.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5ed440616898144227908a62eecc8579", "sha256": "341b245ed65b762b071285cf23894e7a312bc2278f4989f1d617128250b52077" }, "downloads": -1, "filename": "cancerscope-0.30.4.tar.gz", "has_sig": false, "md5_digest": "5ed440616898144227908a62eecc8579", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6,<3.0", "size": 1628178, "upload_time": "2019-04-26T16:57:55", "url": "https://files.pythonhosted.org/packages/53/d4/2c0a07c41f5db75809a87e61a8070170bac39d98daad9ca45e393cf40712/cancerscope-0.30.4.tar.gz" } ], "0.31": [ { "comment_text": "", "digests": { "md5": "aeb86b098241d443b18a03faa8c24f9d", "sha256": "7dbd00d154b842aac33cf4ee19a308a6e9404983d53278f11373516c5ec979be" }, "downloads": -1, "filename": "cancerscope-0.31-py2-none-any.whl", "has_sig": false, "md5_digest": "aeb86b098241d443b18a03faa8c24f9d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.6,<3.0", "size": 1666946, "upload_time": "2019-04-26T17:11:27", "url": "https://files.pythonhosted.org/packages/d4/fd/58fcdd75816f4ba7dc92fbb63518d1f3977af5e8b93cea6f139907404664/cancerscope-0.31-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "80616b45ef478752c969a018ba1671bf", "sha256": "25abdc0eb17c8705be2aafa4f866d6ae2c5698b55ad632eac7a40eaae00a56c7" }, "downloads": -1, "filename": "cancerscope-0.31.tar.gz", "has_sig": false, "md5_digest": "80616b45ef478752c969a018ba1671bf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6,<3.0", "size": 1628840, "upload_time": "2019-04-26T17:11:32", "url": "https://files.pythonhosted.org/packages/52/bd/5a1fb9ea5d8e4b8d41005b572ff4298602079f188df413278a267dcb927f/cancerscope-0.31.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "aeb86b098241d443b18a03faa8c24f9d", "sha256": "7dbd00d154b842aac33cf4ee19a308a6e9404983d53278f11373516c5ec979be" }, "downloads": -1, "filename": "cancerscope-0.31-py2-none-any.whl", "has_sig": false, "md5_digest": "aeb86b098241d443b18a03faa8c24f9d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.6,<3.0", "size": 1666946, "upload_time": "2019-04-26T17:11:27", "url": "https://files.pythonhosted.org/packages/d4/fd/58fcdd75816f4ba7dc92fbb63518d1f3977af5e8b93cea6f139907404664/cancerscope-0.31-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "80616b45ef478752c969a018ba1671bf", "sha256": "25abdc0eb17c8705be2aafa4f866d6ae2c5698b55ad632eac7a40eaae00a56c7" }, "downloads": -1, "filename": "cancerscope-0.31.tar.gz", "has_sig": false, "md5_digest": "80616b45ef478752c969a018ba1671bf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6,<3.0", "size": 1628840, "upload_time": "2019-04-26T17:11:32", "url": "https://files.pythonhosted.org/packages/52/bd/5a1fb9ea5d8e4b8d41005b572ff4298602079f188df413278a267dcb927f/cancerscope-0.31.tar.gz" } ] }