- Host
Character string. The hostname or IP address of the remote server.
- User
Character string. The username for the SSH connection.
- Password
Character string. The password for SSH authentication. Defaults
to "", which is appropriate when using key-based authentication. Using
keys is strongly recommended over embedding passwords in scripts.
- KeyPath
Character string. The path to your private SSH key file.
Defaults to the path stored in the SSH_PRIVATE_KEY_PATH environment variable.
- SshFlags
Character vector. Additional flags to pass to the underlying
ssh::ssh_connect function.
- LocalTemplatePath
Character string. The path to the pyDarwin template
file. If not provided, defaults to "template.txt" within LocalDirectoryPath.
- LocalTokensPath
Character string. The path to the pyDarwin tokens JSON
file. If not provided, defaults to "tokens.json" within LocalDirectoryPath.
- LocalOptionsPath
Character string. The path to the pyDarwin options
JSON file. If not provided, defaults to "options.json" within LocalDirectoryPath.
- LocalDirectoryPath
Character string or NULL. The path to the local
project directory that contains the pyDarwin input files. Defaults to the
current working directory (.). If NULL is provided, the directory
containing LocalOptionsPath is used as the project directory.
- RemoteBaseDir
Character string. The base directory on the remote host
under which a new project-specific directory will be created.
- RemoteInterpreterPath
Character string or NULL. The full path to the
Python interpreter on the remote host (e.g., /usr/bin/python3). If NULL,
the function attempts to find a suitable Python interpreter automatically.
- UseLocalLicense
Logical. If TRUE, attempts to transfer local Certara
license files to the remote host.
- Wait
Logical. If TRUE (the default), the function will monitor the
remote job's progress and download the results upon completion. If FALSE,
- Flags
Character vector. Command-line flags to pass to the pyDarwin
Python module.
- MonitoringInterval
Numeric. The interval in seconds between status
checks when monitoring a running job (Wait = TRUE).