From 2fa0170b69f6113bacc7820e4367b853456a3e87 Mon Sep 17 00:00:00 2001 From: Chris Ochoa <91976672+chrisochoatri@users.noreply.github.com> Date: Mon, 17 Oct 2022 17:06:44 -0700 Subject: [PATCH] fix: fixed depth in dgp2wicker (#133) --- 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..7892701e 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