Skip to content

Commit d5fb091

Browse files
first new version of rtfd documentation - manual changes to .rst files
1 parent 8424434 commit d5fb091

File tree

3 files changed

+98
-17
lines changed

3 files changed

+98
-17
lines changed

docs/api/index.rst

Lines changed: 42 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,55 @@
1-
.. automodule:: diffxpy
1+
.. automodule:: diffxpy.api
22

33
API
44
===
55

6-
76
Import diffxpy's high-level API as::
87

9-
import diffxpy as de
8+
import diffxpy.api as de
9+
10+
Differential expression tests: test
11+
-----------------------------------
12+
13+
Run differential expression tests.
14+
15+
Single tests per gene
16+
~~~~~~~~~~~~~~~~~~~~~
17+
18+
.. autosummary::
19+
:toctree: .
20+
21+
test.two_sample
22+
test.wald
23+
test.lrt
24+
test.t_test
25+
test.wilcoxon
26+
27+
Multiple tests per gene
28+
~~~~~~~~~~~~~~~~~~~~~~~
1029

30+
.. autosummary::
31+
:toctree: .
32+
33+
test.pairwise
34+
test.versus_rest
35+
test.partition
36+
37+
38+
Gene set enrichment: enrich
39+
---------------------------
1140

12-
.. For visual quality control, see :func:`~scanpy.api.pl.highest_expr_gens` and
13-
.. :func:`~scanpy.api.pl.filter_genes_dispersion` in the :doc:`plotting API <plotting>`.
41+
Reference gene sets
42+
~~~~~~~~~~~~~~~~~~~
1443

1544
.. autosummary::
1645
:toctree: .
1746

18-
stats
19-
test_lrt
20-
test_pairwise
21-
test_t_test
22-
test_vsrest
23-
test_wald_loc
24-
test_wilcoxon
47+
enrich.RefSets
48+
49+
Enrichment tests
50+
~~~~~~~~~~~~~~~~
51+
52+
.. autosummary::
53+
:toctree: .
2554

55+
enrich.test

docs/examples.rst

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
.. automodule:: diffxpy.api
2+
3+
Examples
4+
========
5+
6+
Import diffxpy's high-level API as::
7+
8+
import diffxpy.api as de
9+
10+
Differential expression tests: test
11+
-----------------------------------
12+
13+
Run differential expression tests.
14+
15+
Single tests per gene
16+
~~~~~~~~~~~~~~~~~~~~~
17+
18+
.. autosummary::
19+
:toctree: .
20+
21+
single/likelihood_ratio_test.ipynb
22+
single/run_by_partition.ipynb
23+
single/t_test.ipynb
24+
single/test_chisq_distribution.ipynb
25+
single/wald_test.ipynb
26+
single/wilcoxon_test.ipynb
27+
28+
Multiple tests per gene
29+
~~~~~~~~~~~~~~~~~~~~~~~
30+
31+
.. autosummary::
32+
:toctree: .
33+
34+
versus_rest.ipynb
35+
pairwise.ipynb
36+
37+
38+
Gene set enrichment: enrich
39+
---------------------------
40+
41+
.. autosummary::
42+
:toctree: .
43+
44+
enrich.ipynb
45+
46+
47+
Integration with other packages
48+
-------------------------------
49+
50+
.. autosummary::
51+
:toctree: .
52+
53+
scanpy_integration.ipynb

docs/index.rst

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
.. batchglm documentation master file, created by
2-
sphinx-quickstart on Mon Jul 30 15:55:16 2018.
3-
You can adapt this file completely to your liking, but it should at least
4-
contain the root `toctree` directive.
1+
.. You can adapt this file completely to your liking, but it should at least
2+
contain the root `toctree` directive.
53
64
75
@@ -13,7 +11,7 @@ Welcome to diffxpy's documentation!
1311
:caption: Contents:
1412

1513
api/index
16-
.. examples
14+
examples
1715
.. basic_usage
1816
.. installation
1917
.. references

0 commit comments

Comments
 (0)