-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsoftware.html
More file actions
103 lines (96 loc) · 5.04 KB
/
software.html
File metadata and controls
103 lines (96 loc) · 5.04 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
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
<!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">Home</a>
<a href="software.html" class="w3-bar-item w3-button w3-padding-8 selected">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">Software components</h3>
<h3>Repositories</h3>
<p>
DISK is implemented as various software components. All of them available on GitHub.
<ul>
<li>
The main component is the <b>DISK-API</b>, it provides the backend of the application. It connects to other services to obtain data and run workflows.
Code and releases are available on
<a href="https://github.com/KnowledgeCaptureAndDiscovery/DISK-API" target="_blank">KnowledgeCaptureAndDiscovery/DISK-API</a>
</li>
<li>
The <b>DISK-UI</b>, is the interface of the application, distributed as a WebPage (ReactApp).
Code and releases are available on
<a href="https://github.com/KnowledgeCaptureAndDiscovery/DISK-UI" target="_blank">KnowledgeCaptureAndDiscovery/DISK-UI</a>
</li>
<li>
<b>WINGS</b> a workflow manager compatible with DISK. Necessary for running workflows.
Code and releases are available on
<a href="https://github.com/KnowledgeCaptureAndDiscovery/wings" target="_blank">KnowledgeCaptureAndDiscovery/wings</a>
</li>
</ul>
</p>
<p>
A SPARQL compatible data source is required for DISK to access data and send it for workflow executions. For local installations we recommend
<a href="https://jena.apache.org/documentation/fuseki2/" target="_blank">Apache Jena Fuseki</a>.
</p>
<h3>Installation & Configuration</h3>
<p>
All documentation is available <a href="https://disk.readthedocs.io/en/stable/">here</a>.
</p>
<p>
For installation and configuration of the DISK system please follow the latest instructions on the
<a href="https://disk.readthedocs.io/en/stable/admin-guide/installation/"> Developer Installation Documentation</a>.
</p>
<h3>Citation</h3>
<p>
<ul>
<li>
<a href="https://zenodo.org/records/10927931" target="_blank"> zenodo:10927931 </a>
</li>
<li>
<a href="https://zenodo.org/records/10927936" target="_blank"> zenodo:10927936 </a>
</li>
</ul>
</p>
</div>
<!-- Footer (defined in footer.html)-->
<footer class="w3-container w3-theme-dark w3-padding-16" id="footerContent"></footer>
</body>
</html>