-
Notifications
You must be signed in to change notification settings - Fork 68
/
mkdocs.yml
182 lines (172 loc) · 6.35 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# Project
site_name: Synapse Python/Command Line Client Documentation
site_author: Bryan Fauble
site_description: >-
A Python client for Sage Bionetworks' Synapse, a collaborative, open-source research
platform that allows teams to share data, track analyses, and collaborate. The Python
client can be used as a library for development of software that communicates with
Synapse or as a command-line utility.
site_dir: docs_site
# Repository
repo_url: https://github.com/Sage-Bionetworks/synapsePythonClient
repo_name: synapsePythonClient
# Navigation
nav:
- Home:
- Home: index.md
- Setup:
- Installation: tutorials/installation.md
- Authentication: tutorials/authentication.md
- Configuration: tutorials/configuration.md
# In each docs folder there is a README containing a guideline to follow when writing documentation.
- Tutorials:
- Home: tutorials/home.md
- Working with the Python client:
- Python client: tutorials/python_client.md
- Project: tutorials/python/project.md
- Folder: tutorials/python/folder.md
- File: tutorials/python/file.md
- Annotation: tutorials/python/annotation.md
# - Versions: tutorials/python/versions.md
# - Activity/Provenance: tutorials/python/activity.md
# - File View: tutorials/python/file_view.md
# - Table: tutorials/python/table.md
# - Using a Table: tutorials/python/table_crud.md
# - Dataset: tutorials/python/dataset.md
# - Sharing Settings: tutorials/python/sharing_settings.md
# - Wiki: tutorials/python/wiki.md
# - Team: tutorials/python/team.md
- Upload data in bulk: tutorials/python/upload_data_in_bulk.md
- Download data in bulk: tutorials/python/download_data_in_bulk.md
# - Move Files and Folders: tutorials/python/move_files_and_folders.md
# - Migrate data to other storage locations: tutorials/python/migrate_data_to_other_storage_locations.md
- Working with the Command Line Client: tutorials/command_line_client.md
- Working with file versioning: tutorials/file_versioning.md
- Working with tables: tutorials/tables.md
- Synapseclient with R through reticulate: tutorials/reticulate.md
- How-To Guides:
- Home: guides/home.md
- Using Entity Views: guides/views.md
- Data Storage: guides/data_storage.md
- Access the REST API: guides/accessing_the_rest_api.md
- Expermental Features:
- Validating Annotations: guides/validate_annotations.md
- API Reference:
- Client: reference/client.md
- Synapse Utils: reference/synapse_utils.md
- Entity: reference/entity.md
- Project: reference/project.md
- Folder: reference/folder.md
- File: reference/file.md
- Annotations: reference/annotations.md
- Tables: reference/tables.md
- Table Schema: reference/table_schema.md
- Entity View Schema: reference/view_schema.md
- Activity/Provenance: reference/activity.md
- Teams: reference/teams.md
- Wiki: reference/wiki.md
- Evaluation: reference/evaluation.md
- Link: reference/link.md
- DockerRepository: reference/docker_repository.md
- JSON Schema: reference/json_schema.md
- Exceptions: reference/exceptions.md
- Permissions: reference/permissions.md
- Core: reference/core.md
- REST Apis: reference/rest_apis.md
- Experimental:
- Object-Orientated Models: reference/oop/models.md
- Async Object-Orientated Models: reference/oop/models_async.md
- Further Reading:
- Home: explanations/home.md
- Domain Models of Synapse: explanations/domain_models_of_synapse.md
- Access Control: explanations/access_control.md
- Properties vs Annotations: explanations/properties_vs_annotations.md
- Manifest TSV: explanations/manifest_tsv.md
- Benchmarking: explanations/benchmarking.md
- Structuring Your Project: explanations/structuring_your_project.md
- News:
- news.md
# Theme configuration
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/toggle-switch
name: Switch to light mode
icon:
admonition:
note: octicons/tag-16
info: octicons/info-16
logo: assets/synapse_logo.png
favicon: assets/favicon.png
features:
- content.code.copy
- navigation.footer
- navigation.sections
- search.highlight
- search.share
- search.suggest
- toc.follow
- navigation.tabs
- navigation.tabs.sticky
extra_css:
- css/custom.css
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://python-markdown.github.io/objects.inv
options:
members_order: source
show_if_no_docstring: False
show_root_heading: True
show_category_heading: True
show_symbol_type_heading: True
show_symbol_type_toc: True
docstring_style: google
docstring_section_style: spacy
filters:
- "!^_"
separate_signature: True
show_signature_annotations: True
signature_crossrefs: True
- autorefs
- termynal:
prompt_literal_start:
- "$"
- ">"
# Allows external links to open in a new tab
- open-in-new-tab
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/Sage-Bionetworks/synapsePythonClient
- icon: fontawesome/brands/docker
link: https://github.com/Sage-Bionetworks/synapsePythonClient/pkgs/container/synapsepythonclient
- icon: fontawesome/brands/python
link: https://pypi.org/project/synapseclient/
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format:
!!python/name:pymdownx.superfences.fence_code_format # Lets us include source code from any files
- markdown_include.include:
- toc:
permalink: true