-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathmkdocs.yml
More file actions
183 lines (173 loc) · 5.75 KB
/
mkdocs.yml
File metadata and controls
183 lines (173 loc) · 5.75 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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
site_name: HealthChain 💫 🏥
site_description: Simplify prototyping and testing NLP applications in a healthcare context.
site_author: Jennifer Jiang-Kells
# Repository
repo_name: dotimplement/healthchain
repo_url: https://github.com/dotimplement/healthchain
nav:
- Home: index.md
- Getting Started:
- Installation: installation.md
- Quickstart: quickstart.md
- CLI: cli.md
- Licence: distribution.md
- Tutorials:
- tutorials/index.md
- ClinicalFlow Tutorial:
- Introduction: tutorials/clinicalflow/index.md
- Setup: tutorials/clinicalflow/setup.md
- FHIR Basics: tutorials/clinicalflow/fhir-basics.md
- Build Pipeline: tutorials/clinicalflow/pipeline.md
- Create Gateway: tutorials/clinicalflow/gateway.md
- Test with Sandbox: tutorials/clinicalflow/testing.md
- Next Steps: tutorials/clinicalflow/next-steps.md
- Cookbook:
- cookbook/index.md
- Setup FHIR Sandbox: cookbook/setup_fhir_sandboxes.md
- Multi-Source Data Integration: cookbook/multi_ehr_aggregation.md
- Automated Clinical Coding: cookbook/clinical_coding.md
- Discharge Summarizer: cookbook/discharge_summarizer.md
- ML Model Deployment: cookbook/ml_model_deployment.md
- Format Conversion: cookbook/format_conversion.md
- Docs:
- Welcome: reference/index.md
- Configuration: reference/config.md
- Gateway:
- Overview: reference/gateway/gateway.md
- HealthChainAPI: reference/gateway/api.md
- FHIR Gateway: reference/gateway/fhir_gateway.md
- Events: reference/gateway/events.md
- Protocols:
- CDS Hooks: reference/gateway/cdshooks.md
- SOAP/CDA: reference/gateway/soap_cda.md
- I/O:
- Containers:
- Overview: reference/io/containers/containers.md
- Document: reference/io/containers/document.md
- Dataset: reference/io/containers/dataset.md
- Adapters:
- Overview: reference/io/adapters/adapters.md
- CDA Adapter: reference/io/adapters/cdaadapter.md
- CDS FHIR Adapter: reference/io/adapters/cdsfhiradapter.md
- Mappers:
- Overview: reference/io/mappers/mappers.md
- FHIR Feature Mapper: reference/io/mappers/fhir_feature.md
- Pipeline:
- Overview: reference/pipeline/pipeline.md
- Components:
- Overview: reference/pipeline/components/components.md
- CdsCardCreator: reference/pipeline/components/cdscardcreator.md
- FHIRProblemListExtractor: reference/pipeline/components/fhirproblemextractor.md
- Prebuilt Pipelines:
- Medical Coding: reference/pipeline/prebuilt_pipelines/medicalcoding.md
- Summarization: reference/pipeline/prebuilt_pipelines/summarization.md
- Integrations:
- Overview: reference/pipeline/integrations/integrations.md
- Interoperability:
- Overview: reference/interop/interop.md
- Engine: reference/interop/engine.md
- Configuration: reference/interop/configuration.md
- Templates: reference/interop/templates.md
- Mappings: reference/interop/mappings.md
- Parsers: reference/interop/parsers.md
- Generators: reference/interop/generators.md
- Working with xmltodict: reference/interop/xmltodict.md
- In Development: reference/interop/experimental.md
- Utilities:
- FHIR Helpers: reference/utilities/fhir_helpers.md
- Sandbox: reference/utilities/sandbox.md
- Data Generator: reference/utilities/data_generator.md
- API Reference:
- api/index.md
- api/pipeline.md
- api/component.md
- api/containers.md
- api/adapters.md
- api/cds_hooks.md
- api/sandbox.md
- api/interop.md
- api/fhir_helpers.md
- Community:
- community/index.md
copyright: dotimplement
theme:
name: material
custom_dir: docs/overrides/
favicon: assets/images/healthchain_logo.png
logo: assets/images/healthchain_logo.png
icon:
repo: fontawesome/brands/github
features:
- content.code.copy
- navigation.expand
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.footer
- navigation.instant
- header.autohide
- announce.dismiss
- search.suggest
- search.highlight
palette:
- scheme: default
primary: white
accent: blue
toggle:
icon: material/white-balance-sunny
name: Switch to dark mode
- scheme: slate
primary: custom
accent: blue
toggle:
icon: material/weather-night
name: Switch to light mode
# font:
# text: Roboto
# Additional configuration
extra:
analytics:
provider: google
property: !ENV GOOGLE_ANALYTICS_TAG
# Extensions
markdown_extensions:
- admonition
- tables
- def_list
- attr_list
- md_in_html:
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
noclasses: True
pygments_style: material
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
extra_css:
- stylesheets/extra.css
- stylesheets/welcome.css
extra_javascript:
- javascripts/cookbook-filter.js
plugins:
- blog
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_submodules: true
heading_level: 2
docstring_section_style: spacy
- search
# - section-index
# - social:
# cards_layout_options:
# color: #173a58