comparison ramachandran_auto_protein_html.j2 @ 0:743bd6aa3c7a draft

"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit 1b23e024af45cc0999d9142d07de6897d4189ec2"
author chemteam
date Mon, 24 Aug 2020 16:41:41 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:743bd6aa3c7a
1 <html>
2
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
5 <title>{{ title }}</title>
6 </head>
7
8 <body>
9 <table>
10 <tr>
11 <th>Selection</th>
12 <th>Ramachandran scatter plot</th>
13 <th>Ramachandran histogram </th>
14 </tr>
15 {% for plot in plots %}
16 <tr>
17 <td>{{ plot['Name'] }}</td>
18 <td style="vertical-align:center"><img src="data:image/png;base64,{{plot['plot1']}}" /> </td>
19 <td style="vertical-align:center"><img src="data:image/png;base64,{{plot['plot2']}}" /> </td>
20 </tr>
21 {% endfor %}
22 </table>
23 </body>
24
25 </html>