-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
77 lines (73 loc) · 1.99 KB
/
mkdocs.yml
File metadata and controls
77 lines (73 loc) · 1.99 KB
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
site_name: rusty-dot
site_description: Fast dot plot comparisons of DNA sequences using an FM-Index
site_url: https://adamtaranto.github.io/rusty-dot/
repo_url: https://github.com/Adamtaranto/rusty-dot
repo_name: Adamtaranto/rusty-dot
theme:
name: material
palette:
- scheme: default
primary: teal
accent: teal
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: teal
accent: teal
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- search.suggest
- search.highlight
- content.code.copy
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
show_source: true
show_root_heading: true
show_root_full_path: false
show_category_heading: true
members_order: source
- mkdocs-jupyter:
execute: false
include_source: true
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- attr_list
- md_in_html
- tables
- toc:
permalink: true
nav:
- Home: index.md
- Installation: installation.md
- Development Guide: development.md
- Tutorials:
- Quick Start: tutorials/quickstart.ipynb
- Dotplot Visualization: tutorials/dotplot_tutorial.ipynb
- PAF Workflow: tutorials/paf_workflow.ipynb
- All-vs-All Between Two Indices: tutorials/all_vs_all_two_indices.ipynb
- Minimap2 PAF Visualization: tutorials/minimap2_paf_tutorial.ipynb
- API Reference:
- Overview: api/index.md
- SequenceIndex: api/sequence_index.md
- DotPlotter: api/dotplot.md
- CrossIndex: api/cross_index.md
- PAF I/O: api/paf_io.md
- Low-Level Functions: api/functions.md