flowviz
Version:
A framework which provides seamless integration with other phylogenetic tools and frameworks, while allowing workflow scheduling and execution, through the Apache Airflow workflow system.
16 lines (13 loc) • 322 B
JavaScript
class Operator {
id;
operator_import;
operator_type;
operator_params;
constructor(id, operatorImport, operatorType, operatorParams) {
this.id = id;
this.operator_import = operatorImport;
this.operator_type = operatorType;
this.operator_params = operatorParams;
}
}
module.exports = Operator;