Source code for icolos.utils.execute_external.gold

from icolos.utils.enums.program_parameters import GoldEnum
from icolos.utils.execute_external.execute import ExecutorBase

_EE = GoldEnum()


[docs]class GoldExecutor(ExecutorBase): """For the execution of CCDC's GOLD.""" def __init__(self, prefix_execution=None, binary_location=None): super().__init__( prefix_execution=prefix_execution, binary_location=binary_location )
[docs] def execute( self, command: str, arguments: list, check=True, location=None, pipe_input=None ): # check, whether a proper executable is provided if command not in [_EE.GOLD_CALL]: raise ValueError( "Parameter command must be in dictionary of the internal AutoDock Vina executable list." ) return super().execute( command=command, arguments=arguments, check=check, location=None, pipe_input=pipe_input, )
[docs] def is_available(self): try: result = self.execute( command=_EE.VINA_CALL, arguments=[_EE.GOLD_HELP], check=True ) if result.returncode == 0: return True return False except Exception as e: return False