Please remove the hard-coded defaults from the code. An alternative option is to put them in a local config file that is read at runtime. If args are not passed, the code could look for that file and load it if found. This provides flexibility and convenience without polluting the codebase with local config info.
https://github.com/InformaticsGenomicMedicine/DraftCoreDataModel/blob/79450932a44ee677816f9c02e6f5660ea03e5ec1/src/database_extract.py#L7C56-L15
Please remove the hard-coded defaults from the code. An alternative option is to put them in a local config file that is read at runtime. If args are not passed, the code could look for that file and load it if found. This provides flexibility and convenience without polluting the codebase with local config info.