diff --git a/unilabos/resources/graphio.py b/unilabos/resources/graphio.py index d6f64e46..9621b5de 100644 --- a/unilabos/resources/graphio.py +++ b/unilabos/resources/graphio.py @@ -479,7 +479,8 @@ def initialize_resources(resources_config) -> list[dict]: from unilabos.registry.registry import lab_registry resources = [] for resource_config in resources_config: - + if resource_config["parent"] == "tip_rack" or resource_config["parent"] == "plate_well": + continue resources.extend(initialize_resource(resource_config, lab_registry)) return resources