schrodinger.utils.funcgroups module

This module provides a mechanism for marking the methods on a class with a decorator. These methods can then be retrieved as an ordered list from an instance of that class. Each decorator instance creates a separate group.

To use, mix in the FuncGroupMixin to any class, and decorate the desired methods with an instance of FuncGroupMarker.

A generic decorator, funcgroup, is provided for convenience, but it is recommended that a separate decorator be created for each group.

Example:

my_startup_funcs = FuncGroupMarker()

class Foo(FuncGroupMixin):
    def __init__(self):
        for func in self.getFuncGroup(my_startup_funcs):
            func()

    @my_startup_functions(order=1)
    def initVariables(self):
        ...

    @my_startup_functions(order=2)
    def setupWorkspace(self):
class schrodinger.utils.funcgroups.FuncGroupMarker(label=None)[source]

Bases: object

This decorator marks a method on a class as belonging to a group.

Parameters
  • order – a numerical value that determines in what order the methods are returned when retrieved.

  • order – float

__init__(label=None)[source]
Parameters

label (str) – An optional human-readable identifier to use in the repr

schrodinger.utils.funcgroups.get_marked_func_order(func)[source]

Gets the order as set by the FuncGroupMarker decorator. Returns None if the function was not decorated.

Parameters

func – the function to get the order from.

Return float

the order

class schrodinger.utils.funcgroups.FuncData(name, order, func=None)[source]

Bases: object

__init__(name, order, func=None)[source]

Initialize self. See help(type(self)) for accurate signature.

class schrodinger.utils.funcgroups.FuncGroupMixin(*args, **kwargs)[source]

Bases: object

Use this mixin on an object so that methods decorated with a FuncGroupMarker can be retrieved on an instance of this object.

__init__(*args, **kwargs)[source]

Initialize self. See help(type(self)) for accurate signature.

getFuncGroup(group=None)[source]

Retrieve the functions belonging to the specified group.

Parameters

group (FuncGroupMarker) – the group marker

Returns

the functions in the specified group, in order

Return type

list

addFuncToGroup(func, group=None, order=None)[source]

Adds a function to the specified chain. Typically used for adding functions that are not methods of this object.

The function may optionally be decorated with a FuncGroupMarker. If so, the default group and order will be determined by the decorator. Any group or order explicitly passed in to addFuncToGroup will take precedence over the decorator settings.

Parameters
  • func – the function to add

  • group (FuncGroupMarker or None) – the group marker. If the function is decorated with a FuncGoupMarker, that group marker will be the default.

  • order (float or None) – the sorting order. If the function is decorated with a FuncGoupMarker, the order specified in the decorator will be the default.

getAddedFuncs(group=None)[source]