31 def create_argument_parser(self, **kwds):
32 """Parse the command-line post-processing arguments"""
33 argument_parser = super().create_argument_parser(**kwds)
34 postprocess_argument_group = argument_parser.add_argument_group("Postprocessing arguments")
35 postprocess_argument_group.add_argument(
36 '-po',
37 '--postprocess-only',
38 action='store_true',
39 default=self.postprocess_only,
40 dest='postprocess_only',
41 help='Only run the post processing of this run.',)
42
43 return argument_parser
44