Skip to content
Snippets Groups Projects
Commit b7bab825 authored by Alán Muñoz's avatar Alán Muñoz
Browse files

docs(Dataset): Document OmeroDataset

parent baa450a3
No related branches found
No related tags found
No related merge requests found
...@@ -171,7 +171,19 @@ class BridgeOmero: ...@@ -171,7 +171,19 @@ class BridgeOmero:
class Dataset(BridgeOmero): class Dataset(BridgeOmero):
def __init__(self, expt_id: str or int, **server_info): """
Tool to interact with Omero Datasets remotely, access their
metadata and associated files and images.
Parameters
----------
expt_id: int Dataset id on server
server_info: dict host, username and password
"""
def __init__(self, expt_id: int, **server_info):
super().__init__(ome_id=expt_id, **server_info) super().__init__(ome_id=expt_id, **server_info)
@property @property
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment