{% extends "core/base/base.html" %} {% comment %} SPDX-FileCopyrightText: 2022 Helmholtz-Zentrum Dresden-Rossendorf (HZDR) SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load static %} {% load vendor_tags %} {% block content %} {% vendor_css "codemirror" %}
{% csrf_token %}

Create Job for project "{{ project.label }}"


{% if executable.type == executable.ExecutableTypes.TOOL %} Tool {% elif executable.type == executable.ExecutableTypes.WORKFLOW %} Workflow {% elif executable.type == executable.ExecutableTypes.ARBITRARY_CWL %} Arbitrary CWL {% else %} {{ executable.get_type_display }} {% endif %} Specification

{% if executable.cwl.class %} {% endif %} {% if executable.cwl.label %} {% endif %} {% if executable.cwl.doc %} {% endif %} {% if executable.cwl.baseCommand %} {% endif %}
ID {{ executable.executable_id }}
Type {{ executable.get_type_display }}
CWL Type {{ executable.cwl.class }}
Name {{ executable.cwl.label }}
Description {{ executable.cwl.doc }}
Base Command {{ executable.cwl.baseCommand }}
{% if cwl_job.has_parameters %}

Parameter Specification

{% for p in cwl_job.parameter_details %} {% endfor %}
Name Description Type Value
{{ p.name }} {{ p.description }} {{ p.type_name }} {% include "cwl_execution/job_parameter_input.html" %}
{% endif %} {% if not data_sources %} {% if executable.uses_files %} {% endif %} {% endif %} {% if cwl_job.unsupported_dict %}

Add other Parameters

{% if message %} {% endif %} {% endif %}

Job Specification

Name
Description
Repeat Interval (in days)
Commands to setup Python and pip on Cluster
Resource requirements

{% if update %} Cancel {% endif %}

{% endblock content %} {% block script %} {% vendor_js "codemirror" %} {% include "core/base/digital_object_autocomplete.html" %} {% include "core/base/tag_manager.html" %} {% endblock script %}