Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add a new function dotplot for visualizing enrichr/gsea results #8

Merged
merged 1 commit into from
Sep 13, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The main documentation for GSEAPY can be found at https://pythonhosted.org/gseap

An example to use gseapy, please click here: `Example <http://pythonhosted.org/gseapy/gseapy_example.html>`_

**Release notes** : https://github.com/BioNinja/gseapy/releases

GSEAPY is a python wrapper for **GSEA** and **Enrichr**.
--------------------------------------------------------------------------------------------
Expand All @@ -49,6 +49,7 @@ The full ``GSEA`` is far too extensive to describe here; see
`GSEA <http://www.broadinstitute.org/cancer/software/gsea/wiki/index.php/Main_Page>`_ documentation for more information.



Why GSEAPY
-----------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions gseapy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#
from .gsea import call, replot, prerank

from .plot import dotplot, gsea_plot
from .enrichr import enrichr, get_libary_name

__version__='0.6.2'
__version__='0.7.0'


2 changes: 1 addition & 1 deletion gseapy/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Main function
# ------------------------------------

__version__ = '0.6.2'
__version__ = '0.7.0'

def main():
"""The Main function/pipeline for GSEAPY."""
Expand Down
Loading