Deleted argument parser and cleaned runner.py
This commit is contained in:
parent
36ee1ec2e6
commit
e38cef5b52
|
@ -1,13 +0,0 @@
|
|||
from argparse import ArgumentParser
|
||||
|
||||
|
||||
def parse_arguments(arguments_file):
|
||||
"""
|
||||
|
||||
:param arguments_file:
|
||||
:return:
|
||||
"""
|
||||
|
||||
parser = ArgumentParser(description='Automatic framework to launch simulations')
|
||||
parser.add_argument('simulation_config', type=str, help='Simulation file configuration')
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
|
||||
def run_simulation():
|
||||
pass
|
|
@ -1,19 +0,0 @@
|
|||
"""
|
||||
|
||||
USAGE:
|
||||
consensus-simulations.exe [OPTIONS] --input-settings <INPUT_SETTINGS> --output-file <OUTPUT_FILE>
|
||||
|
||||
OPTIONS:
|
||||
-f, --output-format <OUTPUT_FORMAT> Output format selector [default: parquet]
|
||||
-h, --help Print help information
|
||||
-i, --input-settings <INPUT_SETTINGS> Json file path, on `SimulationSettings` format
|
||||
-o, --output-file <OUTPUT_FILE> Output file path
|
||||
"""
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
# Parse arguments
|
||||
|
||||
# Run simulation with arguments
|
||||
|
||||
pass
|
Loading…
Reference in New Issue