Sha256: 0514f6c79d95559b465ce7e13c73fb6f841c5259452d11bd56e8abffd5dc1bfe

Contents?: true

Size: 1.51 KB

Versions: 3

Compression:

Stored size: 1.51 KB

Contents

<%# Detailed Report Template %>
<script type="text/template" id="detailed_report_template">
  <h3>Query Accession {{= query }}</h3>
  {{ _.each(data, function(v) { }}
    <div id="{{= v.id }}">
      <p class="small">{{= QUORUM.displayHspLinks(v.id, v.hsp_group, data) }}</p>
      <p class="small">Hit Accession: {{= v.hit_display_id }}</p>
      <p class="small">Hit Description: {{= v.hit_def }}</p>
      <table class="report_details">
        <tr>
          <td>E-value: {{= QUORUM.formatEvalue(v.evalue) }}</td>
          <td>Bit Score: {{= v.bit_score }}</td>
          <td></td>
        </tr>
        <tr>
          <td>Alignment Length: {{= v.align_len }}</td>
          <td>Qstrand / Hstrand: {{= QUORUM.formatStrand(v.query_frame, v.hit_frame) }}</td>
          <td></td>
        </tr>
        <tr>
          <td>Query Length: {{= v.query_len }}</td>
          <td>Query From: {{= v.query_from }}</td>
          <td>Query To: {{= v.query_to }}</td>
        </tr>
        <tr>
          <td>Hit Length: {{= v.hit_len }}</td>
          <td>Hit From: {{= v.hit_from }}</td>
          <td>Hit To: {{= v.hit_to }}</td>
        </tr>
      </table>
      <p class="small">
        <a class="download_sequence" id="download_sequence_{{= v.id }}"
          onclick="QUORUM.downloadSequence({{= v.id }}, '{{= algo }}', this)">
          Download Sequence
        </a>
      </p>
      {{= QUORUM.formatSequenceReport(v.qseq, v.midline, v.hseq, v.query_from, v.query_to, v.hit_from, v.hit_to, algo) }}
    </div>
    <hr />
    {{ }); }}
</script>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
quorum-0.8.2 app/views/quorum/jobs/templates/_blast_detailed_report_template.html.erb
quorum-0.8.1 app/views/quorum/jobs/templates/_blast_detailed_report_template.html.erb
quorum-0.8.0 app/views/quorum/jobs/templates/_blast_detailed_report_template.html.erb