Skip to content

Commit 13786a3

Browse files
committed
Disable mirror URI column for AnVIL and add FIXME (#7154)
1 parent 964ea64 commit 13786a3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/azul/plugins/metadata/anvil/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,10 @@ def recurse(mapping: MetadataPlugin._FieldMapping, path: FieldPath):
359359
# Above, we already configured these two fields to be omitted from the
360360
# manifest since they are not informative to the user.
361361
result[('contents', 'files')]['file_url'] = 'files.azul_url'
362-
result[('contents', 'files')]['file_mirror_uri'] = 'files.azul_mirror_uri'
362+
# FIXME: AnVIL uses uncommon encoding for MD5 digests
363+
# https://github.com/DataBiosphere/azul/issues/7154
364+
if False:
365+
result[('contents', 'files')]['file_mirror_uri'] = 'files.azul_mirror_uri'
363366
return result
364367

365368
primary_keys_by_table = {

0 commit comments

Comments
 (0)