forked from xin-huang/sstar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
39 lines (39 loc) · 1.05 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
site_name: sstar
site_url: "https://sstar.readthedocs.io"
repo_url: "https://github.com/xin-huang/sstar"
edit_uri: ""
docs_dir: 'docs'
theme:
name: "material"
palette:
primary: cyan
accent: cyan
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: true
watch:
- sstar
markdown_extensions:
- extra
- tables
- fenced_code
- admonition
- codehilite
extra_javascript:
- 'https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML'
nav:
- Home: 'index.md'
- User Guide:
- Overview: 'userguide/overview.md'
- Calculate S* scores: 'userguide/score.md'
- Calculate quanitles of expected S*: 'userguide/quantile.md'
- Calculate significant S* score thresholds: 'userguide/threshold.md'
- Calculate source match rates: 'userguide/matchrate.md'
- Get candidate introgressed fragments: 'userguide/tract.md'
- Examples: 'examples.md'
- References: 'references.md'