Skip to content

Commit 12553f2

Browse files
committed
fix broken doc links
1 parent d83687f commit 12553f2

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

docs/src/webknossos-py/examples/apply_merger_mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This example applies a merger mode annotation to a segmentation.
44

55
It downloads a [sample dataset](https://webknossos.org/datasets/scalable_minds/l4_sample_dev/view) with a [sample annotation](https://webknossos.org/annotations/Explorational/6204d2cd010000db0003db91).
66
The annotation has been created with "merger mode", where skeleton trees are used to merge segments.
7-
Read more about the [merger mode in the WEBKNOSSOS documentation](/webknossos/volume_annotation.html#proof-reading-and-merging-segments).
7+
Read more about the [merger mode in the WEBKNOSSOS documentation](/webknossos/proofreading/merger_mode.html).
88
The example then uses the [Dataset API](dataset_usage.md) and [fastremap module](https://github.com/seung-lab/fastremap) for reading, remapping and rewriting the `segmentation` layer.
99

1010
_This example additionally needs the fastremap package._

docs/src/webknossos-py/examples/load_annotation_from_file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Annotation File to OME-TIFF
22

3-
This example shows how to turn a volume annotation downloaded from WEBKNOSSOS into a OME-TIFF. When [manually downloading a WEBKNOSSOS annotation](/webknossos/export.html#data-export-through-the-ui) through the UI you end up with a ZIP file containing the volume segmentation in the WKW-format (and potentially any skeleton annotation).
3+
This example shows how to turn a volume annotation downloaded from WEBKNOSSOS into a OME-TIFF. When [manually downloading a WEBKNOSSOS annotation](/webknossos/data/export_ui.html) through the UI you end up with a ZIP file containing the volume segmentation in the WKW-format (and potentially any skeleton annotation).
44

55
As an alternative to manually downloading annotation files, have a look at streaming the data directly from the remote serve, e.g., in [this example](./download_segments.md).
66

docs/src/webknossos-py/examples/merge_nmls.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Merge Trees of two NML files
22

3-
This example opens two [NML files](/webknossos/data_formats.md#nml-files) and copies the trees from the NML A to B and saves the output to a new NML (that includes the trees of both input NMLs).
3+
This example opens two [NML files](/webknossos/data/concepts.md#nml-files) and copies the trees from the NML A to B and saves the output to a new NML (that includes the trees of both input NMLs).
4+
This example opens two [NML files](/webknossos/data/concepts.md#nml-files) and copies the trees from the NML A to B and saves the output to a new NML (that includes the trees of both input NMLs).
45

56
```python
67
--8<--

webknossos/webknossos/annotation/annotation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Annotations can contain annotated data in two forms:
22
3-
- [skeleton data](/webknossos/skeleton_annotation.html), as provided by the `Skeleton` class, and
4-
- [volume annotation layers](/webknossos/volume_annotation.html) (or volume layers short),
3+
- [skeleton data](/webknossos/skeleton_annotation/index.html), as provided by the `Skeleton` class, and
4+
- [volume annotation layers](/webknossos/volume_annotation/index.html) (or volume layers short),
55
which can be exported as a `SegmentationLayer`, see `export_volume_layer_to_dataset()`
66
and `temporary_volume_layer_copy()`.
77

0 commit comments

Comments
 (0)