-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput2.html
139 lines (120 loc) · 3.48 KB
/
output2.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
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
<!DOCTYPE html>
<html>
<head>
<h1><font face="verdana" color="green">AgriGEM</h1></font>
<img src="https://s3.amazonaws.com/nightjarprod/wp-content/uploads/sites/16/2018/06/07115138/Gem-sidebar-icon.png" alt="Trulli" width="15%" height="15%">
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<h2><font face="verdana" color="Brown">Highest yielding variety by soil type='Deep Clay' location='Norfolk' proceeding crop='sugarbeet'</font></h2>
<h3><font face="verdana" color="Blue">Click on column header to sort</font></h3>
<table id="myTable">
<tr>
<th onclick="sortTable(0)">Variety</th>
<th onclick="sortTable(1)">Year</th>
<th onclick="sortTable(2)">Yield (t/ha)</th>
</tr>
<tr>
<td>Skyfall</td>
<td>2016</td>
<td>11.3</td>
</tr>
<tr>
<td>Zulu</td>
<td>2015</td>
<td>9.2</td>
</tr>
<tr>
<td>Hardwicke</td>
<td>2017</td>
<td>10.9</td>
</tr>
<tr>
<td>Crusoe</td>
<td>2017</td>
<td>8.8</td>
</tr>
<tr>
<td>Spyder</td>
<td>2016</td>
<td>9.6</td>
</tr>
<tr>
<td>Moulton</td>
<td>2018</td>
<td>9.2</td>
</tr>
</table>
<p>AgriGEM is a public platform for bringing together agronomic environmental and genomic data. The aim of this tool is to query and data sets from farmers for scientific purposes. This tool was designed in an EBI hackathon by group 5.</p>
<script>
function sortTable(n) {
var table, rows, switching, i, x, y, shouldSwitch, dir, switchcount = 0;
table = document.getElementById("myTable");
switching = true;
//Set the sorting direction to ascending:
dir = "asc";
/*Make a loop that will continue until
no switching has been done:*/
while (switching) {
//start by saying: no switching is done:
switching = false;
rows = table.rows;
/*Loop through all table rows (except the
first, which contains table headers):*/
for (i = 1; i < (rows.length - 1); i++) {
//start by saying there should be no switching:
shouldSwitch = false;
/*Get the two elements you want to compare,
one from current row and one from the next:*/
x = rows[i].getElementsByTagName("TD")[n];
y = rows[i + 1].getElementsByTagName("TD")[n];
/*check if the two rows should switch place,
based on the direction, asc or desc:*/
if (dir == "asc") {
if (x.innerHTML.toLowerCase() > y.innerHTML.toLowerCase()) {
//if so, mark as a switch and break the loop:
shouldSwitch= true;
break;
}
} else if (dir == "desc") {
if (x.innerHTML.toLowerCase() < y.innerHTML.toLowerCase()) {
//if so, mark as a switch and break the loop:
shouldSwitch = true;
break;
}
}
}
if (shouldSwitch) {
/*If a switch has been marked, make the switch
and mark that a switch has been done:*/
rows[i].parentNode.insertBefore(rows[i + 1], rows[i]);
switching = true;
//Each time a switch is done, increase this count by 1:
switchcount ++;
} else {
/*If no switching has been done AND the direction is "asc",
set the direction to "desc" and run the while loop again.*/
if (switchcount == 0 && dir == "asc") {
dir = "desc";
switching = true;
}
}
}
}
</script>
</body>
</html>