{% extends "base.html" %} {% load static %} {% load customtags %} {% block head %} {% include 'head_content.html' with title="LyProX ยท Download CSV" %} {% endblock head %} {% block content %}

Datasets

Below we list the datasets that have been uploaded to LyProX. You can download the datasets as CSV files using the download button or view the data description by following the info button.

{% for dataset in dataset_list %}
institution logo

{{ dataset.institution.name }}, {{ dataset.institution.city }}, {{ dataset.institution.country }}

{{ dataset.date_created }}  {% if dataset.is_outdated %} (outdated) {% else %} (up to date) {% endif %}

{{ dataset.patient_count }} patients in dataset

{% if dataset.is_locked %} Locked, cannot be edited {% else %} Editable {% endif %}

{% if dataset.is_public %} Publicly available {% else %} Only visible to logged-in users {% endif %}

Download Readme {% if not dataset.is_locked %} Delete {% endif %}
{% endfor %}

Upload new dataset

Create a new dataset by uploading a cohort of patients as a CSV file. You can download one of the existing datasets' CSV files as a template or read the data description below to understand the required format.

{% endblock content %}