update path to some dynamic pages
[proteocache.git] / webapp / view / reports / SSFeatures.jsp
1 <%@ page language="java" contentType="text/html; charset=UTF-8"
2         pageEncoding="UTF-8"%>
3 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
4
5 <%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
6 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
7 <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
8 <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
9 <%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
10
11 <html>
12 <jsp:include page="../fragments/header.jsp" />
13 <body>
14         <div class="container">
15                 <jsp:include page="../fragments/mainmenu.jsp" />
16                 <spring:url value="/sequence/results" var="sequence_query" />
17                 <spring:url value="/features/results" var="the_query"/>
18                 <spring:url value="/features/results?TypeFeatures=${feature}&Percent=${percent}" var="the_query" />
19
20         <!-- reload and CSV buttons -->
21         <ul class="nav navbar-nav navbar-right">
22                 <li>
23                 <a href="${the_query}" class="btn btn-default active">Reload</a>
24                 </li>
25                 <c:choose><c:when test="${csvfile != ''}">
26                 <li>
27                 <a id="forCSVfile" download="data.csv" href="data:application/csv;charset=utf-8,${csvfile}" class="btn btn-default active">CSV</a>
28                 </li>
29                 </c:when></c:choose>
30         </ul>
31
32         <div class="panel panel-default">
33         <div class="panel-heading">
34                 <p style="font-weight:bold;">Protein Secondary Structure Feature Statistics</p>
35         </div>
36
37         <div class="panel-body">
38 <sec:authorize access="hasRole('ROLE_ADMIN')">
39                         <p>Servlet execution time: ${timeExecution} milliseconds</p>
40 </sec:authorize>
41                 <c:choose>
42                 <c:when test="${njobs == 0}">
43                         <p>No proteins with feature ${feature} more then ${percent}% of the protein sequence found</p>
44                 </c:when>
45                 <c:otherwise>
46                         <p>${njobs} proteins with feature ${feature} more then ${percent}% of the protein sequence found</p>
47                         <div class="table-responsive">
48                         <table class="table table-striped table-hover table-bordered">
49                         <thead>
50                                 <tr>
51                                         <th style="text-align: centre">N</th>
52                                         <th style="text-align: left">Protein/Prediction</th>
53                                 </tr>
54                         </thead>
55                         <tbody>
56                                 <c:set var="count" value="0" scope="page" />
57                                 <c:forEach items="${results}" var="res">
58                                         <c:set var="count" value="${count + 1}" scope="page"/>
59                                         <tr>
60                                                 <td rowspan = 2>${count}
61                                                 <td style="text-align: left; border-buttom: dotted; font-family: monospace">
62                                                 <a title="Click to view all jobs" href="${sequence_query}?sequence=${res.key}&searchtype=whole">
63                                                 <script>
64                                                         document.write(shorten('${res.key}', 108));
65                                                 </script>
66                                                 </a></td>
67                                         </tr>
68                                         <tr>
69                                                 <td style="text-align: left; border-buttom: dotted; font-family: monospace">
70                                                 <script>
71                                                         document.write(shorten('${res.value}', 108));
72                                                 </script>
73                                                 </td>
74                                         </tr>
75                                 </c:forEach>
76                         </tbody>
77                         </table>
78                         </div>
79                 </c:otherwise>
80                 </c:choose>
81         </div>
82         </div>
83
84         <jsp:include page="../fragments/footer.jsp" />
85         </div>
86 </body>
87 </html>