pestifer.subcommands.show_resources module¶
The show-resources subcommand. Shows available resources for the current configuration, including TcL scripts, examples, and CHARMM force field data.
- class pestifer.subcommands.show_resources.ShowResourcesSubcommand(name: str = 'show-resources', aliases: list = <factory>, log_file: str = 'pestifer_diagnostics.log', short_help: str = 'show available resources for the current configuration', long_help: str = 'Display a list of all available resources for the current configuration.', func_returns_type: type = <class 'bool'>, parser: argparse.ArgumentParser = None)[source]¶
Bases:
Subcommand- add_subparser(subparsers)[source]¶
Adds the subcommand parser to the given subparsers. Subclasses declare arguments here, after a super().add_subparser() call.
- static func(args: Namespace, **kwargs)[source]¶
the function that executes the subcommand. Subclasses must implement this method.