-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (72 loc) · 4.15 KB
/
Copy pathindex.html
File metadata and controls
77 lines (72 loc) · 4.15 KB
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
<!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" />
<link rel="stylesheet" href="css/custom.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 selected">Home</a>
<a href="software.html" class="w3-bar-item w3-button w3-padding-8">Software</a>
<a href="portal.html" class="w3-bar-item w3-button w3-padding-8">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">
<h3 class="w3-center">DISK</h3>
<p>
DISK is a novel framework to test and revise hypotheses based on automatic analysis of scientific data repositories that grow over time.
Given an input hypothesis, DISK is able to search for appropriate data to test it and revise it accordingly, and does this continuously as new data be-comes available.
DISK is also capable of triggering new kinds of analyses when new kinds of data become available.
The provenance of the revised hypotheses is recorded, with all the details of the analyses.
Ongoing research includes extending DISK to generate interactive explanations for scientists based on provenance records, developing a general approach to the design of meta-workflows, handling more
complex hypotheses, and exploring the use of this approach in other areas of science.
</p>
<p>
We are currently using DISK with multi-omics data from a seminal cancer study, climate data from the LinkedEarth platform and other examples. See the <a href="/portal.html">portals</a> section for more information.
</p>
<h3>Documentation</h2>
<p>
Find out how you can use DISK to test and revise hypotheses. <a href="https://disk.readthedocs.io/en/stable/"> Documentation </a>
</p>
<h3>Source code</h3>
<p>
DISK is open source and available as Git repositories.
Please read the <a href="https://disk.readthedocs.io/en/stable/developer-guide/contributing/"> Developer Documentation </a> for more information.
</p>
</div>
<!-- Footer (defined in footer.html)-->
<footer class="w3-container w3-theme-dark w3-padding-16" id="footerContent"></footer>
</body>
</html>