Skip to content

Commit

Permalink
validate seek keys after building asset
Browse files Browse the repository at this point in the history
  • Loading branch information
stolarczyk committed Sep 9, 2021
1 parent 0672d75 commit 2a201e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions refgenie/refgenie.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ def _build_asset(
*gat,
force_digest=genome,
keys={
k: v.format(**build_namespaces)
k: v["value"].format(**build_namespaces)
for k, v in recipe.output_class.seek_keys.items()
},
)
Expand Down Expand Up @@ -739,7 +739,7 @@ def _build_asset(
f"Asset metadata saved in '{map_gencfg}'. "
f"To make the asset accessible globally run: refgenie build --reduce"
)

rgc_map.validate_asset_seek_keys(genome=genome, asset=asset, tag=tag)
return True


Expand Down

0 comments on commit 2a201e8

Please sign in to comment.