ro-crate 0.4.6 → 0.4.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +8 -8
- data/README.md +37 -0
- data/lib/ro_crate.rb +1 -0
- data/lib/ro_crate/model/contextual_entity.rb +2 -14
- data/lib/ro_crate/model/crate.rb +14 -0
- data/lib/ro_crate/model/data_entity.rb +3 -3
- data/lib/ro_crate/model/directory.rb +1 -3
- data/lib/ro_crate/model/entity.rb +24 -2
- data/lib/ro_crate/model/file.rb +1 -3
- data/lib/ro_crate/model/metadata.rb +9 -1
- data/lib/ro_crate/model/organization.rb +1 -1
- data/lib/ro_crate/model/preview.rb +3 -15
- data/lib/ro_crate/model/preview_generator.rb +40 -0
- data/lib/ro_crate/reader.rb +122 -26
- data/ro_crate.gemspec +2 -2
- data/test/crate_test.rb +12 -0
- data/test/entity_test.rb +21 -0
- data/test/fixtures/nested_directory.zip +0 -0
- data/test/fixtures/ro-crate-galaxy-sortchangecase/LICENSE +176 -0
- data/test/fixtures/ro-crate-galaxy-sortchangecase/README.md +6 -0
- data/test/fixtures/ro-crate-galaxy-sortchangecase/ro-crate-metadata.json +133 -0
- data/test/fixtures/ro-crate-galaxy-sortchangecase/sort-and-change-case.ga +118 -0
- data/test/fixtures/ro-crate-galaxy-sortchangecase/test/test1/input.bed +3 -0
- data/test/fixtures/ro-crate-galaxy-sortchangecase/test/test1/output_exp.bed +3 -0
- data/test/fixtures/ro-crate-galaxy-sortchangecase/test/test1/sort-and-change-case-test.yml +8 -0
- data/test/fixtures/sparse_directory_crate/ro-crate-preview.html +60 -59
- data/test/reader_test.rb +56 -0
- data/test/writer_test.rb +22 -2
- metadata +13 -4
data/ro_crate.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'ro-crate'
|
3
|
-
s.version = '0.4.
|
3
|
+
s.version = '0.4.11'
|
4
4
|
s.summary = 'Create, manipulate, read RO-Crates.'
|
5
5
|
s.authors = ['Finn Bacall']
|
6
6
|
s.email = 'finn.bacall@manchester.ac.uk'
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|
12
12
|
s.add_runtime_dependency 'rubyzip', '~> 2.0.0'
|
13
13
|
s.add_development_dependency 'rake', '~> 13.0.0'
|
14
14
|
s.add_development_dependency 'test-unit', '~> 3.2.3'
|
15
|
-
s.add_development_dependency 'simplecov', '~> 0.
|
15
|
+
s.add_development_dependency 'simplecov', '~> 0.21.2'
|
16
16
|
s.add_development_dependency 'yard', '~> 0.9.25'
|
17
17
|
s.add_development_dependency 'webmock', '~> 3.8.3'
|
18
18
|
end
|
data/test/crate_test.rb
CHANGED
@@ -164,6 +164,18 @@ class CrateTest < Test::Unit::TestCase
|
|
164
164
|
assert_equal 2, crate1.contextual_entities.first.properties['cats']
|
165
165
|
end
|
166
166
|
|
167
|
+
test 'sharing entities' do
|
168
|
+
crate = ROCrate::Crate.new
|
169
|
+
info = crate.add_file(fixture_file('info.txt'),'the_info.txt')
|
170
|
+
bob = crate.add_person('bob', name: 'Bob Jones')
|
171
|
+
crate.author = bob
|
172
|
+
info.author = bob
|
173
|
+
|
174
|
+
assert_equal [bob], crate.contextual_entities
|
175
|
+
assert_equal bob, info.author
|
176
|
+
assert_equal bob, crate.author
|
177
|
+
end
|
178
|
+
|
167
179
|
test 'external files' do
|
168
180
|
crate = ROCrate::Crate.new
|
169
181
|
local = crate.add_file(fixture_file('info.txt'))
|
data/test/entity_test.rb
CHANGED
@@ -70,4 +70,25 @@ class EntityTest < Test::Unit::TestCase
|
|
70
70
|
assert_equal({ '@id' => '#fred' }, person.reference)
|
71
71
|
assert_equal(person.canonical_id, crate.author.canonical_id)
|
72
72
|
end
|
73
|
+
|
74
|
+
test 'format various IDs' do
|
75
|
+
assert_equal "#Hello%20World/Goodbye%20World", ROCrate::ContextualEntity.format_id('#Hello World/Goodbye World')
|
76
|
+
assert_equal "#Hello%20World/Goodbye%20World", ROCrate::ContextualEntity.format_id('Hello World/Goodbye World')
|
77
|
+
assert_equal "#%F0%9F%98%8A", ROCrate::ContextualEntity.format_id("😊")
|
78
|
+
|
79
|
+
assert_equal "test123/hello.txt", ROCrate::File.format_id('./test123/hello.txt')
|
80
|
+
assert_equal "test123/hello.txt", ROCrate::File.format_id('./test123/hello.txt/')
|
81
|
+
assert_equal "http://www.data.com/my%20data.txt", ROCrate::File.format_id('http://www.data.com/my%20data.txt')
|
82
|
+
assert_equal "http://www.data.com/my%20data.txt/", ROCrate::File.format_id('http://www.data.com/my%20data.txt/'), 'Should not modify absolute URI for DataEntity'
|
83
|
+
|
84
|
+
assert_equal "my%20directory/", ROCrate::Directory.format_id('my directory')
|
85
|
+
assert_equal "my%20directory/", ROCrate::Directory.format_id('my directory/')
|
86
|
+
assert_equal 'http://www.data.com/my%20directory', ROCrate::Directory.format_id('http://www.data.com/my%20directory'), 'Should not modify absolute URI for DataEntity'
|
87
|
+
assert_equal 'http://www.data.com/my%20directory/', ROCrate::Directory.format_id('http://www.data.com/my%20directory/'), 'Should not modify absolute URI for DataEntity'
|
88
|
+
|
89
|
+
assert_equal "./", ROCrate::Crate.format_id('./')
|
90
|
+
assert_equal "cool%20crate/", ROCrate::Crate.format_id('./cool crate')
|
91
|
+
assert_equal "http://www.data.com/my%20crate/", ROCrate::Crate.format_id('http://www.data.com/my%20crate'), 'Crate ID should end with /'
|
92
|
+
assert_equal "http://www.data.com/my%20crate/", ROCrate::Crate.format_id('http://www.data.com/my%20crate/')
|
93
|
+
end
|
73
94
|
end
|
Binary file
|
@@ -0,0 +1,176 @@
|
|
1
|
+
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
5
|
+
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
@@ -0,0 +1,6 @@
|
|
1
|
+
# Galaxy mini workflow
|
2
|
+
|
3
|
+
A tiny Galaxy workflow that sorts tabular lines according to the first column
|
4
|
+
and changes the text to upper case.
|
5
|
+
|
6
|
+
This RO-Crate is based on an [example from the Life Monitor repository](https://github.com/crs4/life_monitor/tree/8437be177822d0e2b3fed30db094b91c2fc14391/interaction_experiments/data/crates/ro-crate-galaxy-sortchangecase).
|
@@ -0,0 +1,133 @@
|
|
1
|
+
{
|
2
|
+
"@context": [
|
3
|
+
"https://w3id.org/ro/crate/1.1/context",
|
4
|
+
{
|
5
|
+
"TestSuite": "https://w3id.org/ro/terms/test#TestSuite",
|
6
|
+
"TestInstance": "https://w3id.org/ro/terms/test#TestInstance",
|
7
|
+
"TestService": "https://w3id.org/ro/terms/test#TestService",
|
8
|
+
"TestDefinition": "https://w3id.org/ro/terms/test#TestDefinition",
|
9
|
+
"PlanemoEngine": "https://w3id.org/ro/terms/test#PlanemoEngine",
|
10
|
+
"JenkinsService": "https://w3id.org/ro/terms/test#JenkinsService",
|
11
|
+
"TravisService": "https://w3id.org/ro/terms/test#TravisService",
|
12
|
+
"GithubService": "https://w3id.org/ro/terms/test#GithubService",
|
13
|
+
"instance": "https://w3id.org/ro/terms/test#instance",
|
14
|
+
"runsOn": "https://w3id.org/ro/terms/test#runsOn",
|
15
|
+
"resource": "https://w3id.org/ro/terms/test#resource",
|
16
|
+
"definition": "https://w3id.org/ro/terms/test#definition",
|
17
|
+
"engineVersion": "https://w3id.org/ro/terms/test#engineVersion"
|
18
|
+
}
|
19
|
+
],
|
20
|
+
"@graph": [
|
21
|
+
{
|
22
|
+
"@id": "ro-crate-metadata.json",
|
23
|
+
"@type": "CreativeWork",
|
24
|
+
"about": {
|
25
|
+
"@id": "./"
|
26
|
+
},
|
27
|
+
"conformsTo": {
|
28
|
+
"@id": "https://w3id.org/ro/crate/1.1"
|
29
|
+
}
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"@id": "./",
|
33
|
+
"@type": "Dataset",
|
34
|
+
"name": "sort-and-change-case",
|
35
|
+
"description": "sort lines and change text to upper case",
|
36
|
+
"license": "Apache-2.0",
|
37
|
+
"mainEntity": {
|
38
|
+
"@id": "sort-and-change-case.ga"
|
39
|
+
},
|
40
|
+
"hasPart": [
|
41
|
+
{
|
42
|
+
"@id": "sort-and-change-case.ga"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"@id": "LICENSE"
|
46
|
+
},
|
47
|
+
{
|
48
|
+
"@id": "README.md"
|
49
|
+
},
|
50
|
+
{
|
51
|
+
"@id": "test/test1/sort-and-change-case-test.yml"
|
52
|
+
}
|
53
|
+
],
|
54
|
+
"mentions": [
|
55
|
+
{
|
56
|
+
"@id": "#test1"
|
57
|
+
}
|
58
|
+
]
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"@id": "sort-and-change-case.ga",
|
62
|
+
"@type": [
|
63
|
+
"File",
|
64
|
+
"SoftwareSourceCode",
|
65
|
+
"ComputationalWorkflow"
|
66
|
+
],
|
67
|
+
"programmingLanguage": {
|
68
|
+
"@id": "#galaxy"
|
69
|
+
},
|
70
|
+
"name": "sort-and-change-case"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"@id": "LICENSE",
|
74
|
+
"@type": "File"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"@id": "README.md",
|
78
|
+
"@type": "File"
|
79
|
+
},
|
80
|
+
{
|
81
|
+
"@id": "#galaxy",
|
82
|
+
"@type": "ComputerLanguage",
|
83
|
+
"name": "Galaxy",
|
84
|
+
"identifier": {
|
85
|
+
"@id": "https://galaxyproject.org/"
|
86
|
+
},
|
87
|
+
"url": {
|
88
|
+
"@id": "https://galaxyproject.org/"
|
89
|
+
}
|
90
|
+
},
|
91
|
+
{
|
92
|
+
"@id": "#test1",
|
93
|
+
"name": "test1",
|
94
|
+
"@type": "TestSuite",
|
95
|
+
"mainEntity": {
|
96
|
+
"@id": "sort-and-change-case.ga"
|
97
|
+
},
|
98
|
+
"instance": [
|
99
|
+
{"@id": "#test1_1"}
|
100
|
+
],
|
101
|
+
"definition": {"@id": "test/test1/sort-and-change-case-test.yml"}
|
102
|
+
},
|
103
|
+
{
|
104
|
+
"@id": "#test1_1",
|
105
|
+
"name": "test1_1",
|
106
|
+
"@type": "TestInstance",
|
107
|
+
"runsOn": {"@id": "https://w3id.org/ro/terms/test#JenkinsService"},
|
108
|
+
"url": "http://example.org/jenkins",
|
109
|
+
"resource": "job/tests/"
|
110
|
+
},
|
111
|
+
{
|
112
|
+
"@id": "test/test1/sort-and-change-case-test.yml",
|
113
|
+
"@type": [
|
114
|
+
"File",
|
115
|
+
"TestDefinition"
|
116
|
+
],
|
117
|
+
"conformsTo": {"@id": "https://w3id.org/ro/terms/test#PlanemoEngine"},
|
118
|
+
"engineVersion": ">=0.70"
|
119
|
+
},
|
120
|
+
{
|
121
|
+
"@id": "https://w3id.org/ro/terms/test#JenkinsService",
|
122
|
+
"@type": "TestService",
|
123
|
+
"name": "Jenkins",
|
124
|
+
"url": {"@id": "https://www.jenkins.io"}
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"@id": "https://w3id.org/ro/terms/test#PlanemoEngine",
|
128
|
+
"@type": "SoftwareApplication",
|
129
|
+
"name": "Planemo",
|
130
|
+
"url": {"@id": "https://github.com/galaxyproject/planemo"}
|
131
|
+
}
|
132
|
+
]
|
133
|
+
}
|
@@ -0,0 +1,118 @@
|
|
1
|
+
{
|
2
|
+
"uuid": "e2a8566c-c025-4181-9e90-7ed29d4e4df1",
|
3
|
+
"tags": [],
|
4
|
+
"format-version": "0.1",
|
5
|
+
"name": "sort-and-change-case",
|
6
|
+
"version": 0,
|
7
|
+
"steps": {
|
8
|
+
"0": {
|
9
|
+
"tool_id": null,
|
10
|
+
"tool_version": null,
|
11
|
+
"outputs": [],
|
12
|
+
"workflow_outputs": [],
|
13
|
+
"input_connections": {},
|
14
|
+
"tool_state": "{}",
|
15
|
+
"id": 0,
|
16
|
+
"uuid": "5a36fad2-66c7-4b9e-8759-0fbcae9b8541",
|
17
|
+
"errors": null,
|
18
|
+
"name": "Input dataset",
|
19
|
+
"label": "bed_input",
|
20
|
+
"inputs": [],
|
21
|
+
"position": {
|
22
|
+
"top": 200,
|
23
|
+
"left": 200
|
24
|
+
},
|
25
|
+
"annotation": "",
|
26
|
+
"content_id": null,
|
27
|
+
"type": "data_input"
|
28
|
+
},
|
29
|
+
"1": {
|
30
|
+
"tool_id": "sort1",
|
31
|
+
"tool_version": "1.1.0",
|
32
|
+
"outputs": [
|
33
|
+
{
|
34
|
+
"type": "input",
|
35
|
+
"name": "out_file1"
|
36
|
+
}
|
37
|
+
],
|
38
|
+
"workflow_outputs": [
|
39
|
+
{
|
40
|
+
"output_name": "out_file1",
|
41
|
+
"uuid": "8237f71a-bc2a-494e-a63c-09c1e65ef7c8",
|
42
|
+
"label": "sorted_bed"
|
43
|
+
}
|
44
|
+
],
|
45
|
+
"input_connections": {
|
46
|
+
"input": {
|
47
|
+
"output_name": "output",
|
48
|
+
"id": 0
|
49
|
+
}
|
50
|
+
},
|
51
|
+
"tool_state": "{\"__page__\": null, \"style\": \"\\\"alpha\\\"\", \"column\": \"\\\"1\\\"\", \"__rerun_remap_job_id__\": null, \"column_set\": \"[]\", \"input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"header_lines\": \"\\\"0\\\"\", \"order\": \"\\\"ASC\\\"\"}",
|
52
|
+
"id": 1,
|
53
|
+
"uuid": "0b6b3cda-c75f-452b-85b1-8ae4f3302ba4",
|
54
|
+
"errors": null,
|
55
|
+
"name": "Sort",
|
56
|
+
"post_job_actions": {},
|
57
|
+
"label": "sort",
|
58
|
+
"inputs": [
|
59
|
+
{
|
60
|
+
"name": "input",
|
61
|
+
"description": "runtime parameter for tool Sort"
|
62
|
+
}
|
63
|
+
],
|
64
|
+
"position": {
|
65
|
+
"top": 200,
|
66
|
+
"left": 420
|
67
|
+
},
|
68
|
+
"annotation": "",
|
69
|
+
"content_id": "sort1",
|
70
|
+
"type": "tool"
|
71
|
+
},
|
72
|
+
"2": {
|
73
|
+
"tool_id": "ChangeCase",
|
74
|
+
"tool_version": "1.0.0",
|
75
|
+
"outputs": [
|
76
|
+
{
|
77
|
+
"type": "tabular",
|
78
|
+
"name": "out_file1"
|
79
|
+
}
|
80
|
+
],
|
81
|
+
"workflow_outputs": [
|
82
|
+
{
|
83
|
+
"output_name": "out_file1",
|
84
|
+
"uuid": "c31cd733-dab6-4d50-9fec-b644d162397b",
|
85
|
+
"label": "uppercase_bed"
|
86
|
+
}
|
87
|
+
],
|
88
|
+
"input_connections": {
|
89
|
+
"input": {
|
90
|
+
"output_name": "out_file1",
|
91
|
+
"id": 1
|
92
|
+
}
|
93
|
+
},
|
94
|
+
"tool_state": "{\"__page__\": null, \"casing\": \"\\\"up\\\"\", \"__rerun_remap_job_id__\": null, \"cols\": \"\\\"c1\\\"\", \"delimiter\": \"\\\"TAB\\\"\", \"input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}",
|
95
|
+
"id": 2,
|
96
|
+
"uuid": "9698bcde-0729-48fe-b88d-ccfb6f6153b4",
|
97
|
+
"errors": null,
|
98
|
+
"name": "Change Case",
|
99
|
+
"post_job_actions": {},
|
100
|
+
"label": "change_case",
|
101
|
+
"inputs": [
|
102
|
+
{
|
103
|
+
"name": "input",
|
104
|
+
"description": "runtime parameter for tool Change Case"
|
105
|
+
}
|
106
|
+
],
|
107
|
+
"position": {
|
108
|
+
"top": 200,
|
109
|
+
"left": 640
|
110
|
+
},
|
111
|
+
"annotation": "",
|
112
|
+
"content_id": "ChangeCase",
|
113
|
+
"type": "tool"
|
114
|
+
}
|
115
|
+
},
|
116
|
+
"annotation": "",
|
117
|
+
"a_galaxy_workflow": "true"
|
118
|
+
}
|