Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
NickAkhmetov committed Jul 18, 2024
1 parent 6850623 commit cf63daf
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/portal_visualization/builder_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ def get_view_config_builder(entity, get_assaytype, parent=None):
is_support,
) = process_hints(hints)

print(entity)
print(hints)

# vis-lifted image pyramids
if parent is not None:
if is_support and is_image:
Expand Down Expand Up @@ -134,5 +137,8 @@ def get_view_config_builder(entity, get_assaytype, parent=None):


def has_visualization(entity, get_assaytype, parent=None):
print("entity: ", entity)
if (parent is not None):
print("parent: ", parent)
builder = get_view_config_builder(entity, get_assaytype, parent)
return builder != NullViewConfBuilder

0 comments on commit cf63daf

Please sign in to comment.