Metadata-Version: 2.1
Name: genomeshader
Version: 0.1.15
Requires-Dist: polars
Requires-Dist: holoviews
Requires-Dist: datashader
Requires-Dist: pyarrow >=14.0.1
Requires-Dist: pyparsing
License-File: LICENSE
Summary: Fast visualization of genomic data
Home-Page: https://github.com/broadinstitute/genomeshader
Author: Kiran V Garimella <kiran@broadinstitute.org>
Author-email: Kiran V Garimella <kiran@broadinstitute.org>
License: BSD 3-Clause
Description-Content-Type: text/x-rst; charset=UTF-8
Project-URL: Source Code, https://github.com/broadinstitute/genomeshader.git

genomeshader
""""""""""""

|GitHub release| |PyPI version genomeshader|

.. |GitHub release| image:: https://img.shields.io/github/release/broadinstitute/genomeshader.svg
   :target: https://github.com/broadinstitute/genomeshader/releases/

.. |PyPI version genomeshader| image:: https://img.shields.io/pypi/v/genomeshader.svg
   :target: https://pypi.python.org/pypi/genomeshader/

Genomeshader is a Rust-backed Python library for rapid visualization of read-level data spanning variants across huge numbers of samples. It is intended for use within Jupyter notebooks.

Documentation for the API can be found on the `documentation page <https://broadinstitute.github.io/genomeshader/>`_.

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

``pip`` is recommended for installation.

::

   pip install genomeshader 


Building from source
--------------------

To build from source (particularly for those interested in contributing to the code), follow the procedure below.

.. code-block:: bash

   # Clone repository.
   git clone https://github.com/broadinstitute/genomeshader.git
   cd genomeshader

   # Create a Python virtual environment and install Maturin, the tool that
   # will compile the Rust and Python code into a complete library.
   # For more information on Maturin, visit https://github.com/PyO3/maturin .
   python -mvenv venv
   . venv/bin/activate
   pip install maturin

   # Build the library (with release optimizations) and install it in
   # the currently active virtual environment.
   maturin develop --release

Supported platforms
-------------------

Genomeshader is compiled for Linux and MacOSX. Windows is not currently supported.

Getting help
------------

If you encounter bugs or have questions/comments/concerns, please file an issue on our `Github page <https://github.com/broadinstitute/genomeshader/issues>`_.

Developers' guide
-----------------

For information on contributing to Genomeshader development, visit our `developer documentation <DEVELOP.rst>`_.

