{ "info": { "author": "Chris Churas", "author_email": "contact@ndexbio.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "===========================\nNDEx NCI-PID content loader\n===========================\n\n\n.. image:: https://img.shields.io/pypi/v/ndexncipidloader.svg\n :target: https://pypi.python.org/pypi/ndexncipidloader\n\n.. image:: https://img.shields.io/travis/ndexcontent/ndexncipidloader.svg\n :target: https://travis-ci.org/ndexcontent/ndexncipidloader\n\n.. image:: https://coveralls.io/repos/github/ndexcontent/ndexncipidloader/badge.svg?branch=master\n :target: https://coveralls.io/github/ndexcontent/ndexncipidloader?branch=master\n\n.. image:: https://readthedocs.org/projects/ndexncipidloader/badge/?version=latest\n :target: https://ndexncipidloader.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n\nPython application that loads NCI-PID data into NDEx_\n\nThis tool downloads OWL_ files containing NCI-PID data from: ftp://ftp.ndexbio.org/NCI_PID_BIOPAX_2016-06-08-PC2v8-API/\nand performs the following operations:\n\n**1\\)** OWL files are converted to extended SIF_ format using Paxtools_ and the SIF_ file is loaded into a network\n\n**2\\)** A node attribute named **type** is added to each node and is set to one of the following\n by extracting its value from **PARTICIPANT_TYPE** column in SIF_ file:\n\n* **protein** (originally ProteinReference)\n\n* **smallmolecule** (originally SmallMoleculeReference)\n\n* **proteinfamily** (set if node name has **family** and was a **protein**)\n\n* **RnaReference** (original value)\n\n* **ProteinReference;SmallMoleculeReference** (original value)\n\n**3\\)** A node attribute named **alias** is added to each node and is loaded from **UNIFICATION_XREF**\ncolumn in SIF_ file which is split by `;` into a list. Each element of this list is prefixed with **uniprot:** and t first element is set as the\n**represents** value in node and removed from the **alias** attribute. If after\nremoval, the **alias** attribute value is empty, it is removed.\n\n**4\\)** In SIF_ file **INTERACTION_TYPE** defines edge interaction type and **INTERACTION_PUBMED_ID** define\nvalue of **citation** edge attribute. The values in **citation** edge attribute are\nprefixed with **pubmed:** Once loaded redundant edges are removed\nfollowing these conventions:\n\n* **neighbor-of** edges are removed\n\n* **controls-state-of** edges are removed if another edge connecting same nodes has one of the following interactions: **controls-state-change-of, controls-transport-of, controls-phosphorylation-of, controls-expression-of**\n\n**NOTE:** If above results in orphaned nodes, those nodes are removed as well\n\n**5\\)** An edge attribute named **directed** is set to **True** if edge interaction type is one of the following (otherwise its set to **False**)\n\n.. code-block::\n\n controls-state-change-of\n controls-transport-of\n controls-phosphorylation-of\n controls-expression-of\n catalysis-precedes\n controls-production-of\n controls-transport-of-chemical\n chemical-affects\n used-to-produce\n\n**6\\)** If node name matches **represents** value in node (with **uniprot:** prefix added) then the node name is replaced with gene symbol from `gene_symbol_mapping.json`_\n\n**7\\)** If node name starts with **CHEBI** then node name is replaced with value of **PARTICIPANT_NAME** from SIF_ column\n\n**8\\)** If node **represents** value starts with **chebi:CHEBI** the **chebi:** is removed\n\n**9\\)** If **_HUMAN** in SIF_ file **PARTICIPANT_NAME** column for a given node then this value is replaced by doing a lookup in `gene_symbol_mapping.json`_, unless value in lookup is **-** in which case original name is left\n\n**10\\)** Any node with **family** node name is changed as follows if a lookup of node name against **gene_symbol_mapping.json** returns one or more genes\n\n* Node attribute named **member** is added and set to list of genes found in lookup in `gene_symbol_mapping.json`_\n* Node attribute named **type** is changed to **proteinfamily**\n\n**11\\)** The following network attributes are set\n\n* **name** set to name of OWL_ file with **.owl.gz** suffix removed except for **PathwayCommons.8.NCI_PID.BIOPAX** which is renamed to **NCI PID - Complete Interactions**\n* **author** (from **Curated By** column in `networkattributes.tsv`_)\n* **labels** (from **PID** column in `networkattributes.tsv`_)\n* **organism** is pulled from **organism** attribute of `style.cx`_\n* **prov:wasGeneratedBy** is set to html link to this repo with text ndexncipidloader (example: ndexncipidloader 1.2.0)\n* **prov:wasDerivedFrom** is set to full path to OWL_ file on ftp site\n* **reviewers** (from **Reviewed By** column in `networkattributes.tsv`_)\n* **version** is set to Abbreviated month-year (example: MAY-2019)\n* **description** is pulled from **description** attribute of `style.cx`_ except for **NCI PID - Complete Interactions** which has a hardcoded description set to `This network includes all interactions of the individual NCI-PID pathways.`\n* **networkType** is set to list of string with single entry **pathway** except for **NCI PID - Complete Interactions** which also includes **interactome**\n* **__iconurl** is set to value of `--iconurl` flag (currently defaulting to http://search.ndexbio.org/static/media/ndex-logo.04d7bf44.svg)\n* **__normalizationversion** is set to 0.1\n\n**12\\)** By default each network is made public with full indexed and showcased (visible in user's home network list page)\n\nDependencies\n------------\n\n* `ndex2 `_\n* `ndexutil `_\n* `biothings_client `_\n* `requests `_\n* `pandas `_\n\n\nCompatibility\n-------------\n\n* Python 3.3+\n\nInstallation\n------------\n\n.. code-block::\n\n git clone https://github.com/ndexcontent/ndexncipidloader\n cd ndexncipidloader\n make dist\n pip install dist/ndexncipidloader*whl\n\n\nConfiguration\n-------------\n\nThe **ndexloadncipid.py** requires a configuration file in the following format be created.\nThe default path for this configuration is :code:`~/.ndexutils.conf` but can be overridden with\n:code:`--conf` flag.\n\n**Format of configuration file**\n\n.. code-block::\n\n []\n\n user = \n password = \n server = \n\n\n**Example configuration file**\n\n.. code-block::\n\n [ncipid_dev]\n\n user = joe123\n password = somepassword123\n server = dev.ndexbio.org\n\n\nRequired external tool\n-----------------------\n\nPaxtools is needed to convert the OWL files to SIF format.\n\nPlease download **paxtools.jar** (http://www.biopax.org/Paxtools/) (requires Java 8+) and\nput in current working directory or specify path to **paxtools.jar** with `--paxtools` flag on\n**loadnexncipidloader.py**\n\nUsage\n-----\n\nFor more information invoke :code:`ndexloadncipid.py -h`\n\n**Example usage**\n\nThis example assumes a valid configuration file with paxtools.jar in the working directory.\n\n.. code-block::\n\n ndexloadncipid.py sif\n\n**Example usage with sif files already downloaded**\n\nThis example assumes a valid configuration file and the SIF files are located in :code:`sif/` directory\n\n.. code-block::\n\n ndexloadncipid.py --skipdownload sif\n\n\nVia Docker\n~~~~~~~~~~~~~~~~~~~~~~\n\n**Example usage**\n\nThis example **paxtools.jar** is in current directory, and a configuration\nfile has been created in current working directory and named :code:`conf`\n\n.. code-block::\n\n docker run -v `pwd`:`pwd` -w `pwd` coleslawndex/ndexncipidloader:3.1.0 ndexloadncipid.py --paxtools `pwd`/paxtools.jar --conf conf sif\n\n\nCredits\n-------\n\nThis package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage\n.. _NDEx: http://www.ndexbio.org\n.. _OWL: https://en.wikipedia.org/wiki/Web_Ontology_Language\n.. _Paxtools: https://www.biopax.org/Paxtools\n.. _SIF: https://bioconductor.org/packages/release/bioc/vignettes/paxtoolsr/inst/doc/using_paxtoolsr.html#extended-simple-interaction-format-sif-network\n.. _uniprot: https://www.uniprot.org/\n.. _gene_symbol_mapping.json: https://github.com/ndexcontent/ndexncipidloader/blob/master/ndexncipidloader/gene_symbol_mapping.json\n.. _networkattributes.tsv: https://github.com/ndexcontent/ndexncipidloader/blob/master/ndexncipidloader/networkattributes.tsv\n.. _style.cx: https://github.com/ndexcontent/ndexncipidloader/blob/master/ndexncipidloader/style.cx\n\n\n=======\nHistory\n=======\n\n3.1.0 (2019-09-11)\n-------------------\n\n* Added **--disableshowcase** flag that lets caller disable showcasing of **NEWLY** added networks which is enabled by default.\n\n* Added **--indexlevel** flag that lets caller set type of indexing performed on **NEWLY** added networks. Default is full indexing (all).\n\n3.0.0 (2019-08-02)\n-------------------\n\n* Renamed command line tool from **loadndexncipidloader.py** to **ndexloadncipid.py** to be more consistent with other loaders. Since this is a breaking change bumped to version 3.0.0\n\n* Added **--visibility** flag which lets caller dictate whether newly added networks are set to PUBLIC (default) or PRIVATE\n\n* Removed parameter **--disablcitededgemerge** since the changes in 2.0.0 causes this to no longer have any effect\n\n* Set default for **--paxtools** flag to be **paxtools.jar** which assumes the tool is in current working directory\n\n2.0.0 (2019-07-16)\n------------------\n\n* Spring layout adjusted by increasing iterations\n\n* Code now removes all neighbor-of edges with NO data migration. controls-state-change-of\n edges are removed if more informative edges exist. Any orphaned nodes resulting from\n the removal of these edges are also removed\n\n1.6.0 (2019-07-09)\n------------------\n\n* Added *__iconurl* network attribute to all networks\n\n* Added **interactome** to *networkType** network attribute for 'NCI PID - Complete Interactions' network\n\n1.5.1 (2019-07-09)\n------------------\n\n* Renamed network attribute *type* to *networkType* to adhere to normalization specification\n\n1.5.0 (2019-06-28)\n------------------\n\n* Fixed style.cx by removing view aspects that was causing networks to not render properly in cytoscape\n\n1.4.0 (2019-06-13)\n------------------\n\n* Network PathwayCommons.8.NCI_PID.BIOPAX is now renamed\n to 'NCI PID - Complete Interactions' with alternate description.\n\n1.3.0 (2019-06-12)\n------------------\n\n* Improved description in style.cx file (JIRA ticket UD-362)\n\n1.2.0 (2019-06-11)\n------------------\n\n* Code now adds a citation attribute to every edge even if there is no value\n in which case an empty list is set (JIRA ticket UD-360)\n\n* Added type network attribute and set it to ['pathway'] following normalization\n guidelines\n\n1.1.0 (2019-06-10)\n------------------\n\n* Adjusted network layout to be more compact by reducing number of iterations in\n spring layout algorithm as well as lowering the value of scale (JIRA ticket UD-360)\n\n1.0.2 (2019-05-24)\n------------------\n\n* Removed view references from cyVisualProperties aspect of style.cx file cause it was causing issues with loading in cytoscape\n\n* Set directed edge attribute type to boolean cause it was incorrectly defaulting to a string\n\n1.0.1 (2019-05-18)\n------------------\n\n* Renamed incorrect attribute name prov:wasDerivedBy to prov:wasDerivedFrom\n to adhere to normalization document requirements\n\n1.0.0 (2019-05-16)\n------------------\n\n* Massive refactoring and first release where code attempts to behave as defined in README.rst\n\n0.1.1 (2019-02-15)\n------------------\n\n* Updated data/style.cx by renaming Protein to protein and SmallMolecule\n to smallmolecule to match the new normalization conventions\n\n\n0.1.0 (2019-02-15)\n------------------\n\n* First release\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ndexcontent/ndexncipidloader", "keywords": "ndexncipidloader", "license": "BSD license", "maintainer": "", "maintainer_email": "", "name": "ndexncipidloader", "package_url": "https://pypi.org/project/ndexncipidloader/", "platform": "", "project_url": "https://pypi.org/project/ndexncipidloader/", "project_urls": { "Homepage": "https://github.com/ndexcontent/ndexncipidloader" }, "release_url": "https://pypi.org/project/ndexncipidloader/3.1.0/", "requires_dist": [ "ndex2", "ndexutil", "biothings-client", "ftpretty", "requests", "pandas" ], "requires_python": "", "summary": "Loads NCI-PID data into NDEx", "version": "3.1.0" }, "last_serial": 5815939, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "256ec8ab15b1264e6d2f4368a303ae8d", "sha256": "d81be329dc17b45130ffe11e703e4f3872c7c75318a1d0bbc9a314f46196d35b" }, "downloads": -1, "filename": "ndexncipidloader-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "256ec8ab15b1264e6d2f4368a303ae8d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 113522, "upload_time": "2019-05-16T21:03:17", "url": "https://files.pythonhosted.org/packages/b5/2a/663f99a2f976e1d1164eb8e79464f2b8eba3e579130bf9594ea754e5777c/ndexncipidloader-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "78264bbfbe515ec3522121cf6a981140", "sha256": "83267dc8d27272b89ea24f87d502c4e0be0579b3302b0760785a7beec401eb14" }, "downloads": -1, "filename": "ndexncipidloader-1.0.0.tar.gz", "has_sig": false, "md5_digest": "78264bbfbe515ec3522121cf6a981140", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107927, "upload_time": "2019-05-16T21:03:20", "url": "https://files.pythonhosted.org/packages/86/9b/e0afaf59a81008443a8a2076cf764ac8d7c441fede0dbf38cc8961654edb/ndexncipidloader-1.0.0.tar.gz" } ], "1.0.0.post1": [ { "comment_text": "", "digests": { "md5": "d0ddde2b4afa4ecd38443f2e29be1182", "sha256": "4a0d4707dd660c27163de87bf3c8cf45c5b5c8d63f44474e138d0c09af7026f5" }, "downloads": -1, "filename": "ndexncipidloader-1.0.0.post1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d0ddde2b4afa4ecd38443f2e29be1182", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 113620, "upload_time": "2019-05-16T21:14:46", "url": "https://files.pythonhosted.org/packages/11/76/025cbb493441a8e5d2b614c6829790ed8c12623b97d9c4d4752c0cefaa72/ndexncipidloader-1.0.0.post1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7aad9befd62413525670c95627a795eb", "sha256": "d39b7fb2404d3c32e0056ee5f3e11304768b6529dae3d510c175c7c7e3122ace" }, "downloads": -1, "filename": "ndexncipidloader-1.0.0.post1.tar.gz", "has_sig": false, "md5_digest": "7aad9befd62413525670c95627a795eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107963, "upload_time": "2019-05-16T21:14:47", "url": "https://files.pythonhosted.org/packages/9c/3f/3d4ac7accddbb4ae3f04486589b6991bd3e1e2399090b4bd86c762cfea90/ndexncipidloader-1.0.0.post1.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "415b055366256805a7c8d82664bb80d3", "sha256": "65e31ab423bc5331075a06a1a7c04af2aa5ef51de4b3e15ecd8971bf9e56fd36" }, "downloads": -1, "filename": "ndexncipidloader-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "415b055366256805a7c8d82664bb80d3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 113604, "upload_time": "2019-05-18T16:40:46", "url": "https://files.pythonhosted.org/packages/12/1f/126f94b13912ffdac2e8d2132f02002897dafe321d395c622d67270f4f21/ndexncipidloader-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2413c911f52833900b0c6b48d8ca99df", "sha256": "3d1ece8884c9ec28b2e33a058c158c6c9f9a9df0d324ea2a0cc9f3cb1731cf1b" }, "downloads": -1, "filename": "ndexncipidloader-1.0.1.tar.gz", "has_sig": false, "md5_digest": "2413c911f52833900b0c6b48d8ca99df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108144, "upload_time": "2019-05-18T16:40:47", "url": "https://files.pythonhosted.org/packages/0d/72/3a9bf63629aa57aed04b3b00556499bd1346393ab51fa82000471f76a2c1/ndexncipidloader-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "d1d8454e39bb6025b0bba015fd94584f", "sha256": "3ec3c01fbbfd8496f335b4c3aadd749818a3ca7bd6c88397a24c26709d4e5659" }, "downloads": -1, "filename": "ndexncipidloader-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d1d8454e39bb6025b0bba015fd94584f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 113738, "upload_time": "2019-05-24T22:44:42", "url": "https://files.pythonhosted.org/packages/6a/8f/8c4a70f9f5e48ccc57c7537c1a9ce2f8e03d29bdad86a0a2e69cfc5b114e/ndexncipidloader-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2bacb4704d411aa5daa5d6d02e4f4a1d", "sha256": "5f96d59cbd282d27484c6e4395ad14431bcbb3a497730a2e2860346f430b44e3" }, "downloads": -1, "filename": "ndexncipidloader-1.0.2.tar.gz", "has_sig": false, "md5_digest": "2bacb4704d411aa5daa5d6d02e4f4a1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108345, "upload_time": "2019-05-24T22:44:44", "url": "https://files.pythonhosted.org/packages/01/00/3136bf026a1fc64e8a03ed5ed878a7069cb0990a4d0a5e7b9b2a691097ad/ndexncipidloader-1.0.2.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "62c64b982b66ba06292f42a7ce7cbfff", "sha256": "d8f91b471291077be04fdafa3f1b2cd0a0593d3eb27d42b08e22437106b2e55d" }, "downloads": -1, "filename": "ndexncipidloader-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "62c64b982b66ba06292f42a7ce7cbfff", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 113929, "upload_time": "2019-06-10T16:42:25", "url": "https://files.pythonhosted.org/packages/cc/50/b845908715103d7959b20ec156529677e5c3a14008305fe29741361599a5/ndexncipidloader-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3f34c18c49e1dee3413e77afef208cdd", "sha256": "b919a0515519f757f24a06917ad444a6b93d311d2a2bf275eeb3906959b0fb19" }, "downloads": -1, "filename": "ndexncipidloader-1.1.0.tar.gz", "has_sig": false, "md5_digest": "3f34c18c49e1dee3413e77afef208cdd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108599, "upload_time": "2019-06-10T16:42:27", "url": "https://files.pythonhosted.org/packages/fb/a6/7a142fe2a68443bf8bf7c2324e6353c4ab37f517b31bcfd52ee7e7eb9e4c/ndexncipidloader-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "be369e40e000349ed7c28de18f8c14d6", "sha256": "50fe47f91384c9cddeb27f0529d11937b0ddde0653a5cab504a342227fcb91f9" }, "downloads": -1, "filename": "ndexncipidloader-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "be369e40e000349ed7c28de18f8c14d6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 114011, "upload_time": "2019-06-11T22:23:59", "url": "https://files.pythonhosted.org/packages/8a/bf/125c44afc4a28175d5796bc46f1c68e499d898a560cb3b3e888037a2f7f3/ndexncipidloader-1.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1846124d9ff224966828ff4d69f1f357", "sha256": "cd965e977f4c20ba51b4196f79451b38563732741fb946a91f2354944a26a871" }, "downloads": -1, "filename": "ndexncipidloader-1.2.0.tar.gz", "has_sig": false, "md5_digest": "1846124d9ff224966828ff4d69f1f357", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108839, "upload_time": "2019-06-11T22:24:01", "url": "https://files.pythonhosted.org/packages/52/bd/ac3cc6b702540f7aa9a12d8f63f8f403e9acde420fc9f708f4a57d4c6695/ndexncipidloader-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "ed78843f4d595a51eebe4f20e42e3b9d", "sha256": "b1150f3b94ed208aef879bae5b682198d43a47764e66393d81e320efa88cf66f" }, "downloads": -1, "filename": "ndexncipidloader-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ed78843f4d595a51eebe4f20e42e3b9d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 114120, "upload_time": "2019-06-12T23:37:49", "url": "https://files.pythonhosted.org/packages/0e/a6/765e75acdf6686152929af8c2a8822a4c98e1937ddbb6645c189cd946ce3/ndexncipidloader-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "33306116aff3aa5cbf07a8e2c3b0bebe", "sha256": "bb00196dcc64ae864e8b29b68e3010e824432aba9e97bca9af538d04ddfa8409" }, "downloads": -1, "filename": "ndexncipidloader-1.3.0.tar.gz", "has_sig": false, "md5_digest": "33306116aff3aa5cbf07a8e2c3b0bebe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108992, "upload_time": "2019-06-12T23:37:51", "url": "https://files.pythonhosted.org/packages/e2/29/2c2b6dcfae7e24bde2596facce5ee3d66e050c1ee1f165427e24e23c955a/ndexncipidloader-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "047e0497e391005985384d04b2895f86", "sha256": "2dda62ad78df53d6d91069f78f2d76d969edfd9146b74cb572f542610e703c1b" }, "downloads": -1, "filename": "ndexncipidloader-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "047e0497e391005985384d04b2895f86", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 114776, "upload_time": "2019-06-13T23:34:43", "url": "https://files.pythonhosted.org/packages/88/d9/f1a03de04399e70ee441b5ba4f747599aaa915e927c255efe2cf2d3655d9/ndexncipidloader-1.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4dcdf3f8e9f4e34676d9633cf460c5aa", "sha256": "1c8d29ad3d87eec6b259700a85f7a663689913b355ec69fde396d5a51de03532" }, "downloads": -1, "filename": "ndexncipidloader-1.4.0.tar.gz", "has_sig": false, "md5_digest": "4dcdf3f8e9f4e34676d9633cf460c5aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109697, "upload_time": "2019-06-13T23:34:45", "url": "https://files.pythonhosted.org/packages/90/2e/1256fb56e4a5fd966023261fb144b265479749e62caeca27e7cb3020b39f/ndexncipidloader-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "17d6a30eb6284c2b8456acd31ee6e07f", "sha256": "79d20ffebe0b68592cfefe8a95b67881454915140b2e260fe53b4e98b3619e7e" }, "downloads": -1, "filename": "ndexncipidloader-1.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "17d6a30eb6284c2b8456acd31ee6e07f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 114027, "upload_time": "2019-06-29T00:55:25", "url": "https://files.pythonhosted.org/packages/5b/99/a06072101bdaa37433dc574fe7c0bb778484dee73827bd8e082945935909/ndexncipidloader-1.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d2124b972bb68749167a330e8e831060", "sha256": "ff4775f66d58c5cef452525749f751fd58975e2056c898fc2dd84a83998a9e07" }, "downloads": -1, "filename": "ndexncipidloader-1.5.0.tar.gz", "has_sig": false, "md5_digest": "d2124b972bb68749167a330e8e831060", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109072, "upload_time": "2019-06-29T00:55:27", "url": "https://files.pythonhosted.org/packages/81/4f/f1f86e00f51cb91bd416a249598dc153427b1e1cfa83e9d1b8673c33a3e3/ndexncipidloader-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "78a9ea9174c0ef61565013adf2836eba", "sha256": "75b63e683efd84aaa6d2a4e82e0f609cff628e0f4cf8e2e6eced47f66a8bf77b" }, "downloads": -1, "filename": "ndexncipidloader-1.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "78a9ea9174c0ef61565013adf2836eba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 114061, "upload_time": "2019-07-09T17:27:16", "url": "https://files.pythonhosted.org/packages/ea/74/78b6c47e70c0a0a0b2ecb376008bf7d235544750c4659afbdfdb7454102c/ndexncipidloader-1.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "91ef780f98754708c9273aa22ac47475", "sha256": "3121af42b648e7518b7b78d1bcb1a2bcc74d4e146db93c206a84334f23e3e6a9" }, "downloads": -1, "filename": "ndexncipidloader-1.5.1.tar.gz", "has_sig": false, "md5_digest": "91ef780f98754708c9273aa22ac47475", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109182, "upload_time": "2019-07-09T17:27:19", "url": "https://files.pythonhosted.org/packages/bb/f7/3d311622c4c0dd961f46668f3d32a070871d64eed3a541258292b30fb573/ndexncipidloader-1.5.1.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "b2593afe2e767aee0181798f29517794", "sha256": "80a23b4d65f941881cbd34e81f0a377de6bdc5ecf4fca6a5579cd0bd01b75da6" }, "downloads": -1, "filename": "ndexncipidloader-1.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b2593afe2e767aee0181798f29517794", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 114511, "upload_time": "2019-07-09T18:04:18", "url": "https://files.pythonhosted.org/packages/3c/3f/e68305741e9cd62d0df42f0880ccc29bcd9a349c18ce050a38931ea823b4/ndexncipidloader-1.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "786f1e5c2db4ccdd1cf4be1697ee2199", "sha256": "6fe868b0ad8b8f58603e95ee9c05a0dc95364c4735976f7f65ffb6442fa4c565" }, "downloads": -1, "filename": "ndexncipidloader-1.6.0.tar.gz", "has_sig": false, "md5_digest": "786f1e5c2db4ccdd1cf4be1697ee2199", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109615, "upload_time": "2019-07-09T18:04:20", "url": "https://files.pythonhosted.org/packages/64/4d/d3c0a62fd03e27c814d05d9806c09bc6d8e11d68e7288d1c5836c60b7417/ndexncipidloader-1.6.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "05d3b2650903b598dcd51f70ab8a69e6", "sha256": "1cb19e6f3b98efac2c67a2993fa72c4be86d23d1a35a6256f19a8cef79d16016" }, "downloads": -1, "filename": "ndexncipidloader-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "05d3b2650903b598dcd51f70ab8a69e6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 114143, "upload_time": "2019-07-16T23:26:02", "url": "https://files.pythonhosted.org/packages/54/87/dc4472d4a46e83726caee5665c81071b9a531c256fbb1dee305e9159e738/ndexncipidloader-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8a013fcd93aa83d52e36386f30561780", "sha256": "8fbe2b77ce033370bd0e643fbe2abe73e5996d19e4947b44d698b3cf8f9d698c" }, "downloads": -1, "filename": "ndexncipidloader-2.0.0.tar.gz", "has_sig": false, "md5_digest": "8a013fcd93aa83d52e36386f30561780", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108664, "upload_time": "2019-07-16T23:26:04", "url": "https://files.pythonhosted.org/packages/27/d6/c74fb3e133d083dec7ad5a7c705ca553338b5737aef247334a15b1fb45e1/ndexncipidloader-2.0.0.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "a3c91a6990f80e3a2fcd39a632e8f6e5", "sha256": "b4dc712e7584fc54b3107883ed103db4d09f484aff7f06174a565cd1d59e1dab" }, "downloads": -1, "filename": "ndexncipidloader-3.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a3c91a6990f80e3a2fcd39a632e8f6e5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 114485, "upload_time": "2019-08-02T19:19:05", "url": "https://files.pythonhosted.org/packages/b6/2e/5021b0eabdd9ec034a5e37fcd6d4d53f605d76b16131e8fff7aaaac904f6/ndexncipidloader-3.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d0dbf8ff75ca1504271e0d23bacf5842", "sha256": "195fe7af4e673192e4edfd06deff0f6b1c2c4ede4a9a404a827cf5a2171acb9f" }, "downloads": -1, "filename": "ndexncipidloader-3.0.0.tar.gz", "has_sig": false, "md5_digest": "d0dbf8ff75ca1504271e0d23bacf5842", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109220, "upload_time": "2019-08-02T19:19:07", "url": "https://files.pythonhosted.org/packages/2d/c8/bcf82078168b968bb6848fff2e1b6c8d13a344f745d0e4b27bd8a044ee43/ndexncipidloader-3.0.0.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "ee5e57f57bf52e18b3b271a654dcace5", "sha256": "ba1b4b1d68d628bb39b40a1684875622451b17504d6848b476f611ed194673a4" }, "downloads": -1, "filename": "ndexncipidloader-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ee5e57f57bf52e18b3b271a654dcace5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 115900, "upload_time": "2019-09-11T16:40:38", "url": "https://files.pythonhosted.org/packages/a1/f8/d9b8d66a352dd5a7f741c3f00d5364fa90faa489b4044f576185ca22418e/ndexncipidloader-3.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "298886273bdab55b8bee6edf8c602434", "sha256": "a31f1a9e8bca8e092dc96181c13c8919194c56c9f01a46813447b62cbc146406" }, "downloads": -1, "filename": "ndexncipidloader-3.1.0.tar.gz", "has_sig": false, "md5_digest": "298886273bdab55b8bee6edf8c602434", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110453, "upload_time": "2019-09-11T16:40:40", "url": "https://files.pythonhosted.org/packages/fd/55/74a26b0b3f35c983e79896b9b143aca483ef1849d260bb9daec295508349/ndexncipidloader-3.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ee5e57f57bf52e18b3b271a654dcace5", "sha256": "ba1b4b1d68d628bb39b40a1684875622451b17504d6848b476f611ed194673a4" }, "downloads": -1, "filename": "ndexncipidloader-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ee5e57f57bf52e18b3b271a654dcace5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 115900, "upload_time": "2019-09-11T16:40:38", "url": "https://files.pythonhosted.org/packages/a1/f8/d9b8d66a352dd5a7f741c3f00d5364fa90faa489b4044f576185ca22418e/ndexncipidloader-3.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "298886273bdab55b8bee6edf8c602434", "sha256": "a31f1a9e8bca8e092dc96181c13c8919194c56c9f01a46813447b62cbc146406" }, "downloads": -1, "filename": "ndexncipidloader-3.1.0.tar.gz", "has_sig": false, "md5_digest": "298886273bdab55b8bee6edf8c602434", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110453, "upload_time": "2019-09-11T16:40:40", "url": "https://files.pythonhosted.org/packages/fd/55/74a26b0b3f35c983e79896b9b143aca483ef1849d260bb9daec295508349/ndexncipidloader-3.1.0.tar.gz" } ] }