forked from tleonardi/nanocompore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
67 lines (60 loc) · 1.72 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
# Required python packages to generate the documentation
# * mkdocs
# * mkdocs-material
# * pygments
# * pymdown-extensions
# * mknotebooks
# Project information
site_name: 'Nanocompore'
site_description: 'Compare nanopore signal to find modifications'
site_author: 'Adrien Leger & Tommaso Leonardi'
site_url: 'http://nanocompore.rna.rocks'
# Repository
repo_name: 'tleonardi/nanocompore'
repo_url: 'https://github.com/tleonardi/nanocompore'
# Copyright
copyright: 'Copyright © 2019 Adrien Leger & Tommaso Leonardi'
# Navigation menu
nav:
- Home: index.md
- Installation instructions: installation.md
- Data preparation: data_preparation.md
- Usage:
- How to use Nanocompore: usage.md
- Compare samples with SampComp: demo/SampComp_usage.ipynb
- Generate plots and tables with SampCompDB: demo/SampCompDB_usage.ipynb
- Generate simulated reads: demo/SimReads_usage.ipynb
- Alternative and complementary packages: alternative.md
- Citing: citing.md
- 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: tleonardi
repo: nanocompore
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- mknotebooks