File: index.html

package info (click to toggle)
tortoize 2.0.16-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,432 kB
  • sloc: cpp: 3,930; javascript: 174; sh: 11; makefile: 11
file content (103 lines) | stat: -rw-r--r-- 3,380 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html SYSTEM "about:legacy-compat" [
<!ENTITY plusmn "&#177;">
]>

<html xmlns:z="http://www.hekkelman.com/libzeep/m2" lang="en">

<head>
	<meta charset="utf8"/>
	<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
	<title>Tortoize web service</title>
	<link href='css/pdb-redo-style.css' z:href="@{/tortoize/css/pdb-redo-style.css}" rel='stylesheet' type="text/css"/>
	<script z:src="@{/tortoize/scripts/index.js}"></script>
</head>

<body>

	<header>

		<div class="h-left">
			<a href="https://pdb-redo.eu/" z:href="@{/}"><img z:src="@{/tortoize/images/PDB_logo_rect_medium.svg}" alt="PDB-REDO logo" /></a>
		</div>
		<div class="h-right">
			<div class="first">
				<nav>
					<a href="http://www.nki.nl" target="_BLANK">NKI Research</a> |
					<a href="http://www.nki.nl/divisions/biochemistry/" title="BioChemistry Homepage" target="_BLANK">Biochemistry</a>
					|
					<a href="http://www.nki.nl/divisions/biochemistry/perrakis-a-group/" target="_BLANK">Perrakis group</a>
				</nav>
			</div>
		</div>

		<nav class="navbar navbar-expand-sm bg-nav-secondary navbar-dark">
			<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
				aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
				<span class="navbar-toggler-icon"></span>
			</button>
		
			<div class="collapse navbar-collapse" id="navbarSupportedContent">
				<ul class="navbar-nav mr-auto">
	
					<li class="nav-item">
						<a class="nav-link" z:href="@{/}">Home</a>
					</li>

					<li class="nav-item active">
						<a class="nav-link" z:href="@{/tortoize}">Tortoize</a>
					</li>
	
				</ul>
			</div>
		</nav>
	</header>

	<div class="container">

		<h6 class="mb-3 mt-5">Tortoize, calculate Ramachandran Z-scores</h6>

		<form id="tortoize-form" action="tortoize" enctype="multipart/form-data" method="POST">

			<div class="custom-file mb-3">
				<input type="file" class="custom-file-input" aria-describedby="input-group-coordinates-file"
					name="data" id="coordinates-file" required="required" />
				<label class="custom-file-label" for="coordinates-file">Choose coordinates file</label>
			</div>

			<div class="custom-file mb-3">
				<input type="file" class="custom-file-input" aria-describedby="input-group-restraints-file"
					name="dict" id="restraints-file" />
				<label class="custom-file-label" for="restraints-file">Choose custom restraints file (optional)</label>
			</div>

			<button type="submit" form="tortoize-form" class="btn btn-primary mb-3">Calculate</button>
		</form>

		<hr/>

		<table id='tortoize-table' class="table table" style="display: none;">
			<caption>Calculated scores</caption>
			<thead>
				<tr>
					<th>Model</th>
					<th>Ramachandran z-score</th>
					<th>Side-chain z-score</th>
				</tr>
			</thead>
			<tbody></tbody>
		</table>

		<div class="alert alert-danger" role="alert" id="tortoize-alert">
			The web interface failed to initialize, perhaps Javascript is not working properly?
		</div>

	</div>

	<footer class="container">
		<p><strong>Sobolev et al.</strong> <em>A Global Ramachandran Score Identifies Protein Structures with
			Unlikely Stereochemistry</em>, Structure (2020), DOI: <a href="https://doi.org/10.1016/j.str.2020.08.005">10.1016/j.str.2020.08.005</a></p>
	</footer>

</body>
</html>