Skip to content

Commit

Permalink
fix broken doc links
Browse files Browse the repository at this point in the history
  • Loading branch information
hotzenklotz committed Oct 16, 2024
1 parent d83687f commit 12553f2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/src/webknossos-py/examples/apply_merger_mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This example applies a merger mode annotation to a segmentation.

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).
The annotation has been created with "merger mode", where skeleton trees are used to merge segments.
Read more about the [merger mode in the WEBKNOSSOS documentation](/webknossos/volume_annotation.html#proof-reading-and-merging-segments).
Read more about the [merger mode in the WEBKNOSSOS documentation](/webknossos/proofreading/merger_mode.html).
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.

_This example additionally needs the fastremap package._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Annotation File to OME-TIFF

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).
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).

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).

Expand Down
3 changes: 2 additions & 1 deletion docs/src/webknossos-py/examples/merge_nmls.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Merge Trees of two NML files

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).
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).
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).

```python
--8<--
Expand Down
4 changes: 2 additions & 2 deletions webknossos/webknossos/annotation/annotation.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Annotations can contain annotated data in two forms:
- [skeleton data](/webknossos/skeleton_annotation.html), as provided by the `Skeleton` class, and
- [volume annotation layers](/webknossos/volume_annotation.html) (or volume layers short),
- [skeleton data](/webknossos/skeleton_annotation/index.html), as provided by the `Skeleton` class, and
- [volume annotation layers](/webknossos/volume_annotation/index.html) (or volume layers short),
which can be exported as a `SegmentationLayer`, see `export_volume_layer_to_dataset()`
and `temporary_volume_layer_copy()`.
Expand Down

0 comments on commit 12553f2

Please sign in to comment.