-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
79 lines (72 loc) · 2.29 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Required python packages to generate the documentation
# * mkdocs
# * mkdocs-material
# * pygments
# * pymdown-extensions
# * mknotebooks
# Project information
site_name: 'pycoMeth'
site_description: 'Python package for nanopore DNA methylation analysis downstream to Nanopolish'
site_author: 'Adrien Leger'
site_url: 'https://a-slide.github.io/pycoMeth/'
# Repository
repo_name: 'a-slide/pycoMeth'
repo_url: 'https://github.com/a-slide/pycoMeth'
# Copyright
copyright: 'Copyright © 2019 Adrien Leger'
# Navigation menu
nav:
- Home: index.md
- Installation instructions: installation.md
- CpG_Aggregate Usage:
- Using CpG_Aggregate: CpG_Aggregate/usage.md
- jupyter API usage: CpG_Aggregate/API_usage.ipynb
- Command line usage: CpG_Aggregate/CLI_usage.ipynb
- Interval_Aggregate Usage:
- Using Interval_Aggregate: Interval_Aggregate/usage.md
- jupyter API usage: Interval_Aggregate/API_usage.ipynb
- Command line usage: Interval_Aggregate/CLI_usage.ipynb
- Meth_Comp Usage:
- Using Meth_Comp: Meth_Comp/usage.md
- jupyter API usage: Meth_Comp/API_usage.ipynb
- Command line usage: Meth_Comp/CLI_usage.ipynb
- Comp_Report Usage:
- Using Comp_Report: Comp_Report/usage.md
- jupyter API usage: Comp_Report/API_usage.ipynb
- Command line usage: Comp_Report/CLI_usage.ipynb
- CGI_Finder Usage:
- Using CGI_Finder: CGI_Finder/usage.md
- jupyter API usage: CGI_Finder/API_usage.ipynb
- Command line usage: CGI_Finder/CLI_usage.ipynb
- Contributing: contributing.md
- Code of conduct: code_of_conduct.md
- Licence: licence.md
- Changelog: changelog.md
# Theme customization
theme:
name: 'material'
highlightjs: true
font: false
markdown_extensions:
- admonition
- codehilite
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink:
repo_url_shorthand: true
user: a-slide
repo: pycoMeth
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- mknotebooks