-
Notifications
You must be signed in to change notification settings - Fork 12
/
mkdocs.yml
56 lines (53 loc) · 1.41 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
site_name: cell2cell
site_description: "Python package to infer cell-cell interactions and communication from gene expression of interacting proteins."
theme:
name: readthedocs
highlightjs: true
repo_url: https://github.com/earmingol/cell2cell
plugins:
- search
- mkdocs-jupyter:
execute: false
include: ["*.ipynb"]
include_source: True
#ignore_h1_titles: True
- mkdocstrings:
watch:
- cell2cell
default_handler: python
handlers:
python:
options:
docstring_style: sphinx
markdown_extensions:
- def_list
- attr_list
- admonition
- codehilite
- pymdownx.tasklist:
custom_checkbox: true
- md_in_html
- pymdownx.superfences
- pymdownx.betterem
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
nav:
- "Home": index.md
- "API Documentation": documentation.md
- "cell2cell Tutorials":
- tutorials/Toy-Example-BulkPipeline.ipynb
- tutorials/Toy-Example-SingleCellPipeline.ipynb
- "Tensor-cell2cell Tutorials":
- tutorials/ASD/01-Tensor-Factorization-ASD.ipynb
- tutorials/ASD/02-Factor-Specific-ASD.ipynb
- tutorials/ASD/03-GSEA-ASD.ipynb
- tutorials/Tensor-cell2cell-Spatial.ipynb
- tutorials/GPU-Example.ipynb