-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (95 loc) · 4.13 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1.0">
<title>TRed – Tandem Repeats Detector</title>
<link rel="shortcut icon" href=".\graphics\favicon.ico">
<script>
function lastUpdate()
{
var x = document.lastModified;
document.getElementById("update").innerHTML += x;
}
function displayYear()
{
document.getElementsByClassName("year")[0].innerHTML = (new Date()).getFullYear();
}
</script>
<style>
html
{
background: url("https://raw.githubusercontent.com/mary060196/CISC5001_Research_Project_Implementing_TRed_Efficiently/master/graphics/background_transparent.png") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
div, p, h2, h4
{
margin: 0;
line-height: calc(2.6vh + 2.6vw);
letter-spacing: calc(0.05vh + 0.05vw);
}
h2, h4
{
margin-bottom: calc(1vh + 1vw);
}
a.disable
{
pointer-events: none;
}
.links
{
padding: calc(0.2vh + 0.2vw);
text-decoration: none;
color: black;
-webkit-box-shadow: 0px 0px calc(0.1vh + 0.1vw) calc(0.1vh + 0.1vw) black;
-moz-box-shadow: 0px 0px calc(0.1vh + 0.1vw) calc(0.1vh + 0.1vw) black;
box-shadow: 0px 0px calc(0.1vh + 0.1vw) calc(0.1vh + 0.1vw) black;
-webkit-transition-duration: 0.5s; /* Safari */
transition-duration: 0.5s;
}
.links:hover
{
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-transition-duration: 0.5s; /* Safari */
transition-duration: 0.5s;
}
</style>
</head>
<body style="font-family:Tahoma; font-size: calc(1.5vh + 1.5vw);" onload = "lastUpdate(); displayYear();">
<h2 style="display: flex;justify-content: center;" title="Tandem Repeats Detector (TRed)">Tandem Repeats Detector (TRed)</h2>
<div>
<h4 title="TRed Version 4">TRed Version 4</h4>
<p></p>
<a class="links" href="https://github.com/mary060196/CISC5001_Research_Project_Implementing_TRed_Efficiently/releases/tag/v4.0.1"
target="_blank" title="https://github.com/mary060196/CISC5001_Research_Project_Implementing_TRed_Efficiently/releases/tag/v4.0.1">
<span style="font-family: Courier, monospace;">v4.0.1</span> – Multi-threaded version: Default Setting (GitHub release)
</a>
<p style="margin-bottom: calc(0.5vh + 0.5vw);"></p>
<a class="links" href="https://github.com/mary060196/CISC5001_Research_Project_Implementing_TRed_Efficiently/releases/tag/v4.1.1-alpha"
target="_blank" title="https://github.com/mary060196/CISC5001_Research_Project_Implementing_TRed_Efficiently/releases/tag/v4.1.1-alpha">
<span style="font-family: Courier, monospace;">v4.1.1-alpha</span> – Suffix arrays version: Default Setting (GitHub release)
</a>
<p style="margin-bottom: calc(0.5vh + 0.5vw);"></p>
<a class="links" href="https://github.com/mary060196/CISC5001_Research_Project_Implementing_TRed_Efficiently/blob/master/TRed-Version-4-Documentation.pdf"
target="_blank" title="https://github.com/mary060196/CISC5001_Research_Project_Implementing_TRed_Efficiently/blob/master/TRed-Version-4-Documentation.pdf">
TRed Version <span style="font-family: Courier, monospace;">v4.x.x</span> Documentation
</a>
<p></p>
</div>
<div style="position: absolute; bottom: 0; width: 97%; font-size: calc(1.2vh + 1.2vw);">
<p>Miriam Briskman, CUNY Brooklyn College, CISC 5001 (Independent Study) class, Spring 2020</p>
<p>Supervising Professor: Dina Sokol, Ph.D.</p>
<p style="display: flex;justify-content: center;" >Visitors: ‌
<a href="https://www.webfreecounter.com/" class="disable" target="_blank" style="cursor: text"><img src="https://www.webfreecounter.com/hit.php?id=guaafkp&nd=6&style=10" border="0" alt="hit counter"></a>
</p>
<p id="update">Modified on: </p>
<div class = "copyright" style="display: flex;justify-content: center;">
<p style="margin: 0"> Copyright © <span class = "year"> </p>
</div>
</div>
</body>
</html>