11# mkdocs.yml
22site_name : Virtual Metabolomics Mass Spectrometry (ViMMS)
3+ site_url : https://glasgowcompbio.github.io/vimms/
4+ site_description : ViMMS - Virtual Metabolomics Mass Spectrometry Framework
5+ site_author : Glasgow Computational Biology Group
6+
7+ repo_name : glasgowcompbio/vimms
8+ repo_url : https://github.com/glasgowcompbio/vimms
9+ edit_uri : edit/master/docs/
10+
311theme :
4- name : " readthedocs"
12+ name : material
13+ features :
14+ - navigation.tabs
15+ - navigation.sections
16+ - navigation.expand
17+ - navigation.path
18+ - toc.integrate
19+ - search.suggest
20+ - search.highlight
21+ - content.code.annotate
22+ - content.code.copy
23+ palette :
24+ - scheme : default
25+ primary : indigo
26+ accent : indigo
27+ toggle :
28+ icon : material/brightness-7
29+ name : Switch to dark mode
30+ - scheme : slate
31+ primary : indigo
32+ accent : indigo
33+ toggle :
34+ icon : material/brightness-4
35+ name : Switch to light mode
536
637plugins :
7- - search
8- - mkdocstrings :
9- handlers :
38+ - search
39+ - mkdocstrings :
40+ handlers :
1041 python :
11- paths : ["."]
42+ paths : ["."]
43+ options :
44+ show_source : true
45+ show_root_heading : true
46+ show_root_full_path : false
47+ show_symbol_type_heading : true
48+ show_symbol_type_toc : true
49+ docstring_style : google
50+ docstring_section_style : table
51+ merge_init_into_class : true
52+ show_if_no_docstring : false
53+ show_signature_annotations : true
54+ separate_signature : true
55+ line_length : 80
56+
57+ markdown_extensions :
58+ - admonition
59+ - codehilite :
60+ guess_lang : false
61+ - toc :
62+ permalink : true
63+ - pymdownx.superfences
64+ - pymdownx.details
65+ - pymdownx.tabbed :
66+ alternate_style : true
1267
1368nav :
1469 - Home : README.md
15- - Simulation Overview : simulation_overview.md
16- - Creating Chemicals : chemicals.md
17- - Running Controllers : controllers.md
18- - Evaluating Simulations : evaluation.md
19- - Running on a Real Instrument : real_instrument.md
20- - Adding Noise : noise.md
21- - Chromatographic Models : chromatography.md
22- - Command Line Utilities : cli_tools.md
70+ - User Guide :
71+ - Simulation Overview : simulation_overview.md
72+ - Creating Chemicals : chemicals.md
73+ - Running Controllers : controllers.md
74+ - Evaluating Simulations : evaluation.md
75+ - Running on a Real Instrument : real_instrument.md
76+ - Adding Noise : noise.md
77+ - Chromatographic Models : chromatography.md
78+ - Command Line Utilities : cli_tools.md
2379 - API Documentation :
24- - Common : api/common.md
25- - Chemical Generation Process :
26- - Chemicals : api/chemicals.md
27- - Chemical Samplers : api/chemical_samplers.md
28- - ROI : api/roi.md
29- - Box : api/box.md
30- - Mass Spectrometry Process :
31- - Mass Spec : api/mass_spec.md
32- - Column : api/column.md
33- - Noise : api/noise.md
34- - Fragmentation Strategy Simulation Process :
35- - Environment : api/environment.md
36- - Controllers : api/controllers.md
37- - Dynamic Exclusion : api/exclusion.md
38- - Agents : api/agent.md
39- - Others :
40- - Feature Extractions : api/feature_extractions.md
41- - MzMLWriter : api/mzml_writer.md
80+ - Common : api/common.md
81+ - Chemical Generation Process :
82+ - Chemicals : api/chemicals.md
83+ - Chemical Samplers : api/chemical_samplers.md
84+ - ROI : api/roi.md
85+ - Box : api/box.md
86+ - Mass Spectrometry Process :
87+ - Mass Spec : api/mass_spec.md
88+ - Column : api/column.md
89+ - Noise : api/noise.md
90+ - Fragmentation Strategy Simulation Process :
91+ - Environment : api/environment.md
92+ - Controllers : api/controllers.md
93+ - Dynamic Exclusion : api/exclusion.md
94+ - Agents : api/agent.md
95+ - Others :
96+ - Feature Extractions : api/feature_extractions.md
97+ - MzMLWriter : api/mzml_writer.md
98+
99+ extra :
100+ social :
101+ - icon : fontawesome/brands/github
102+ link : https://github.com/glasgowcompbio/vimms
103+ - icon : fontawesome/solid/book
104+ link : https://doi.org/10.1021/acs.analchem.9b02521
105+
106+ copyright : Copyright © 2025 Glasgow Computational Biology Group
0 commit comments