forked from biocypher/biocypher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
164 lines (146 loc) · 5.34 KB
/
Copy pathmkdocs.yml
File metadata and controls
164 lines (146 loc) · 5.34 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
#==========================================================================================
#======= CONFIGURATION FILE FOR MKDOCS MATERIAL =======
#==========================================================================================
site_name: BioCypher
site_url: https://biocypher.org # URL where the webpage will be hosted, by default it it localhost
#======= Theme Settings =====
theme:
name: material
font:
text: Lato
code: Roboto Mono
logo: assets/img/logo-biocypher.png
favicon: assets/img/favicon_biocypher_32px.png
features:
- content.code.copy
- content.action.edit
- navigation.tabs
- navigation.instant
- navigation.footer
palette:
- scheme: default
primary: blue grey
accent: light blue
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- scheme: slate
primary: blue grey
accent: light blue
toggle:
icon: material/toggle-switch-off
name: Switch to light mode
#======= Website Navigation settings =====
nav:
- Home: index.md
- About:
- Project: biocypher-project/project.md
- Design philosophy: biocypher-project/design-philosophy.md
- Use Cases: biocypher-project/use-cases.md
- BioCypher + LLMs: biocypher-project/biochatter-integration.md
- R and Bioconductor: biocypher-project/r-bioc.md
- Get Started:
- Installation: installation.md
- Quickstart: learn/quickstart.md
- Learn:
- Tutorials:
- Basics: learn/tutorials/tutorial001_basics.md
- Handling Ontologies: learn/tutorials/tutorial002_handling_ontologies.md
- Adapters: learn/tutorials/tutorial003_adapters.md
- BioCypher and Pandas: learn/tutorials/pandas_tutorial.ipynb
- HowTo / FAQ:
- learn/guides/index.md
- Standalone Docker Image: learn/guides/htg001_standalone_docker_biocypher.md
- Explanations:
- learn/explanation/index.md
- About Adapters: learn/explanation/adapters.md
- About Ontologies: learn/explanation/ontologies.md
- Reference:
- Reference Index: reference/index.md
- API Documentation:
- reference/source/index.md
- BioCypher: reference/source/biocypher.md
- Output Writing: reference/source/output-write.md
- Output In-Memory: reference/source/output-in-memory.md
- Output Driver: reference/source/output-driver.md
- Download and Cache: reference/source/download-cache.md
- Ontology Handling: reference/source/ontology.md
- Graph Handling: reference/source/graph-handling.md
- Mapping and Translation: reference/source/translation.md
- Logging: reference/source/logging.md
- Miscellaneous Utility Functions: reference/source/utils.md
- BioCypher Configuration: reference/biocypher-config.md
- Output Configuration:
- Overview: reference/outputs/index.md
- Neo4j: reference/outputs/neo4j-output.md
- SQLite: reference/outputs/sqlite-output.md
- PostgreSQL: reference/outputs/postgresql-output.md
- NetworkX: reference/outputs/networkx-output.md
- Tabular Format: reference/outputs/tabular-output.md
- RDF: reference/outputs/rdf-output.md
- OWL: reference/outputs/owl-output.md
- ArangoDB: reference/outputs/arangodb-output.md
- Schema Configuration: reference/schema-config.md
- Community:
- Join Us: community/index.md
- Where to Start: community/contribute.md
- Contribute to the Documentation: community/contribute-docs.md
- Contribute to the Code Base: community/contribute-codebase.md
#======= Extension settings (sorted alphabetically) =====
markdown_extensions:
- admonition
- attr_list
- md_in_html
- neoteroi.timeline
#----- Python Markdown Extensions
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight: # Note: list of Pygments: https://pygments.org/docs/lexers/
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
#--------------- Configure the title to the Table of Contents
- toc:
title: On this page
#======= Plugins =====
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
heading_level: 3
- mkdocs-jupyter
- mike
repo_url: https://github.com/biocypher/biocypher
repo_name: biocypher/biocypher
edit_uri: edit/main/docs/
extra:
social:
- icon: simple/zulip
link: https://biocypher.zulipchat.com/
- icon: material/contacts
link: https://saezlab.org/
status:
new: Recently added
old: from Legacy webpage
under-dev: page under development
done: page that does not need modifications for now
version:
provider: mike
extra_css:
- assets/css/css-v1.1.0.css
- stylesheets/extra.css
copyright: © Copyright 2021-2025, BioCypher developers.