You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`sphinx-build -b linkcheck . _build/linkcheck` used to check all links, many of which were broken. Needs to be launched from the same directory that the `conf.py` file is in.
* `u-track3D: Measuring, navigating, and validating dense particle trajectories in three dimensions <https://www.cell.com/cell-reports-methods/pdf/S2667-2375(23)00326-0.pdf>`_
65
+
<https://pubmed.ncbi.nlm.nih.gov/27028654/>`_
66
+
* `u-track3D: Measuring, navigating, and validating dense particle trajectories in three dimensions <https://pubmed.ncbi.nlm.nih.gov/38042149/>`_
65
67
* `Robust and automated detection of subcellular morphological motifs in 3D microscopy images <https://www.nature.com/articles/s41592-019-0539-z>`_
66
68
67
69
.. collapse:: Technical Information
@@ -142,7 +144,7 @@ The University of Texas Southwestern Medical Center, Dallas, TX
142
144
**Relevant Publications**:
143
145
144
146
* `Increasing the field-of-view in oblique plane microscopy via optical tiling
* `A versatile oblique plane microscope for large-scale and high-resolution imaging of subcellular dynamics
147
149
<https://elifesciences.org/articles/57681>`_
148
150
@@ -215,8 +217,8 @@ The University of Texas Southwestern Medical Center, Dallas, TX
215
217
216
218
**Relevant Publications**:
217
219
218
-
* `Adaptive optics in an oblique plane microscope <https://www.biorxiv.org/content/10.1101/2024.03.21.586191v1>`_
219
-
* `Increasing the field-of-view in oblique plane microscopy via optical tiling <https://opg.optica.org/abstract.cfm?uri=boe-13-11-5616>`_
220
+
* `Adaptive optics in an oblique plane microscope <https://pubmed.ncbi.nlm.nih.gov/38562744/>`_
221
+
* `Increasing the field-of-view in oblique plane microscopy via optical tiling <https://pubmed.ncbi.nlm.nih.gov/36733723/>`_
220
222
* `A versatile oblique plane microscope for large-scale and high-resolution imaging of subcellular dynamics <https://elifesciences.org/articles/57681>`_
221
223
222
224
.. collapse:: Technical Information
@@ -428,7 +430,7 @@ The University of Texas Southwestern Medical Center, Dallas, TX
@@ -155,7 +155,7 @@ should be named: ``my_plugin_frame.py`` and ``my_plugin_controller.py``.
155
155
Plugin Devices
156
156
------------------
157
157
158
-
The **navigate** plugin architecture allows you to integrate new hardware device. There can be more than one
158
+
The **navigate** plugin architecture allows you to integrate new hardware device. There can be more than one
159
159
device inside a plugin. If they are different kinds of device, please put them into different folders. For each
160
160
kind of device, there should be a ``device_startup_functions.py`` telling **navigate** how to start the device
161
161
and indicating the reference name of the device to be used in ``configuration.yaml``.
@@ -186,16 +186,16 @@ A function to start the device should be given,
186
186
return device_object
187
187
188
188
189
-
The template for ``device_startup_functions.py`` can be found in the `plugin template <https://github.com/TheDeanLab/navigate-plugin-template/blob/main/src/plugins-template/model/devices/plugin_device/device_startup_functions.py>`_.
190
-
189
+
The template for ``device_startup_functions.py`` can be found in the
**navigate** allows users to add new features. New feature objects and feature lists can each be a plugin or components
196
196
of a plugin. Features and feature lists are automatically loaded into **navigate**.
197
197
198
-
Please visit `here <https://thedeanlab.github.io/**navigate**/feature_container/feature_container_home.html>`_ for details about how to build a new feature object and feature list.
198
+
Please visit `here <https://thedeanlab.github.io/navigate/contributing/feature_container.html>`_ for details about how to build a new feature object and feature list.
199
199
200
200
-------------------------------------
201
201
@@ -204,7 +204,7 @@ Custom Acquisition Modes
204
204
Navigate offers seamless support for custom acquisition modes, and registering a new mode is straightforward.
205
205
206
206
1. Download the template for `plugin_acquisition_mode.py
@@ -214,7 +214,7 @@ Navigate offers seamless support for custom acquisition modes, and registering a
214
214
classPluginAcquisitionMode:
215
215
def__init__(self, name):
216
216
self.acquisition_mode = name
217
-
217
+
218
218
self.feature_list = [
219
219
# update here
220
220
]
@@ -230,7 +230,7 @@ Users should tell **navigate** what to do before and after acquisition using the
230
230
231
231
defend_acquisition_controller(self, controller):
232
232
# update here
233
-
233
+
234
234
defprepare_acquisition_model(self, model):
235
235
# update here
236
236
@@ -241,11 +241,12 @@ Users should tell **navigate** what to do before and after acquisition using the
241
241
242
242
.. code-block:: none
243
243
244
-
acquisition_modes:
244
+
acquisition_modes:
245
245
- name: Custom Acquisition
246
246
file_name: plugin_acquisition_mode.py
247
247
248
248
249
249
-----------
250
250
251
-
For more plugin examples, please visit `navigate <https://github.com/TheDeanLab/navigate/tree/develop/src/navigate/plugins>`_ and `Navigate Plugins <https://github.com/TheDeanLab/navigate-plugins>`_.
251
+
For more plugin examples, please visit the plugins in the table of contents menu on
0 commit comments