Metadata-Version: 2.1
Name: ndex-webapp-python-exporters
Version: 0.1.0rc1
Summary: Command line exporters written in Python used by the NDex REST service
Home-page: https://github.com/ndexbio/ndex_webapp_python_exporters
Author: Chris Churas
Author-email: churas.camera@gmail.com
License: BSD license
Keywords: ndex_webapp_python_exporters
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: argparse
Requires-Dist: ndex2

============================
ndex-webapp-python-exporters
============================


.. image:: https://img.shields.io/pypi/v/ndex_webapp_python_exporters.svg
        :target: https://pypi.python.org/pypi/ndex_webapp_python_exporters

.. image:: https://img.shields.io/travis/ndexbio/ndex_webapp_python_exporters.svg
        :target: https://travis-ci.org/ndexbio/ndex_webapp_python_exporters

.. image:: https://coveralls.io/repos/github/ndexbio/ndex_webapp_python_exporters/badge.svg?branch=master
        :target: https://coveralls.io/github/ndexbio/ndex_webapp_python_exporters?branch=master

Command line exporters written in Python used by the NDex REST service.

**Supported Exporters**

* `Graphml`_

Tools
-----

* **ndex_exporters.py** Takes file in `NDex CX`_ format and converts to format specified as a command line argument


Dependencies
------------

* `argparse <https://pypi.python.org/pypi/argparse>`_
* `ndex2 <https://pypi.org/project/ndex2/>`_

Compatibility
-------------

* Python 3.5+

Installation
------------


::

 pip install ndex_webapp_python_exporters

Or directly from repo (requires git)

::

 git clone https://github.com/ndexbio/ndex_webapp_python_exporters.git
 cd ndex_webapp_python_exporters
 python setup.py install

Example usage
-------------


The example below assumes **foo.cx** is a file in `NDex CX`_ format

::

 cat foo.cx | ndex_exporters.py graphml > foo.graphml

**NOTE:** For the above example, the network `Thyroid Cancer <http://www.ndexbio.org/#/network/54a9a35b-1e5f-11e8-b939-0ac135e8bacf>`_ can be downloaded
as a file named **foo.cx** in `NDex CX`_ format.



Credits
-------

* `Graphml`_ exporter derived from code developed by Cecilia Zhang

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
.. _`NDex CX`: http://www.home.ndexbio.org/data-model/
.. _`Graphml`: http://graphml.graphdrawing.org/


=======
History
=======

0.1.0 (2018-11-29)
------------------

* First release on PyPI.


