{% extends "base.html" %} {% block content %}
{{ workset.artifact_set_euids | length }}
Artifact Sets
{{ workset.manifests | length }}
Manifests
{{ workset.analysis_euids | length }}
Analyses
{{ workset.state }}
State

Linked Manifests

{% for manifest in workset.manifests %} {% else %} {% endfor %}
NameEUIDInputs
{{ manifest.name }} {{ manifest.manifest_euid }} {{ manifest.artifact_euids | length }}
No manifests for this workset.

Linked Analyses

{% for analysis in analyses %} {% else %} {% endfor %}
AnalysisTypeState
{{ analysis.analysis_euid }} {{ analysis.analysis_type }} {{ analysis.state }}
No analyses linked to this workset.
{% set analysis_command = workset.metadata.get("analysis_command") if workset.metadata else None %} {% if analysis_command %} {% set profile = analysis_command.profile or {} %}

Analysis Command

{{ profile.display_name or analysis_command.command_id }}
Command
{{ profile.genome or "—" }}
Genome
{{ profile.datasource or "—" }}
Datasource
{{ analysis_command.repository or "—" }}
Repository
{{ profile.targets | join(" ") }}
{% endif %}

Payload

{{ workset_payload_json }}
{% endblock %}