Skip to content

Commit

Permalink
add is_broker option to dry run
Browse files Browse the repository at this point in the history
  • Loading branch information
anna-parker committed Oct 7, 2024
1 parent 2ba4729 commit 6fb43f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ena-submission/scripts/deposition_dry_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ class Config:
metadata_mapping_mandatory_field_defaults: dict[str, str]
ena_checklist: str
use_ena_checklist: bool
is_broker: bool


@click.command()
Expand Down Expand Up @@ -158,7 +159,7 @@ def local_ena_submission_generator(
manifest_object = create_manifest_object(
config, dummy_sample_dict, dummy_project_dict, entry, entry, entry, dir=directory
)
create_manifest(manifest_object, dir=directory)
create_manifest(manifest_object, is_broker=config.is_broker, dir=directory)
logger.info(
"You can submit the assembly to ENA using the command: \n"
"java -jarwebin-cli.jar -username {ena_submission_username} "
Expand Down

0 comments on commit 6fb43f9

Please sign in to comment.