Metadata-Version: 2.1
Name: ndexgenehancerloader
Version: 0.1.0
Summary: Loads GeneHancer database to NDEx
Home-page: https://github.com/ceofy/ndexgenehancerloader
Author: Sophie Liu
Author-email: sol015@ucsd.edu
License: MIT license
Keywords: ndexgenehancerloader
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: ndex2
Requires-Dist: ndexutil

==============================
NDEx GeneHancer Content Loader
==============================


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

.. image:: https://img.shields.io/travis/ceofy/ndexgenehancerloader.svg
        :target: https://travis-ci.org/ceofy/ndexgenehancerloader

.. image:: https://readthedocs.org/projects/ndexgenehancerloader/badge/?version=latest
        :target: https://ndexgenehancerloader.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status




Loads GeneHancer database to NDEx


* Free software: MIT license
* Documentation: https://ndexgenehancerloader.readthedocs.io.



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

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

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

* Python 3.3+

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

.. code-block::

   git clone https://github.com/ceofy/ndexgenehancerloader
   cd ndexgenehancerloader
   make dist
   pip install dist/ndexloadgenehancer*whl


Run **make** command with no arguments to see other build/deploy options including creation of Docker image 

.. code-block::

   make

Output:

.. code-block::

   clean                remove all build, test, coverage and Python artifacts
   clean-build          remove build artifacts
   clean-pyc            remove Python file artifacts
   clean-test           remove test and coverage artifacts
   lint                 check style with flake8
   test                 run tests quickly with the default Python
   test-all             run tests on every Python version with tox
   coverage             check code coverage quickly with the default Python
   docs                 generate Sphinx HTML documentation, including API docs
   servedocs            compile the docs watching for changes
   testrelease          package and upload a TEST release
   release              package and upload a release
   dist                 builds source and wheel package
   install              install the package to the active Python's site-packages
   dockerbuild          build docker image and store in local repository
   dockerpush           push image to dockerhub


Configuration
-------------

The **ndexloadgenehancer.py** requires a configuration file in the following format be created.
The default path for this configuration is :code:`~/.ndexutils.conf` but can be overridden with
:code:`--conf` flag.

**Format of configuration file**

.. code-block::

    [<value in --profile (default ndexgenehancerloader)>]

    user = <NDEx username>
    password = <NDEx password>
    server = <NDEx server(omit http) ie public.ndexbio.org>

**Example configuration file**

.. code-block::

    [ndexgenehancerloader_dev]

    user = joe123
    password = somepassword123
    server = dev.ndexbio.org


Needed files
------------

**TODO:** Add description of needed files


Usage
-----

For information invoke :code:`ndexloadgenehancer.py -h`

**Example usage**

**TODO:** Add information about example usage

.. code-block::

   ndexloadgenehancer.py # TODO Add other needed arguments here


Via Docker
~~~~~~~~~~~~~~~~~~~~~~

**Example usage**

**TODO:** Add information about example usage


.. code-block::

   docker run -v `pwd`:`pwd` -w `pwd` ceofy/ndexgenehancerloader:0.1.0 ndexloadgenehancer.py --conf conf # TODO Add other needed arguments here


Credits
-------

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
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
.. _NDEx: http://www.ndexbio.org


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

0.1.0 (2019-10-23)
------------------

* First release on PyPI.


