{% extends "base.html" %} {% block head_title %}{{ protein }} - Detail {% endblock %} {% block title %} {{ protein }} Detail {% endblock %} {% block scripts %} {% endblock %} {% block content %}

{{ protein }}

Protein Families

{% for protein_detail in protein.proteindetail_set.all %} {% ifequal protein_detail.species.scientific_name "Drosophila melanogaster" %}{% endifequal %} {% ifequal protein_detail.species.scientific_name "Caenorhabditis elegans" %}{% endifequal %} {% ifequal protein_detail.species.scientific_name "Saccharomyces cerevisiae" %}{% endifequal %} {% endfor %}
Protein Species Gene Protein Sequence Nucleotide Sequence
{{ protein_detail }} {{ protein_detail.species }} {{ protein_detail.gene }} {{ protein_detail.RefSeqProtein }} {{ protein_detail.RefSeqNucleotide }}{{protein_detail.gene}}

Add new protein isoform here

Antibodies ({{ protein.antibody_set.count }})

{% for antibody in protein.antibody_set.all %} {% endfor %}
{{ antibody }}

Constructs ({{ protein.construct_set.count }})

{% for construct in protein.construct_set.all %} {% endfor %}
{{ construct }}

Primers ({{protein.primer_set.count}})

{% for primer in protein.primer_set.all %} {% endfor %}
Primer Type Sequence
{{ primer }} {{ primer.primer_type }} {{ primer.sequence }}

Strains ({{protein.strain_set.count}})

{% for strain in protein.strain_set.all %} {% endfor %}
{{ strain|safe }}

Experiments ({{ protein.experiment_set.count }})

{% for experiment in protein.experiment_set.all %} {% endfor %}
{{ experiment }}
{% with protein as object %} {% include "comment.html" %} {% endwith %}
{% endblock %}