Skip to content

Commit

Permalink
Change the default ingestion instance to 2 (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
tcezard authored Nov 2, 2023
1 parent 9308238 commit a48e050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/ingest_submission.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
def main():
argparse = ArgumentParser(description='Accession and ingest submission data into EVA')
argparse.add_argument('--eload', required=True, type=int, help='The ELOAD number for this submission.')
argparse.add_argument('--instance', required=False, type=int, choices=range(1, 13), default=1,
argparse.add_argument('--instance', required=False, type=int, choices=range(1, 13), default=2,
help='The instance id to use for accessioning. Only needed if running accessioning.')
argparse.add_argument('--clustering_instance', required=False, type=int, choices=range(1, 13), default=6,
help='The instance id to use for clustering. Only needed if running clustering.')
Expand Down

0 comments on commit a48e050

Please sign in to comment.