{% extends "base.html" %} {% block content %}
{% if filter_status or filter_type or filter_search %}
{% endif %}
Showing {{ worksets | length }} of {{ total_count }} workset{{ 's' if total_count != 1 else '' }}{% if filter_status or filter_type or filter_search %} (filtered){% endif %}
{% if worksets %} {% for ws in worksets %} {% endfor %} {% else %} {% endif %}
Workset ID Workset Name Created Type Tenant TapDB Status Pipeline Cluster Region Samples Progress Last Updated Compute Cost Storage Actions
{{ ws.workset_id }} {{ ws.workset_name or ws.workset_id }} {{ ws.created_at[:16] | replace('T', ' ') if ws.created_at else '—' }} {% set wtype = ws.workset_type | lower %} {% if wtype == 'clinical' %} Clinical {% elif wtype == 'lsmc' %} LSMC {% else %} RUO {% endif %} {{ ws.customer_id or 'Unknown' }} {{ ws.state }} {{ ws.pipeline_type or 'germline' }} {% if ws.execution_cluster_name %}{{ ws.execution_cluster_name }}{% else %}{% endif %} {% if ws.execution_cluster_region %}{{ ws.execution_cluster_region }}{% else %}{% endif %} {{ ws.sample_count }} {% if ws.progress > 0 %}
{{ ws.progress }}% {% elif ws.state | lower in ['complete', 'completed'] %} Done {% elif ws.state | lower == 'error' %} Failed {% else %} Pending {% endif %}
{{ ws.updated_at[:16] | replace('T', ' ') if ws.updated_at else '—' }} {% if ws.compute_cost %}${{ "%.2f"|format(ws.compute_cost) }}{% else %}{% endif %} {% if ws.storage_available %}{{ ws.storage_human }}{% else %}{% endif %}

No worksets yet

Create your first workset to start processing genomics data.

Create Workset
0 worksets selected
{% endblock %} {% block extra_js %} {% endblock %}