-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstances.html
More file actions
104 lines (99 loc) · 4.62 KB
/
instances.html
File metadata and controls
104 lines (99 loc) · 4.62 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
104
---
layout: default
title: WfInstances
permalink: /instances
---
<!-- Main -->
<div id="main">
{% assign num_traces = 0 %}
{% assign num_apps = 0 %}
{% for trace in site.data.traces %}
{% assign num_traces = num_traces | plus: trace.traces %}
{% assign num_apps = num_apps | plus: trace.applications %}
{% endfor %}
<article class="post">
<header>
<div class="title">
<h2><img src="/images/wfcommons-green-leaf.png" alt=""/> WfInstances</h2>
<p>Workflow Execution Instances</p>
</div>
<div class="meta">
<div style="line-height: 1.5em">
<span style="font-size: 2.5em" class="wftraces">{{ num_traces }}</span>
<p style="color: #666; line-height: 1.3em; margin-top: 0">workflow execution <strong>instances</strong>
</p>
</div>
</div>
</header>
<p>
Workflow instances are widely used to profile and characterize workflow executions, and to build distributions
of workflow execution behaviors, which are used to evaluate methods and techniques in simulation or in real
conditions.
</p>
<p>
<strong class="wftraces">WfInstances</strong> provides the collection and curation of open access
production workflow executions from various scientific applications shared in a common instance format. The
<strong><a href="https://docs.wfcommons.org" target="_blank">WfCommons Python package</a></strong> provides
a set of tools for analyzing instances, which can be used to develop workflow recipes for the
<a href="/generator" class="wfgenerator">WfGen</a>.
</p>
<p>
In this page, we keep a list of open access workflow execution instance repositories that host instances compliant
with The <a href="/format" class="wfformat">WfFormat</a> for describing workflow
executions. We are constantly seeking for additional workflow execution instances for refining or developing
new workflow recipes for the WfCommons's <a href="/generator" class="wfgenerator">WfGen</a>.
</p>
<p>
Workflow execution instances are organized into sub-folders within the repositories. Each sub-folder represents
a workflow application, which itself contains sub-folders for workflow executions in different computing
platforms. For each workflow application, a <code>README.md</code> file provides detailed description of the
workflow
structure and pointers to relevant material.
</p>
</article>
<article class="post">
<header>
<div class="title">
<h3>Open Access Instances Repositories</h3>
<p>List of Workflow Execution Instances</p>
</div>
</header>
<div class="row">
{% for t in site.data.traces %}
<div class="col-sm-12 col-md-12 col-lg-6 col-xl-6">
<a href="{{ t.website }}" class="trace" target="_blank">
<div class="header">
<h1>{{ t.name }}</h1>
</div>
<div class="content">
<div class="row">
<div class="col-4" style="padding: 1em; background-color: #777">
<strong>{{ t.traces }}</strong>
<br/>instances
</div>
<div class="col-4" style="padding: 1em; background-color: #48B54E">
<strong>{{ t.applications }}</strong>
<br/>applications
</div>
<div class="col-4" style="padding: 1em; background-color: #777">
<strong>{{ t.platforms }}</strong>
<br/>platforms
</div>
</div>
</div>
<div class="footer">
{% if t.action %}
<img src="{{ t.website }}/workflows/{{ t.action }}/badge.svg"/>
{% endif %}
{% if t.zenodo %}
<img src="https://zenodo.org/badge/{{ t.zenodo }}.svg" alt="Zenodo"/>
{% endif %}
</div>
</a>
</div>
{% endfor %}
</div>
<p></p>
</article>
</div>