Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions CodeEntropy/config/arg_config_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,12 @@
"action": "store_true",
"help": "Enable verbose output",
},
"thread": {"type": int, "help": "How many multiprocess to use", "default": 1},
"output_file": {
"type": str,
"help": "Name of the file where the output will be written",
"help": (
"Name of the output file to write results to (filename only). Defaults "
"to output_file.json"
),
"default": "output_file.json",
},
"force_partitioning": {"type": float, "help": "Force partitioning", "default": 0.5},
Expand Down
1 change: 1 addition & 0 deletions docs/developer_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ Edit docs in the following directories:

Contributing Code
-----------------
If you would to contribution to **CodeEntropy** please refer to our `Contributing Guidelines <https://github.com/CCPBioSim/CodeEntropy?tab=contributing-ov-file>`_

Creating an Issue
^^^^^^^^^^^^^^^^^
Expand Down
Loading