Specifically for ``` CVMix_CONVECTION% %CVMix_CONVECTION ``` `mom6_input.py` incorrectly parses them as ``` CVMIX_CONVECTION% %CVMix_CONVECTION ``` This pops up a conflict for a model run. A simple fix is to remove this line for now. `mom6_input_str = re.sub(r"((?<=^)|(?<=\n))(\w+%?)", lambda pat: pat.group(2).upper(), mom6_input_str)`
Specifically for
mom6_input.pyincorrectly parses them asThis pops up a conflict for a model run.
A simple fix is to remove this line for now.
mom6_input_str = re.sub(r"((?<=^)|(?<=\n))(\w+%?)", lambda pat: pat.group(2).upper(), mom6_input_str)