-
Notifications
You must be signed in to change notification settings - Fork 4
/
page.html
263 lines (188 loc) · 14.9 KB
/
page.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<!--Processing Instructions and the XML Declaration are both forbidden in polyglot markup. [http://www.w3.org/TR/html-polyglot]-->
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<!--In HTML documents, elements in the HTML namespace may have an xmlns attribute specified, if, and only if, it has the exact value "http://www.w3.org/1999/xhtml". [http://www.w3.org/TR/html5/dom.html#global-attributes]-->
<head>
<title>EDAM: Ontology of bioscientific data analysis and data management</title>
<!--<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8"/> ... polyglot markup does not use the http-equiv="Content-Type" declaration on the meta element. [http://dev.w3.org/html5/html-xhtml-author-guide]-->
<!--<meta charset="UTF-8"/> not valid in XHTML?-->
<link rel="alternate" type="application/rdf+xml; charset=utf-8" title="OWL representation of EDAM" href="http://edamontology.org/EDAM.owl"/>
<link rel="alternate" type="text/plain" title="OBO-format representation of EDAM" href="http://edamontology.org/EDAM.obo"/>
<link rel="alternate" type="text/csv; charset=utf-8" title="CSV representation of EDAM" href="http://edamontology.org/EDAM.csv"/>
<link rel="alternate" type="text/tab-separated-values; charset=utf-8" title="TSV representation of EDAM" href="http://edamontology.org/EDAM.tsv"/>
<script src="document.min.js" userjs="user.js" icon="favicon.ico" id="DOC" onerror="var l=document.createElement('link'),s=document.createElement('script');l.rel='stylesheet';l.href='http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css';l.id='bootstrap.css';l.auto='1';document.head.insertBefore(l,document.getElementById('DOC'));s.src='http://aplib.github.io/document.min.js';document.head.appendChild(s);"></script>
<style>
.navbar-default {
height: 55px;
}
.navbar-brand {
font-size: 1.5em;
}
.navbar{
margin-left: 30px;
margin-right: 30px;
position: -webkit-sticky;
position: sticky;
top: 0;
overflow: fixed;
}
.navbar-nav{
font-size: 1.5em;
}
.navbar-collapse{
background-color: whitesmoke;
}
@media (max-width: 1200px) {
.navbar-header {
float: none;
}
.navbar-left,.navbar-right {
float: none !important;
}
.navbar-toggle {
display: block;
}
.navbar-collapse {
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.navbar-collapse.collapse {
display: none!important;
}
.navbar-nav {
float: none!important;
margin-top: 7.5px;
}
.navbar-nav>li {
float: none;
}
.navbar-nav>li>a {
padding-top: 10px;
padding-bottom: 10px;
}
.collapse.in{
display:block !important;
}
}
</style>
</head>
<body>
<nav class="navbar navbar-default" >
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">EDAM</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="#Viewing">Viewing</a></li>
<li><a href="#Download">Downloads</a></li>
<li><a href="#Documentation">Documentation</a></li>
<li><a href="#Scope">Scope</a></li>
<li><a href="#Architecture">Architecture</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<!-- <li><button type="button" href="#Documentation" class="btn btn-default navbar-btn"><a href="#Contacts">CONTACT</a></button></li> -->
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><b>About</b><span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#License">Licence</a></li>
<li><a href="#Contacts">Contacts</a></button></li>
<li><a href="#Publications">Publications</a></li>
</ul>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!--header-panel
# EDAM - Ontology of bioscientific data analysis and data management
-->
<!--content-panel
EDAM is a comprehensive ontology of well-established, familiar concepts that are prevalent within scientific data analysis and data management (both within and beyond life sciences and [imaging](https://github.com/edamontology/edam-bioimaging)). EDAM includes topics, operations, types of data and data identifiers, and data formats. EDAM provides a set of concepts with preferred terms and synonyms, related terms, definitions, and other information - organised into a simple and intuitive hierarchy for convenient use (see figures below).
EDAM is particularly suitable for semantic annotations and categorisation of diverse scientific resources: _e.g._ tools, workflows, learning materials, or standards. EDAM is also useful in data management itself, for recording provenance metadata of processed scientific data.
EDAM is a community project and its development can be followed and contributed to at [GitHub](https://github.com/edamontology/edamontology).
## <p></p><a id="Viewing"></a>Viewing
EDAM can be graphically browsed online at:
* [NCBO ontology browser (BioPortal)](https://bioportal.bioontology.org/ontologies/EDAM?p=classes) (all-newest _"unstable"_ version)
* [EBI Ontology Look-up Service (OLS)](https://www.ebi.ac.uk/ols/ontologies/edam) (latest **stable** version)
* [EDAM Browser](https://edamontology.github.io/edam-browser/) (<b>new: all versions!</b>)
* WebProtégé (free registration required)
* [Older stable EDAM 1.21](https://webprotege.stanford.edu/#projects/55ff1b1c-fee0-4200-9398-2ae0743326f1/edit/Classes)
* [Older stable EDAM 1.20](https://webprotege.stanford.edu/#projects/1f67eaa5-288f-42fa-936c-5084850b6697/edit/Classes)
* [Older stable EDAM 1.19](https://webprotege.stanford.edu/#projects/7e489d5f-b269-4e6a-9899-d876bba8d7b9/edit/Classes)
* [Older stable EDAM 1.18](https://webprotege.stanford.edu/#projects/7403c5f8-e0cb-4f13-8dea-18a60c04e879/edit/Classes)
* [Older stable EDAM 1.17](https://webprotege.stanford.edu/#projects/baee8c5b-8524-403a-b0ff-95f4d26ffd19/edit/Classes)
* [Older stable EDAM 1.16](https://webprotege.stanford.edu/#projects/1c592f8c-b3ac-4797-adba-7a883c0e18aa/edit/Classes)
* [EDAM-bioimaging live development version (alpha07_dev)](https://webprotege.stanford.edu/#projects/2ce704bf-83ed-4d2e-985f-84c4841fac71/edit/Classes)
## <p></p><a id="Download"></a>Downloads
[https://edamontology.org/EDAM.owl](https://edamontology.org/EDAM.owl) (The all-newest, possibly _"unstable"_ released version)
[<b>https://edamontology.org/EDAM_1.25.owl</b>](https://edamontology.org/EDAM_1.25.owl) (The latest **stable** version is at the moment <b>1.25</b>)
[<b>https://edamontology.org/EDAM_stable.owl</b>](https://edamontology.org/EDAM_stable.owl) (Always the latest stable version, in OWL format)
[<b>https://edamontology.org/EDAM.tsv</b>](https://edamontology.org/EDAM.tsv) (The latest version available in TSV format)
[<b>https://edamontology.org/EDAM_1.25.tsv</b>](https://edamontology.org/EDAM_1.25.tsv) (Stable version <b>1.25</b>, as tab-separated values (TSV))
[<b>https://edamontology.org/EDAM.csv</b>](https://edamontology.org/EDAM.csv) (The latest version available in CSV format)
[<b>https://edamontology.org/EDAM_1.25.csv</b>](https://edamontology.org/EDAM_1.25.csv) (Stable version <b>1.25</b>, as comma-separated values (CSV))
[https://edamontology.org/EDAM.obo](https://edamontology.org/EDAM.obo) (The last version available in OBO format is an ancient EDAM version <b>1.2</b>. Because the conversion from OWL to OBO hasn't yet fully been automated for EDAM, we do not provide newer versions in the OBO format yet.)
[https://github.com/edamontology/edamontology/releases](https://github.com/edamontology/edamontology/releases) (All stable releases of EDAM)
[https://raw.githubusercontent.com/edamontology/edamontology/main/EDAM_dev.owl](https://raw.githubusercontent.com/edamontology/edamontology/main/EDAM_dev.owl) (Unreleased development version)
## <p></p><a id="Documentation"></a>Documentation
Comprehensive documentation and guidelines are available on [ReadTheDocs](https://edamontologydocs.readthedocs.io/en/latest/index.html) (maintained [here](https://github.com/edamontology/edamontologyDocs)).
## <p></p><a id="Contacts"></a>Contacts
<b>Twitter:</b> [@edamontology](https://twitter.com/edamontology) ([follow](https://twitter.com/intent/follow?original_referer=http%3A%2F%2Fedamontology.org®ion=follow_link&screen_name=edamontology&tw_p=followbutton)).
All development, and the preferred request and discussion channel is <b>GitHub:</b> [https://github.com/edamontology/edamontology](https://github.com/edamontology/edamontology)
Community chat is on <b>Gitter:</b> [https://gitter.im/edamontology/edamontology](https://gitter.im/edamontology/edamontology)
## <p></p><a id="Scope"></a>Scope
EDAM includes 4 main sections of concepts (sub-ontologies):
* _**[Topic](https://edamontology.org/topics)**_ - “A category denoting a rather broad domain or field of interest, of study, application, work, data, or technology. Topics have no clearly defined borders between each other.”
* _**[Operation](https://edamontology.org/operations)**_ - “A function that processes a set of inputs and results in a set of outputs, or associates arguments (inputs) with values (outputs).”
* _**[Data](https://edamontology.org/data)**_ - “Information, represented in an information artefact (data record) that is 'understandable' by dedicated computational tools that can use the data as input or produce it as output.”
* _**[Format](https://edamontology.org/formats)**_ - “A defined way or layout of representing and structuring data in a computer file, blob, string, message, or elsewhere.”
Noteworthy sub-section:
* _**Data -> [Identifier](https://edamontology.org/identifiers)**_ - “A text token, number or something else which identifies an entity, but which may not be persistent (stable) or unique (the same identifier may identify multiple things).”
<img alt="EDAM concepts" src="EDAMconcepts.png" style="max-height: 36em; max-width: 94%">
_**EDAM concepts.** Boxes indicate sections (sub-ontologies) of EDAM, with example concepts._
## <p></p><a id="Architecture"></a>Architecture
EDAM includes 4 types of content:
* __Concepts__ - All concepts have a name (the term or label) and definition. Further, a concept may have simple relations to other EDAM concepts, as well other intrinsic properties, _e.g._ an identifier may have a regular expression defining its syntax.
* __[Hierarchy](https://bioportal.bioontology.org/ontologies/EDAM?p=classes)__ - Every concept (excluding the top level) is related to one or more other concepts within the same section of EDAM by a specialisation/generalisation relation (subsumption, _**is a**_), forming a _directed acyclic graph_ (DAG). Hence EDAM consists of 4 primary hierarchies (connected DAGs), for the 4 main sections: _**Topic**_, _**Operation**_, _**Data**_, and _**Format**_.
* __[Relations](relations-and-properties.html)__ - In addition to the hierarchy, concepts in EDAM can be related with each other by additional types of relations (see illustration below). These supplement the definitions of concepts and strengthen internal consistency of EDAM. They can be used also outside of EDAM, for example in annotated data.
* __[Properties](relations-and-properties.html)__ - In addition to standardised attributes such a primary term and a definition, some concepts in EDAM contain additional information, _e.g._ a link to the documentation of a _**Format**_, or a regular expression for an _**Identifier**_. EDAM includes the definitions of these properties (attributes) which can also be used outside of EDAM.
<img alt="EDAM relations" src="EDAMrelations.png" style="max-height: 36em; max-width: 94%">
_**EDAM architecture is simple.** Boxes indicate top-level concepts (sections, sub-ontologies), and lines indicate types of relations._
* * *
## <p></p><a id="Publications"></a>Publications
An up-to-date description of EDAM is available in the following extended abstract and poster.
<b>If you use, or refer to EDAM or its part, please cite:</b>
* Melissa Black, Lucie Lamothe, Hager Eldakroury, Mads Kierkegaard, Ankita Priya, Anne Machinda, Uttam Singh Khanduja, Drashti Patoliya, Rashika Rathi, Tawah Peggy Che Nico, Gloria Umutesi, Claudia Blankenburg, Anita Op, Precious Chieke, Omodolapo Babatunde, Steve Laurie, Steffen Neumann, Veit Schwämmle, Ivan Kuzmin, Chris Hunter, Jonathan Karr, Jon Ison, Alban Gaignard, Bryan Brancotte, Hervé Ménager, Matúš Kalaš (2022). [EDAM: the bioscientific data analysis ontology](https://doi.org/10.7490/f1000research.1118900.1) (update 2021) [version 1; not peer reviewed]. _F1000Research_, **11**(ISCB Comm J): 1. Poster. [![10.7490/f1000research.1118900.1](https://zenodo.org/badge/DOI/10.7490/f1000research.1118900.1.svg)](https://doi.org/10.7490/f1000research.1118900.1) _Open access_
<b>The "source code" and releases of EDAM have DOIs:</b>
* DOI representing all stable versions, resolving to the latest: [![10.5281/zenodo.822690](https://zenodo.org/badge/DOI/10.5281/zenodo.822690.svg)](https://doi.org/10.5281/zenodo.822690)
* DOI of the latest stable version: [![Latest DOI](https://zenodo.org/badge/20960594.svg)](https://zenodo.org/badge/latestdoi/20960594)
* EDAM Bioimaging, all stable versions, resolving to the latest: [![10.5281/zenodo.1149730](https://zenodo.org/badge/DOI/10.5281/zenodo.1149730.svg)](https://doi.org/10.5281/zenodo.1149730)
<b>The newest posters, available as PDF:</b>
* [EDAM](poster.pdf) (2022)
* [EDAM Bioimaging](poster-bioimaging.pdf) (2024)
* [EDAM Browser](poster-browser.pdf) (2021)
* [EDAM and EDAM tools](poster-tools.pdf) (2022)
## <p></p><a id="License"></a>Licence
[![Creative Commons Licence](https://i.creativecommons.org/l/by-sa/4.0/88x31.png)](https://creativecommons.org/licenses/by-sa/4.0/)
[EDAM](https://github.com/edamontology/edamontology) is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/) (CC BY-SA 4.0).
* * *
-->
<!--footer-panel
<small>Last update: 2024-Oct-30</small>
-->
<noscript><div class="alert alert-warning">This website assumes that your web browser has JavaScript enabled.</div></noscript>
</body>
</html>