本文整理汇总了Python中omero.gateway.BlitzGateway.close方法的典型用法代码示例。如果您正苦于以下问题:Python BlitzGateway.close方法的具体用法?Python BlitzGateway.close怎么用?Python BlitzGateway.close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类omero.gateway.BlitzGateway
的用法示例。
在下文中一共展示了BlitzGateway.close方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: check
# 需要导入模块: from omero.gateway import BlitzGateway [as 别名]
# 或者: from omero.gateway.BlitzGateway import close [as 别名]
def check(self):
from omero.cli import CLI
from omero.gateway import BlitzGateway
cli = CLI()
cli.loadplugins()
cli.onecmd('login -q')
try:
gateway = BlitzGateway(client_obj=cli.get_client())
for experiment in self.m["experiments"]:
self.check_object(gateway, experiment, "Project")
for experiment in self.m["screens"]:
self.check_object(gateway, experiment, "Screen")
if "map" in self.m:
if self.m["experiments"]:
study_type = "Project"
else:
study_type = "Screen"
self.check_object(gateway, self.m, study_type)
finally:
if cli:
cli.close()
gateway.close()
示例2: check_file_annotation
# 需要导入模块: from omero.gateway import BlitzGateway [as 别名]
# 或者: from omero.gateway.BlitzGateway import close [as 别名]
def check_file_annotation(client, file_annotation,
parent_type="Image", link_count=0):
"""
Check validity of file annotation. If hasFileAnnotation, check the size,
name and number of objects linked to the original file.
"""
assert file_annotation is not None
id = file_annotation.getId().getValue()
assert id > 0
orig_file = file_annotation.getFile()
assert orig_file.getSize().getValue() > 0
assert orig_file.getName().getValue() is not None
conn = BlitzGateway(client_obj=client)
wrapper = conn.getObject("FileAnnotation", id)
links = sum(1 for i in wrapper.getParentLinks(parent_type))
conn.close()
assert links == link_count