-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmkdocs.yml
More file actions
344 lines (331 loc) · 13.5 KB
/
mkdocs.yml
File metadata and controls
344 lines (331 loc) · 13.5 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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
site_name: "PEPkit: the bio data management toolkit"
theme:
logo: img/pep.png
favicon: img/pep.png
name: material
custom_dir: overrides
palette:
# # Palette toggle for dark mode
# - media: "(prefers-color-scheme: dark)"
# scheme: slate
# toggle:
# icon: material/brightness-4
# name: Switch to system preference
# # Palette toggle for light mode
# - media: "(prefers-color-scheme: light)"
# scheme: material
# toggle:
# icon: material/brightness-7
# name: Switch to dark mode
features:
- header.autohide
- navigation.sections
# - navigation.expand
- navigation.footer
- navigation.indexes
- toc.follow
- content.action.edit
- content.action.view
- content.code.copy
- navigation.tabs
- navigation.top
markdown_extensions:
- attr_list
- md_in_html
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
use_pygments: true
# - pymdownx.emoji:
# emoji_index: !!python/name:material.extensions.emoji.twemoji
# emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
extra_css:
- stylesheets/extra.css
extra:
generator: false # turn off theme link
copyright: >
<a class="" href="http://databio.org/">
<img src="https://databio.org/images/logo/logo_databio_long.svg"
style="height:60px;"
alt="Databio logo">
</a>
nav:
- PEP specification:
- Getting started:
- A simple example: spec/simple-example.md
- PEP specification: spec/specification.md
- Rationale: spec/rationale.md
- Detailed how-to guides:
- Specify multi-value attributes: spec/howto-multi-value-attributes.md
- Eliminate paths from table: spec/howto-eliminate-paths.md
- Remove genome from table: spec/howto-genome-id.md
- Store many projects in one file: spec/howto-amendments.md
- Create automatic groups: spec/howto-automatic-groups.md
- Mix & match amendments: spec/howto-mixmatch.md
- Import plus amendments: spec/howto-integrate.md
- Create a PEP from GEO/SRA: spec/howto-geofetch.md
- Validate a PEP: spec/howto-validate.md
- Implementations:
- "Python package: peppy": spec/peppy.md
- "R package: pepr": spec/pepr.md
- Reference:
- How to cite: citations.md
- Changelog: spec/changelog.md
- PEPkit usage statistics: statistics.md
- Support: https://github.com/pepkit/pepkit.github.io/issues
- Team and Contributing: spec/team.md
- Eido:
- Eido: eido/README.md
- Getting started:
- Install and configure: eido/install.md
- How-to guides:
- "Tutorial: eido in Python": eido/code/demo.md
- "Tutorial: eido in a shell": eido/code/cli.md
- Using eido filters: eido/filters.md
- Writing a custom filter: eido/writing-a-filter.md
- Writing a schema: eido/writing-a-schema.md
- Reference:
- How to cite: citations.md
- Example schemas: eido/example-schemas.md
- Eido Python API: eido/code/python-api.md
- Built-in filters API: eido/code/plugin-api-docs.md
- Support: https://github.com/pepkit/eido/issues
- Contributing: eido/contributing.md
- Changelog: eido/changelog.md
- GEOfetch:
- GEOfetch: geofetch/README.md
- Getting started:
- Install and configure: geofetch/install.md
- SRA convert: geofetch/sra-convert.md
- Tutorials:
- Tutorial for processed data: geofetch/code/processed-data-downloading.md
- Tutorial for raw data: geofetch/code/raw-data-downloading.md
- geofetch from within Python: geofetch/code/python-usage.md
- GSE Finder: geofetch/gse-finder.md
- How-to guides:
- Specifying samples to download: geofetch/file-specification.md
- Set SRA data download location: geofetch/howto-location.md
- Run SRA convert: geofetch/code/howto-sra-to-fastq.md
- Install prefetch: geofetch/howto-prefetch.md
- Reference:
- How to cite: citations.md
- API: geofetch/code/python-api.md
- Metadata output: geofetch/metadata-output.md
- CLI usage: geofetch/code/usage.md
- FAQ: geofetch/faq.md
- Support: http://github.com/pepkit/geofetch/issues
- Contributing: geofetch/contributing.md
- Changelog: geofetch/changelog.md
- Looper:
- Looper: looper/README.md
- Installation: looper/install.md
- Pipeline User Guide:
- User tutorial:
- Initiating a new looper project: looper/user-tutorial/initialize.md
- Using PEP to simplify metadata: looper/user-tutorial/metadata.md
- Configuring pipestat results: looper/user-tutorial/user-pipestat.md
- Running project-level pipelines: looper/user-tutorial/project-level-pipelines.md
- Configuring cluster computing: looper/user-tutorial/compute-settings.md
- Conclusion: looper/user-tutorial/conclusion.md
- Advanced user guide:
- Advanced run options: looper/advanced-guide/advanced-run-options.md
- Customizing compute settings: looper/advanced-guide/advanced-computing.md
- Advanced metadata features: looper/advanced-guide/advanced-metadata.md
- How-to recipes:
- Custom submission templates: looper/how-to/custom-submission-templates.md
- Running jobs in containers: looper/how-to/containers.md
- Using looper with bulker: looper/how-to/bulker.md
- Configure pipestat back-ends: looper/how-to/configure-pipestat-backends.md
- Using divvy: looper/using-divvy.md
- Link similar results: looper/how-to/link-objects.md
- Report images and complex objects: looper/how-to/report-objects.md
- Check status and rerun samples: looper/how-to/rerun.md
- Pipeline Developer Docs:
- Developer tutorial:
- Writing a pipeline interface: looper/developer-tutorial/writing-a-pipeline-interface.md
- Configuring a pipeline to use pipestat: looper/developer-tutorial/developer-pipestat.md
- Using pre-submission hooks: looper/developer-tutorial/pre-submission-hooks.md
- Pipeline interface specification: looper/developer-tutorial/pipeline-interface-specification.md
- Reference:
- CLI Usage: looper/usage.md
- Looper config file: looper/looper-config.md
- Divvy CLI: looper/divvy-cli.md
- API: looper/code/python-api.md
- How to cite: citations.md
- FAQ: looper/faq.md
- Support: looper/support.md
- Contributing: looper/contributing.md
- Changelog: looper/changelog.md
- PEPhub:
- PEPhub: pephub/README.md
- User guide:
- Getting started: pephub/user/getting-started.md
- Use a PEP in an existing pipeline: pephub/user/pipelines.md
- Validating PEPs: pephub/user/validation.md
- Version control: pephub/user/version-control.md
- Semantic search: pephub/user/semantic-search.md
- How to use views: pephub/user/views.md
- PEP of PEPs (POP): pephub/user/pops.md
- Accessing GEO metadata: pephub/user/geo.md
- PEPhub organization: pephub/user/organization.md
- PEPHubClient:
- PEPhubClient: pephub/user/pephubclient/README.md
- Quickstart: pephub/user/pephubclient/tutorial.md
- Python API: pephub/user/pephubclient/phc_usage.md
- Python API samples: pephub/user/pephubclient/phc_samples_usage.md
- Python API views: pephub/user/pephubclient/phc_views_usage.md
- Python API schemas: pephub/user/pephubclient/phc_schemas.md
- CLI usage: pephub/user/pephubclient/cli.md
- Changelog: pephub/user/pephubclient/changelog.md
- Developer guide:
- Setup: pephub/developer/setup.md
- Deployment: pephub/developer/deployment.md
- Development: pephub/developer/development.md
- Authentication: pephub/developer/authentication.md
- Authentication Device: pephub/developer/authentication-device.md
- Semantic search: pephub/developer/semantic-search.md
- Server settings: pephub/developer/server-settings.md
- Archiving namespaces: pephub/developer/tar_namespace.md
- PEPembed:
- PEPembed: pephub/developer/pepembed/README.md
- pepdbagent:
- pepdbagent: pephub/developer/pepdbagent/README.md
- Database version migration: pephub/developer/pepdbagent/database_version_migration.md
- Database tutorial: pephub/developer/pepdbagent/db_tutorial.md
- Changelog: pephub/developer/pepdbagent/changelog.md
- geopephub: pephub/developer/geopephub.md
- Reference:
- Schema registry: https://schema.databio.org
- How to cite: citations.md
- Changelog: pephub/changelog.md
- Peppy:
- Peppy: peppy/README.md
- Getting started:
- Installing and Hello World: peppy/hello-world.md
- How-to guides:
- How to initialize a Project: peppy/initialize.md
- How to use peppy: peppy/code/tutorial.md
- How to use subsample table: peppy/code/feature4_subsample_table.md
- How to use amendments: peppy/code/feature5_amend.md
- How to use append sample modifier: peppy/code/feature1_append.md
- How to use imply sample modifier: peppy/code/feature2_imply.md
- How to validate a PEP: peppy/validating.md
- Reference:
- Project models: peppy/models.md
- How to cite: citations.md
- API: peppy/code/python-api.md
- Support: peppy/support.md
- Contributing: peppy/contributing.md
- Changelog: peppy/changelog.md
- Pipestat:
- Pipestat: pipestat/README.md
- User guide:
- Quickstart: pipestat/code/api-quickstart.md
- Use Python API: pipestat/code/python-tutorial.md
- Use command line interface: pipestat/code/cli.md
- How-to guides:
- Install: pipestat/install.md
- Write a pipestat schema: pipestat/pipestat-schema.md
- Reporting pipeline status: pipestat/report_statuses.md
- Configure pipestat: pipestat/configuration.md
- Advanced:
- Multi pipelines and result files: pipestat/multi.md
- Report objects as results: pipestat/code/reporting-objects.md
- Summarize reported results: pipestat/summarize.md
- Reference:
- Terminology - Results and Record Identifiers: pipestat/results_records.md
- Backends: pipestat/backends.md
- CLI usage: pipestat/usage.md
- Configuration format: pipestat/config.md
- Testing configuration: pipestat/testing.md
- Environment variables: pipestat/env-vars.md
- Pipestat specification: pipestat/pipestat-specification.md
- Python API: pipestat/code/python-api.md
- Support: https://github.com/pepkit/pipestat/issues
- Contributing: pipestat/contributing.md
- How to cite: citations.md
- Changelog: pipestat/changelog.md
- Pypiper:
- Pypiper: pypiper/README.md
- Getting started:
- Philosophy: pypiper/philosophy.md
- Features at-a-glance: pypiper/features.md
- Hello world: pypiper/code/hello-world.md
- Developer guides:
- Building a basic pipeline: pypiper/code/basic-pipeline.md
- Using the run method: pypiper/advanced-run-method.md
- Automatic command-line arguments: pypiper/cli.md
- Configuring pipelines: pypiper/configuration.md
- Reporting statistics: pypiper/report.md
- Reporting statistics with pipestat: pypiper/pipestat.md
- Cleaning up intermediate files: pypiper/clean.md
- Best practices: pypiper/best-practices.md
- Toolkits:
- "NGSTk: the NGS toolkit": pypiper/ngstk_intro.md
- Reference:
- How to cite: citations.md
- Catalog of pipeline outputs: pypiper/outputs.md
- Pypiper API: pypiper/code/python-api.md
- NGSTk API: pypiper/code/ngstk-api.md
- FAQ: pypiper/faq.md
- Support: pypiper/support.md
- Contributing: pypiper/contributing.md
- Changelog: pypiper/changelog.md
- Yacman:
- Yacman: yacman/README.md
- Getting started:
- What is yacman?: yacman/README.md
- Tutorial: yacman/notebooks/tutorial.ipynb
- Upgrading to v1.0: yacman/upgrading.md
- Reference:
- How to cite: citations.md
- API: yacman/code/python-api.md
- Changelog: yacman/changelog.md
- Support: https://github.com/databio/yacman/issues
- Ubiquerg:
- Ubiquerg: ubiquerg/README.md
- Reference:
- How to cite: citations.md
- API: ubiquerg/code/python-api.md
- Changelog: ubiquerg/changelog.md
- Support: https://github.com/pepkit/ubiquerg/issues
- How to cite: citations.md
- Stats: statistics.md
plugins:
- mkdocs-jupyter:
include:
- eido/notebooks/*.ipynb
- geofetch/notebooks/*.ipynb
- looper/notebooks/*.ipynb
- peppy/notebooks/*.ipynb
- pipestat/notebooks/*.ipynb
- pypiper/notebooks/*.ipynb
- yacman/notebooks/*.ipynb
ignore:
- "**/*.md"
ignore_h1_titles: True
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: google
show_symbol_type_heading: true
show_symbol_type_toc: true
show_root_heading: true
show_root_full_path: false
show_source: false
show_signature: true
show_if_no_docstring: false
docstring_section_style: table
separate_signature: true
merge_init_into_class: true
allow_inspection: true