{% extends sitebase.html %}
{% block head %}
{% from qiita_core.qiita_settings import qiita_config %}
{% end %}
{% block content %}
{% if software %}
Available Software
Here you will find our current processing recommendations.
Plugin |
Commands |
{% for s in software %}
{% if s.active %}
{% else %}
{% end %}
ID {{s.id}}: {{s.name}}, {{s.version}}
{% if s.deprecated %}
Deprecated
{% end %}
|
Command Name |
Resource Allocation |
{% for c in s.commands %}
{% if c.active %}
{% else %}
{% end %}
ID {{c.id}}: {{c.name}}
|
{{c.resource_allocation}} |
{% end %}
|
{% end %}
{% else %}
There are no plugins in this system.
{% end %}
{% end %}