Skip to content

Commit

Permalink
Hide mapmycells for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
morriscb committed Aug 9, 2024
1 parent 1c64b63 commit 8263043
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/abc_atlas_access/abc_atlas_cache/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def _list_data_in_directory(
output_data_list.extend(list(sub_directories['metadata'].keys()))
else:
for sub_dir in sub_directories.keys():
if sub_dir == 'metadata':
if sub_dir == 'metadata' or sub_dir == 'mapmycells':
continue
for sub_dir_key in sub_directories[sub_dir].keys():
# Check for files with multiple kinds (e.g. raw and log2)
Expand Down
5 changes: 3 additions & 2 deletions src/manifest_builder/manifest_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def populate_directories(
populated.
"""
dir_logger = logging.getLogger("populate_directories")
logger.info('Populating paths and urls for each dataset/directory')
dir_logger.info('Populating paths and urls for each dataset/directory')
for data_set in release['directory_listing'].keys():

dir_logger.info(f'- {data_set}')
Expand Down Expand Up @@ -161,7 +161,8 @@ def populate_datasets(
and files populated.
"""
dataset_logger = logging.getLogger("populate_datasets")
dataset_logger.info('Populating paths and urls for each dataset/directory')
dataset_logger.info("Populating files and hashes for each "
"dataset/directory")
dataset_lookup = {}

for dataset in release['directory_listing'].keys():
Expand Down

0 comments on commit 8263043

Please sign in to comment.