-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
161 lines (151 loc) · 4.76 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
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
site_name: eds-scikit
repo_url: https://github.com/aphp/eds-scikit
repo_name: eds-scikit
theme:
name: material
custom_dir: mkdocs_theme
palette:
- scheme: slate
toggle:
icon: material/brightness-7
name: Switch to light mode
- scheme: default
toggle:
icon: material/brightness-4
name: Switch to dark mode
logo: _static/scikit_logo.svg
favicon: _static/scikit_logo.svg
features:
- header.autohide
- navigation.tracking
- navigation.instant
- navigation.indexes
- navigation.top
- content.code.annotate
# - announce.dismiss
nav:
- index.md
- Understanding eds-scikit:
- project_description.md
- A gentle demo: functionalities/generic/introduction.ipynb
- Functionalities:
- Connectors: functionalities/generic/io.ipynb
- Phenotyping:
- The `Phenotype` class: functionalities/phenotyping/base.md
- Available phenotypes:
- functionalities/phenotyping/phenotypes/cancer.md
- functionalities/phenotyping/phenotypes/diabetes.md
- functionalities/phenotyping/phenotypes/suicide_attempt.md
- functionalities/phenotyping/phenotypes/psychiatric_disorder.md
- Patient's Course:
- ICU: functionalities/patients-course/is_icu.md
- Emergency Units: functionalities/patients-course/is_emergency.md
- Visit merging: functionalities/patients-course/visit_merging.md
- Consultation dates: functionalities/patients-course/consultation_dates.md
- OMOP Teva:
- functionalities/omop-teva/index.md
- functionalities/omop-teva/quick-use-omop.md
# - functionalities/omop-teva/quick-use-general.md
- functionalities/omop-teva/configuration-omop.md
- functionalities/omop-teva/custom-teva.md
- functionalities/omop-teva/omop-teva-example.md
# - functionalities/omop-teva/detailed-use-omop.md
- Biology:
- functionalities/biology/index.md
- functionalities/biology/quick-use.md
- functionalities/biology/visualization.md
- functionalities/biology/preparing-measurement.md
- functionalities/biology/exploring-relationship.md
- functionalities/biology/concepts_sets.md
- functionalities/biology/about_measurement.md
- Plotting:
- Event sequence: functionalities/plotting/event_sequences.md
- Generating inclusion/exclusion flowchart: functionalities/plotting/flowchart.ipynb
- Age pyramid: functionalities/plotting/age_pyramid.md
- Recipes:
- Saving small cohorts locally: recipes/small-cohorts.ipynb
# - Cross-tagging concepts between two DataFrames: recipes/diabetes.ipynb
- Resources:
- A note on private resources: datasets/private-resources.md
- Biology:
- Concept sets: datasets/concepts-sets.md
- Care sites:
- Hierarchy: datasets/care-site-hierarchy.md
- Emergency: datasets/care-site-emergency.md
- Synthetic data: datasets/synthetic-data.md
- Code Reference: reference/
- contributing.md
- changelog.md
extra:
version:
provider: mike
default: latest
extra_css:
- _static/extra.css
- _static/cards.css
- _static/termynal/termynal.css
extra_javascript:
- https://cdn.jsdelivr.net/npm/vega@5
- https://cdn.jsdelivr.net/npm/vega-lite@5
- https://cdn.jsdelivr.net/npm/vega-embed@6
- _static/extra.js
- _static/termynal/termynal.js
plugins:
- search
- charts
- markdown-filter
- macros:
module_name: docs/macros
- bibtex:
#bib_file: "docs/references.bib"
bib_dir: "./eds_scikit"
- gen-files:
scripts:
- docs/generate_reference.py
- docs/generate_development.py
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
docstring_section_style: spacy
show_signature_annotations: true
heading_level: 3
members_order: source
show_root_toc_entry: false
separate_signature: true
merge_init_into_class: true
- mknotebooks
- literate-nav:
nav_file: SUMMARY.md
- mike
- autorefs
- glightbox:
max_preview_lines: 10
skip_classes:
- doc
hooks:
- docs/scripts/plugin.py
markdown_extensions:
- admonition
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences:
custom_fences:
- name: vegalite
class: vegalite
format: !!python/name:mkdocs_charts_plugin.fences.fence_vegalite
- pymdownx.snippets:
base_path: ['docs/', '.']
check_paths: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji # noqa
emoji_generator: !!python/name:materialx.emoji.to_svg # noqa
- footnotes
- md_in_html
- attr_list
- pymdownx.details
- codehilite
- docs.scripts.cards