-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (91 loc) · 3.76 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
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang=en>
<title>NeuroDISK</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"/>
<link rel="stylesheet" href="css/w3.css">
<link rel="stylesheet" href="css/w3-theme-red.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>
<head>
<style>
h1 {
color:goldenrod
}
.w3-container {
position: relative;
}
.topleft {
float: left;
}
.w3-bar .w3-button {
padding: 16px;
}
.footer {
left: 0;
bottom: 0;
width: 100%;
background-color:white;
color:black;
text-align: center;
}
</style>
</head>
<body>
<header class="w3-container w3-theme-d5 w3-padding" id="topMenu">
<div class=" w3-container">
<div class=" w3-container">
<div class="topleft">
<h1><img src="images/Logo.png" alt="NeuroDISK" width=50px height=50px/>
NeuroDISK
</h1>
</div>
</div>
</div>
<div class="w3-right">
<div class="w3-bar w3-theme-d5">
<a href="index.html" class="w3-bar-item w3-button w3-padding-8 selected">About</a>
<a href="research.html" class="w3-bar-item w3-button w3-padding-8">Research</a>
<a href="people.html" class="w3-bar-item w3-button w3-padding-8">People</a>
<a href="publications.html" class="w3-bar-item w3-button w3-padding-8">Publications</a>
<a href="ontologies.html" class="w3-bar-item w3-button w3-padding-8">Ontologies</a>
<a href="portal.html" class="w3-bar-item w3-button w3-padding-8">Portal</a>
<a href="acknowledgements.html" class="w3-bar-item w3-button w3-padding-8">Acknowledgements</a>
</div>
</div>
</header>
<br />
<div class="w3-center">
<h2><b>The NeuroDISK Project</b></h2>
</div>
<br />
<div class="w3-content w3-justify">
<p>
There is abundant brain image and genetic data for researchers to understand brain structure, functions and disease. It is challenging to carry out comprehensive analyses that integrate available data. Though data generation is continuous, analyses are seldom repeated and their results updated. <br />
<br />
The Neuro-DISK project automates the analysis of neuroscience data through artificial intelligence (AI). NeuroDISK is an AI-driven discovery engine that will continually processes neuroscience data. We use ontologies of hypotheses to represent science driving questions, semantic representations to reason about the data available, machine learning to improve accuracy, and intelligent workflows to customize the analysis to the data. Given a science question, NeuroDISK autonomously determines what data is needed, triggers the execution of relevant families of workflows, customize them to the data at hand, and alert users of interesting findings.<br />
<br />
We are developing NeuroDISK in collaboration with researchers from the ENIGMA consortium who study different neuroscience questions.<br />
</p>
</div>
<div class="footer">
<hr />
<p>NeuroDISK 2022 Copyright ©| University of Southern California</p>
</div>
</body>
</html>