Type II PKS gene cluster prediction details
{{help_tooltip(tooltip_content, "t2pks")}}
{% for prediction in predictions %}
{% if loop.index > 1 %}
{% endif %}
- Cluster section:
- {{prediction.start}} to {{prediction.end}}
{% if prediction.starter_units %}
- Starter unit(s):
- {% for pred in prediction.starter_units | sort(attribute='score', reverse=True) %}
{{pred.__str__()}}
{% endfor %}
-
{% endif %}
{% if prediction.malonyl_elongations %}
- Malonyl elongations:
-
{% for pred in prediction.malonyl_elongations | sort(attribute='score', reverse=True) %}
{{pred.__str__()}}
{% endfor %}
{% endif %}
{% if prediction.product_classes %}
- Product class(es):
-
{% for class in prediction.product_classes | sort %}
{{ class }}
{% endfor %}
{% endif %}
{% if prediction.molecular_weights %}
- Product molecular weight(s):
-
{% for comb, weight in prediction.molecular_weights.items() | sort %}
{{ comb }}: {{ '%d'| format(weight|int) }} Da
{% endfor %}
{% endif %}
{% for cds, predictions in prediction.cds_predictions.items() | sort %}
- {{ cds }}
{% for pred in predictions %}
-
{{pred.ptype}}
{% if pred.pfunc %}
{{pred.pfunc}}
{% endif %}
(Score: {{pred.bitscore}}; E-value: {{pred.evalue}})
{% endfor %}
{% endfor %}
{% endfor %}