{% if subcrates %} {% for subcrate in subcrates %}

{{ subcrate.name }}

Content Summary

๐Ÿ“Š Files ({{ subcrate.files_count }})
{% if subcrate.file_formats or subcrate.file_access %}
{% if subcrate.file_formats %}
Formats: {% for fmt, count in subcrate.file_formats.items() %}{{ fmt }} ({{ count }}){% if not loop.last %}, {% endif %}{% endfor %}
{% endif %} {% if subcrate.file_access %}
Access: {% for acc, count in subcrate.file_access.items() %}{{ acc }} ({{ count }}){% if not loop.last %}, {% endif %}{% endfor %}
{% endif %}
{% endif %}
๐Ÿ’ป Software & Instruments ({{ subcrate.software_count + subcrate.instruments_count }})
{% if subcrate.software_count > 0 or subcrate.instruments_count > 0 %}
Software: {{ subcrate.software_count }}
Instruments: {{ subcrate.instruments_count }}
{% endif %}
๐Ÿงช Inputs ({{ subcrate.inputs_count }})
{% if subcrate.samples_count > 0 %}
Derived From: {% if subcrate.cell_lines %} {% for line_id, cell_info in subcrate.cell_lines.items() %} {{ cell_info.name }}. {{ cell_info.organism_name }}. ({{ cell_info.identifier }}) {% endfor %} {% else %} Not specified {% endif %}
{% endif %} {% if subcrate.input_datasets %}
Datasets: {{ subcrate.input_datasets_count }}
{% for fmt, count in subcrate.input_datasets.items() %}{{ fmt }} ({{ count }}){% if not loop.last %}, {% endif %}{% endfor %}
{% endif %}
โš™๏ธ Other Components
Experiments: {{ subcrate.experiments_count }}
{% if subcrate.experiment_types %}
{% for type, count in subcrate.experiment_types.items() %}{{ type }} ({{ count }}){% if not loop.last %}, {% endif %}{% endfor %}
{% endif %} {% if subcrate.experiment_patterns %}
{% for pattern in subcrate.experiment_patterns %}{{ pattern }}{% if not loop.last %}, {% endif %}{% endfor %}
{% endif %}
Computations: {{ subcrate.computations_count }}
{% if subcrate.computation_patterns %}
{% for pattern in subcrate.computation_patterns %}{{ pattern }}{% if not loop.last %}, {% endif %}{% endfor %}
{% endif %}
Schemas: {{ subcrate.schemas_count }}
Other: {{ subcrate.other_count }}
{% endfor %} {% else %}

No subcrates found.

{% endif %}