interface executableManifest {
    connector?: string;
    container: string;
    default_hpc?: string;
    default_result_folder_downloadable_path?: string;
    description?: string;
    estimated_runtime?: string;
    execution_stage: string;
    execution_stage_in_raw_sbatch?: string[];
    name: string;
    param_rules?: Record<string, integerRule | stringOptionRule>;
    post_processing_stage?: string;
    post_processing_stage_in_raw_sbatch?: string[];
    pre_processing_stage?: string;
    pre_processing_stage_in_raw_sbatch?: string[];
    repository?: string;
    require_upload_data?: boolean;
    slurm_input_rules?: slurmInputRules;
    supported_hpc?: string[];
}

Properties

connector?: string
container: string
default_hpc?: string
default_result_folder_downloadable_path?: string
description?: string
estimated_runtime?: string
execution_stage: string
execution_stage_in_raw_sbatch?: string[]
name: string
param_rules?: Record<string, integerRule | stringOptionRule>
post_processing_stage?: string
post_processing_stage_in_raw_sbatch?: string[]
pre_processing_stage?: string
pre_processing_stage_in_raw_sbatch?: string[]
repository?: string
require_upload_data?: boolean
slurm_input_rules?: slurmInputRules
supported_hpc?: string[]

Generated using TypeDoc