From 4d6375bc03a1074491966516cfb6970d196d57f0 Mon Sep 17 00:00:00 2001 From: "charles.ochoa" Date: Mon, 17 Oct 2022 23:48:00 +0000 Subject: [PATCH] fix: fixed depth in dgp2wicker --- dgp/contribs/dgp2wicker/dgp2wicker/dataset.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dgp/contribs/dgp2wicker/dgp2wicker/dataset.py b/dgp/contribs/dgp2wicker/dgp2wicker/dataset.py index 24ceaed7..fed83aba 100644 --- a/dgp/contribs/dgp2wicker/dgp2wicker/dataset.py +++ b/dgp/contribs/dgp2wicker/dgp2wicker/dataset.py @@ -82,6 +82,8 @@ def compute_columns( if with_ontology_table and requested_annotations is not None: for ann in requested_annotations: if ann in ANNOTATION_REGISTRY: + if ann == 'depth': # DenseDepth does not require an ontology + continue columns_to_load.append(gen_wicker_key('ontology', ann)) return columns_to_load