-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
65 lines (58 loc) · 1.56 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
site_name: Refget Specifications
site_url: https://ga4gh.github.io/refget
repo_url: https://github.com/ga4gh/refget
nav:
- Specifications:
- Sequences: sequences.md
- Sequence Collections: seqcol.md
- Detailed how-to guides:
- Compute a digest given a SeqCol: digest_from_collection.md
- Retrieve a SeqCol given a digest: sequences_from_digest.md
- Compare two sequence collections: compare_collections.md
- Other recipes: recipes.md
- Implementations:
- Python: implementation_python.md
- API: implementation_api.md
- Reference:
- Decision record: decision_record.md
- Contributing: contributing.md
copyright: GA4GH Large Scale Genomics Workstream, Seqcol team
home_link: null
navbar:
left:
- text: Specification
icon: fa-file-alt
href: specification
- text: Decision Record
icon: fa-history
href: decision_record
- text: Contributing
icon: fa-users
href: contributing
theme:
logo: img/seqcol_logo.svg
favicon: img/seqcol_logo.svg
name: material
features:
- header.autohide
- navigation.sections
- navigation.expand
- navigation.footer
# - navigation.indexes
- toc.follow
- content.action.edit
- content.action.view
# - navigation.tabs
- navigation.top
extra_css:
- stylesheets/extra.css
markdown_extensions:
- pymdownx.highlight:
use_pygments: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: "!!python/name:pymdownx.superfences.fence_code_format"
- toc:
toc_depth: 3