We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26f64c9 commit 0e19239Copy full SHA for 0e19239
1 file changed
src/imcflibs/imagej/omerotools.py
@@ -47,6 +47,15 @@ def parse_url(client, omero_str):
47
-------
48
list(fr.igred.omero.repository.ImageWrapper)
49
List of ImageWrappers parsed from the string.
50
+
51
+ Examples
52
+ --------
53
+ >>> from fr.igred.omero import Client
54
+ >>> client = Client()
55
+ >>> OMERO_LINK = "123456"
56
+ >>> img_wrappers = omerotools.parse_url(client, OMERO_LINK)
57
+ >>> for wrapper in img_wrappers:
58
+ >>> imp = wpr.toImagePlus(client)
59
"""
60
image_ids = []
61
dataset_ids = []
0 commit comments