{% extends "base.html" %} {% block head %} {{ super() }} CanDIG server {{ info.getServerVersion()}} {% endblock %} {% block nav %} {{ super() }} {% endblock %} {% block content %}

CanDIG server {{ info.getServerVersion() }}

Protocol version {{ info.getProtocolVersion() }}

{{ info.getLandingMessageHtml() | safe}}

Registered peers

{% for peer in info.getPeers() %} {% endfor %}
URL
{{ peer.getUrl() }}

Operations available

Method Path Response Request Body
POST /auth/token An access token {"username": "your_username", "password": "your_password"}
For information on data-related endpoints, see API Info Page

Uptime

Running since {{ info.getNaturalUptime()}} ({{ info.getPreciseUptime()}})

Configuration

{% for key, value in info.getConfiguration() %} {% endfor %}
Key Value
{{ key }} {{ value }}

Data

{% for dataset in info.getDatasets() %}

Dataset name: {{ dataset.getLocalId() }} id: {{ dataset.getId() }}

VariantSets
{% for variantSet in info.getVariantSets(dataset.getId()) %} {% endfor %}
Name Id
{{ variantSet.getLocalId() }} {{ variantSet.getId() }}
VariantAnnotationSets
{% for variantAnnotationSet in info.getVariantAnnotationSets(dataset.getId()) %} {% endfor %}
Name Id
{{ variantAnnotationSet.getLocalId() }} {{ variantAnnotationSet.getId() }}
FeatureSets
{% for featureSet in info.getFeatureSets(dataset.getId()) %} {% endfor %}
Name Id
{{ featureSet.getLocalId() }} {{ featureSet.getId() }}
ContinuousSets
{% for continuousSet in info.getContinuousSets(dataset.getId()) %} {% endfor %}
Name Id
{{ continuousSet.getLocalId() }} {{ continuousSet.getId() }}
ReadGroupSets
{% for readGroupSet in info.getReadGroupSets(dataset.getId())%} {% for readGroup in readGroupSet.getReadGroups() %} {% endfor %} {% endfor %}
Name Id ReadGroup Name ReadGroup Id
{{ readGroupSet.getLocalId() }} {{ readGroupSet.getId() }}
{{ readGroup.getLocalId() }} {{ readGroup.getId() }}
PhenotypeAssociationSets
{% for paSet in info.getPhenotypeAssociationSets(dataset.getId()) %} {% endfor %}
Name Id
{{ paSet.getLocalId() }} {{ paSet.getId() }}
RnaQuantificationSets
{% for rnaQuantificationSet in info.getRnaQuantificationSets(dataset.getId()) %} {% endfor %}
Name Id
{{ rnaQuantificationSet.getLocalId() }} {{ rnaQuantificationSet.getId() }}
{% endfor %}

ReferenceSets

{% for referenceSet in info.getReferenceSets() %} {% for reference in referenceSet.getReferences() %} {% endfor %} {% endfor %}
Name Id Reference Name Reference Id
{{ referenceSet.getLocalId() }} {{ referenceSet.getId() }}
{{ reference.getLocalId() }} {{ reference.getId() }}
{% endblock %} {% block footer %} {{ super() }} {% endblock %}