-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathportal.html
92 lines (79 loc) · 4.02 KB
/
portal.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
<!DOCTYPE html>
<html lang=en>
<title>DISK: Automated DIscovery of Scientific Knowledge</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/w3.css">
<link rel="stylesheet" href="css/w3-theme-brown.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
//load the parts of the page that are always the same across the portal
$("#footerContent").load("footer.html");
});
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118863115-5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-118863115-5');
</script>
<body>
<header class="w3-container w3-theme w3-padding w3-center" id="topMenu">
<div class="w3-container">
<div class=" w3-container">
<h2><img src="images/LogoWithNameSmall.png" alt="DISK"/>
DISK: Automated DIscovery of Scientific Knowledge</h2>
</div>
</div>
<div class="w3-center">
<div class="w3-bar w3-theme">
<a href="index.html" class="w3-bar-item w3-button w3-padding-8">Home</a>
<a href="portal.html" class="w3-bar-item w3-button w3-padding-8 selected">Portals</a>
<a href="about.html" class="w3-bar-item w3-button w3-padding-8">About</a>
<a href="people.html" class="w3-bar-item w3-button w3-padding-8">People</a>
<a href="papers.html" class="w3-bar-item w3-button w3-padding-8">Papers</a>
<a href="sponsors.html" class="w3-bar-item w3-button w3-padding-8">Sponsors</a>
</div>
</div>
</header>
<div class="w3-content w3-justify">
<p>
The DISK framework can be configured to work with different scientific domains.
Each domain has is own selection of possible hypothesis and is connected to an apropiate data source for perform analysis.
Most results and visualizations are available for all users. To run new analysis an account is necessary, please contact us to request access.
</p>
<h3>NeuroDISK</h3>
<p>
The <a href="https://neuro.disk.isi.edu/hypotheses"> NeuroDISK portal</a> automates the analysis of neuroscience data through artificial intelligence (AI).
NeuroDISK is an AI-driven discovery engine that will continually processes neuroscience workflows when new data is available in the ENIGMA project.
</p>
<h3>Climate DISK</h3>
<p>
The <a href="https://climate.disk.isi.edu/hypotheses"> Climate DISK portal</a> uses scientific workflows to analyses climate the data stored in the LinkedEarth platform.
The LinkedEarth platform contains observational paleoclimate data stored in the LiPD format.
These datasets consist of paleoclimate measurements (such as tree ring width, the isotopic composition of ice, bulk composition of marine and lake sediments) as
a proxy for past environmental variables such as temperature and precipitation.
</p>
<h3>Bike-rental example</h3>
<p>
The <a href="https://bikes.disk.isi.edu/hypotheses"> Bikes-rental DISK portal</a>
is an example to illustrate DISK capabilities where we will understand if the Bikes-rental process is correlated to the environmental and seasonal settings.
For instance, weather conditions, precipitation, day of the week, season, the hour of the day, etc. can affect rental behaviors.
</p>
<h3>TGN10+</h3>
<p>
The <a href="https://tgn10plus.disk.isi.edu/hypotheses"> TGN10+ DISK portal</a>
is an example of the usage of DISK capabilities to compare differences in various demographic variables between groups of health professionals.
For example <i>What are the differences in "Demographic Variable" between primarily "day-shift" nurses and primarily "night-shift" nurses?</i>
</p>
<br/>
</div>
<!-- Footer (defined in footer.html)-->
<footer class="w3-container w3-theme-dark w3-padding-16" id ="footerContent">
</footer>
</body>
</html>