-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
160 lines (151 loc) · 5.03 KB
/
mkdocs.yml
File metadata and controls
160 lines (151 loc) · 5.03 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
site_name: MetaHQ Documentation
site_description: Query systems for accessing the MetaHQ database.
site_author: Parker Hicks, Faisal Alquaddoomi
site_url: https://krishnanlab.github.io/meta-hq/
repo_name: krishnanlab/meta-hq
repo_url: https://github.com/krishnanlab/meta-hq
edit_uri: blob/main/docs/
extra_css:
- stylesheets/extra.css
theme:
name: material
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
icon:
repo: fontawesome/brands/github
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [packages/core/src, packages/cli/src]
options:
docstring_style: google
show_source: false
show_root_heading: false
show_root_toc_entry: false
show_root_full_path: false
show_submodules: true
members_order: source
markdown_extensions:
- mkdocs-click
- pymdownx.highlight:
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
- pymdownx.tasklist:
custom_checkbox: true
- admonition
- pymdownx.details
- attr_list
- md_in_html
- tables
- toc:
permalink: true
toc_depth: 4
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Quick Start: getting-started/quickstart.md
- User Guide:
- Setup: user-guide/setup.md
- Search: user-guide/search.md
- Retrieve: user-guide/retrieve.md
- Validate: user-guide/validate.md
- Delete: user-guide/delete.md
- Contribute:
- Overview: contribute/index.md
- Annotations: contribute/annotations.md
- Code: contribute/code.md
- Developer Guide:
- Packages Overview: developer/index.md
- Development Setup: developer/setup.md
- Publish checklist: developer/checklist.md
- Packages:
- metahq-core:
- Query:
- Query: packages/core/api/query/query.md
- LongAnnotations: packages/core/api/query/long_anno.md
- ParsedEntry: packages/core/api/query/parsed.md
- UnParsedEntry: packages/core/api/query/unparsed.md
- Curations:
- Annotations: packages/core/api/curations/annotations.md
- Labels: packages/core/api/curations/labels.md
- Ids: packages/core/api/curations/ids.md
- Propagator: packages/core/api/curations/propagator.md
- Export:
- Annotations: packages/core/api/export/annotations.md
- Labels: packages/core/api/export/labels.md
- Search: packages/core/api/search.md
- Utilities:
- IO: packages/core/api/util/io.md
- Exceptions: packages/core/api/util/exceptions.md
- Helpers: packages/core/api/util/helpers.md
- Progress: packages/core/api/util/progress.md
- Supported: packages/core/api/util/supported.md
- Logger: packages/core/api/logger.md
- metahq-cli:
- Commands:
- Setup: packages/cli/commands/setup.md
- Search: packages/cli/commands/search.md
- Retrieve: packages/cli/commands/retrieve.md
- Validate: packages/cli/commands/validate.md
- Delete: packages/cli/commands/delete.md
- Builder: packages/cli/api/builder.md
- Retriever: packages/cli/api/retriever.md
- Retrieval Configs:
- QueryConfig: packages/cli/api/configs/query.md
- CurationConfig: packages/cli/api/configs/curation.md
- OutputConfig: packages/cli/api/configs/output.md
- Setup:
- Config: packages/cli/api/setup/config.md
- Downloader: packages/cli/api/setup/download.md
- About:
- Cite Us: about/citation.md
- Mission: about/mission.md
- License: about/license.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/krishnanlab/meta-hq
- icon: fontawesome/brands/python
link: https://pypi.org/project/metahq-cli/
extra_css:
- stylesheets/extra.css
copyright: Copyright © 2025 The Krishnan Lab