This repository was archived by the owner on Mar 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
82 lines (77 loc) · 2.51 KB
/
mkdocs.yml
File metadata and controls
82 lines (77 loc) · 2.51 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
site_name: tfbpapi
site_description: "A collection of objects and functions to work with calling cards sequencing tools"
site_author: "ben mueller <email@email.com>, chase mateusiak <chasem@wustl.edu>, michael brent <brent@wustl.edu>"
site_url: "https://brentlab.github.io/tfbpapi/"
repo_url: "https://github.com/brentlab/tfbpapi"
repo_name: "tfbpapi"
edit_uri: "edit/master/docs/"
watch: ['tfbpapi', 'docs']
theme:
name: material
plugins:
- search
- autorefs
- section-index
- mkdocs-jupyter:
remove_tag_config:
remove_input_tags:
- hide
remove_output_tags:
- hide
- mkdocstrings:
handlers:
python:
paths: [tfbpapi] # search packages in the src folder
merge_init_into_class: True
options:
docstring_style: 'sphinx'
markdown_extensions:
- smarty
- toc:
permalink: True
- sane_lists
- pymdownx.arithmatex:
generic: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: "!!python/name:pymdownx.superfences.fence_code_format"
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
- https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js
- js/init-mermaid.js
nav:
- Home: index.md
- Tutorials:
- Database Interface: tutorials/database_interface.ipynb
- LassoCV: tutorials/lassoCV.ipynb
- Interactor Modeling Workflow: tutorials/interactor_modeling_workflow.ipynb
- API:
- Models:
- Overview: ml_models/index.md
- SigmoidModel: ml_models/SigmoidModel.md
- Lasso Modeling: ml_models/lasso_modeling.md
- Database Interface:
- Records Only Classes:
- interface/BindingManualQCAPI.md
- interface/DataSourceAPI.md
- interface/DtoAPI.md
- interface/ExpressionManualQCAPI.md
- interface/FileFormatAPI.md
- interface/GenomicFeatureAPI.md
- interface/RegulatorAPI.md
- Records and Files Classes:
- BindingAPI: interface/BindingAPI.md
- BindingConcatenatedAPI: interface/BindingConcatenatedAPI.md
- CallingCardsBackgroundAPI: interface/CallingCardsBackgroundAPI.md
- ExpressionAPI: interface/ExpressionAPI.md
- PromoterSetAPI: interface/PromoterSetAPI.md
- PromoterSetSigAPI: interface/PromoterSetSigAPI.md
- Developer Classes:
- interface/AbstractAPI.md
- interface/AbstractRecordsAndFilesAPI.md
- interface/AbstractRecordsOnlyAPI.md
- interface/Cache.md
- interface/ParamsDict.md