-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.library.html
executable file
·110 lines (106 loc) · 4.78 KB
/
index.library.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>{{title}}</title>
<link rel="stylesheet" href="http://service.tartaglialab.com/static_files/styles/gtt_lab_styles.css" type="text/css" media="all" charset="utf-8">
<link rel="stylesheet" href="style.css" type="text/css" media="all">
<link rel="stylesheet" href="http://service.tartaglialab.com/static_files/styles/jRating.jquery.css" type="text/css" media="all">
</head>
<body>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script>
<!-- security start -->
<script language="javascript" type="text/javascript" src="http://service.tartaglialab.com/static_files/js/md5-min.js"></script>
<script language="javascript" type="text/javascript" src="http://service.tartaglialab.com/static_files/js/parseuri.js"></script>
<script language="javascript" type="text/javascript" src="http://service.tartaglialab.com/static_files/js/jRating.jquery.js"></script>
<style type="text/css">
body {
/*hide main content */
display:none;
}
</style>
<script type="text/javascript" charset="utf-8">
// get pathname
var pathname = String(window.location.pathname.split("/").slice(0, -1).join("/"))
var fullurl = String(window.location)
try {
if (parseUri(fullurl).queryKey["unlock"].slice(0, 10) == hex_md5(pathname).slice(0, 10)) {
$().ready(function() {
$("body").show()
$("body").css("display", "block");
})
} else {
$().ready(function() {
$("body").empty()
$("body").show()
$("body").html("Unauthorised access - please contact administrator with current URL to restore access to the submission")
})
}
} catch (err) {
$().ready(function() {
$("body").empty()
$("body").show()
$("body").html("Unauthorised access - please contact administrator with current URL to restore access to the submission")
})
}
</script>
<!-- security end -->
<script type="text/javascript" src="jquery.tablesorter.js"></script>
<script>
$(document).ready(function(){
$('#table').tablesorter({
widgets: ['zebra'],
widgetZebra: {css: ["NormRow","AltRow"]} // css classes to apply to rows
});
});
</script>
<div id="topbar">
<div id="home_panel">
<p><a href="http://service.tartaglialab.com/">Portal Home</a></p>
</div>
<div id="title_server">
<h1>catRAPID Library Generator</h1>
</div>
<div id="navbar_server">
<h3>[
<a target="_blank" href="http://service.tartaglialab.com/new_submission/catrapid_library">catLibrary Home</a>
-
<a target="_blank" href="http://service.tartaglialab.com/static_files/shared/documentation.html">Documentation</a>
-
<a target="_blank" href="http://service.tartaglialab.com/static_files/shared/tutorial.html#2">Tutorial</a>
-
<a target="_blank" href="http://service.tartaglialab.com/static_files/shared/faqs.html">FAQs</a>
-
<a target="_blank" href="http://pasteur.crg.es/portal/page/portal/827A462EAB6802B3E04012AC0E01291B">Group page @ CRG</a>
]</h3>
</div>
</div>
<div id="welcome_server">
<div>
<h2>Your submission results</h2><br />
<span id="submission_info">
<h4>Information about the JOB:</h4>
<p>ID: {{randoms}}<br />
User label: {{title}}<br />
Dataset: {{DatasetA}}<br />
Generated: {{generated}}<br />
</p>
</span>
<br />
<div>
<div>
<p style="text-align:center;">The calculation of you custom library is finished!</p><br>
<p style="text-align:center;">Please, before proceeding have a look at the <a href="not_calculated.txt">sequences excluded</a> from the library.</p><br>
<p style="text-align:center;">Now you can use this Job ID (<a href="{{link_to_omics}}">{{randoms}}</a>) in the <i>cat</i>RAPID omics custom reference submission.</p>
</div>
<div style="clear:both;">
<br>
</div>
</div>
<div id="footer_main">
<hr>
<p>© 2012 - <a href="http://big.crg.cat/gene_function_and_evolution" target="_blank">Gene Function and Evolution</a> - <a href="http://www.crg.eu" target="_blank">Center for Genomic Regulation (CRG)</a></p>
</div>
</div>
</body>
</html>