Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.

Commit aad102e

Browse files
Merge pull request #98 from theislab/dev
Dev
2 parents 43fb819 + 6c6d1f0 commit aad102e

File tree

3 files changed

+24
-22
lines changed

3 files changed

+24
-22
lines changed

README.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

README.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
|PyPI| |Docs|
2+
3+
.. |PyPI| image:: https://img.shields.io/pypi/v/diffxpy.svg
4+
:target: https://pypi.org/project/diffxpy
5+
.. |Docs| image:: https://readthedocs.com/projects/diffxpy/badge/?version=latest
6+
:target: https://diffxpy.readthedocs.io
7+
8+
Fast and scalable differential expression analysis on single-cell RNA-seq data
9+
==============================================================================
10+
11+
diffxpy covers a wide range of differential expression analysis scenarios encountered in single-cell RNA-seq scenarios
12+
and integrates into scanpy_ workflows.
13+
Import diffxpy as `import diffxpy.api as de` to access the following differential expression analysis-related tools:
14+
15+
1. **differential expression analysis** in the module `de.test.*`
16+
2. **gene set enrichment analysis** based on differential expression calls in the module `de.enrich.*`
17+
18+
Refer to the documentation_ and the tutorials_ for details of these modules.
19+
20+
.. _scanpy: https://github.com/theislab/scanpy
21+
.. _documentation: https://diffxpy.rtfd.io/en/latest
22+
.. _tutorials: https://diffxpy.rtfd.io/en/latest/tutorials.html

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
author_email='david.fischer@helmholtz-muenchen.de, diffxpy@frhoelzlwimmer.de'
66
description="Fast and scalable differential expression analysis on single-cell RNA-seq data"
77

8-
with open("README.md", "r") as fh:
8+
with open("README.rst", "r") as fh:
99
long_description = fh.read()
1010

1111
setup(
@@ -21,7 +21,7 @@
2121
'scipy',
2222
'pandas',
2323
'patsy>=0.5.0',
24-
'batchglm>=0.6.0',
24+
'batchglm>=0.6.1',
2525
'xarray',
2626
'statsmodels',
2727
],

0 commit comments

Comments
 (0)