diff --git a/src/xchemalign/collator.py b/src/xchemalign/collator.py index 255efac..8ddc120 100644 --- a/src/xchemalign/collator.py +++ b/src/xchemalign/collator.py @@ -184,6 +184,11 @@ def __init__(self, config_file, logger=None): ) elif type == Constants.CONFIG_TYPE_MANUAL: + # Determine which datasets to exclude + excluded_datasets = utils.find_property(input, Constants.CONFIG_EXCLUDE) + if not excluded_datasets: + excluded_datasets = [] + self.logger.info("adding input", input_path) self.inputs.append( Input(self.base_path, input_path, type, None, [], excluded_datasets, logger=self.logger)