-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprediction.html
More file actions
165 lines (153 loc) · 5.06 KB
/
prediction.html
File metadata and controls
165 lines (153 loc) · 5.06 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<script type="text/javascript" src="index.js"></script>
<script type="text/javascript" src="3Dmol.js"></script>
<script type="text/javascript" src="usefull_function.js"></script>
</head>
<body class="container-principal">
<div id="header"></div>
<br />
<h1>Prédiction avec Phyre2</h1>
<div class="form-pred">
<div id="info-phyre">
<br />
<h2>
Utiliser l'outil Phyre2 pour prédire des structures tridimensionnelles
:
</h2>
<h2>1. Copiez la séquence en acide aminé</h2>
<h2>2. Entrez votre adresse email</h2>
<h2>
3. Dès que la prédiction sera prête, vous recevrez un mail avec le
fichier pdb de la protéine
</h2>
<h2>4. Visualiser avec l'outil Visualisation</h2>
</div>
<div id="table-ph">
<form
id="formpopup"
enctype="multipart/form-data"
action="http://www.sbg.bio.ic.ac.uk/phyre2/webscripts/phyre2_submit.cgi"
method="post"
onsubmit="target_popup(this)"
>
<br />
<div class="test">
<table
class="round"
width="60%"
cellspacing="1"
cellpadding="3"
border="0"
>
<tbody>
<tr>
<td id="table-phyre" align="right">
<font color="white"> E-mail Address</font>
</td>
<td align="left">
<!-- index_form_start.html end -->
<!-- -->
<input
class="txt-phyre"
type="text"
size="53"
name="usr-email"
aria-label="usr-email"
/>
</td>
</tr>
<tr>
<td id="table-phyre" align="right">
<font color="white"> Optional Job description</font>
</td>
<td align="left">
<input
class="txt-phyre"
type="text"
size="53"
name="seq-desc"
aria-label="seq-desc"
/>
</td>
</tr>
<tr>
<td id="table-phyre" align="right">
<font color="white"> Amino Acid Sequence</font>
</td>
<td align="left">
<textarea
class="txt-phyre"
name="sequence"
aria-label="sequence"
rows="10"
cols="56"
></textarea>
</td>
</tr>
<tr>
<td align="right"> </td>
<td align="left">
<!-- -->
<!-- index_bottomhalf_commercial begin -->
</td>
</tr>
<tr>
<td align="right">
<font color="white">Modelling Mode </font>
</td>
<td align="left">
<label for="normal">Normal</label
><input
type="radio"
name="modelmode"
id="normal"
value="normal"
checked=""
aria-label="normal"
/>
<label for="intensive">Intensive</label
><input
type="radio"
name="modelmode"
value="intensive"
id="intensive"
aria-label="intensive"
/>
</td>
</tr>
<td class="bottomLeftRound" align="center"> </td>
<td align="left">
<input
class="phyre-but"
id="phyre-sub"
type="submit"
size="4"
value="Phyre Search"
name="btnS"
/>
<input
class="phyre-but"
id="phyre-res"
type="reset"
size="4"
value="Reset"
/>
</td>
</tbody>
</table>
</div>
</form>
<!-- index_bottomhalf_commercial end -->
<!-- -->
<p>
<font size="-2"> Phyre2 5175087 submissions since Feb 14 2011</font>
</p>
<!-- -->
</div>
</div>
</body>
<link rel="stylesheet" href="stylesheet.css" />
<link rel="stylesheet" href="prediction.css" />
</html>