ro-crate 0.4.14 → 0.4.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5d94d65b4375c3923a828f763c749e9958d975c2f3fd3ee55b996f718cd9317c
4
- data.tar.gz: 3ce5e362db42e5a790991bef4fe252d507a35e83eff00a58b1fe99ce4f5808e6
3
+ metadata.gz: 92f4b8cd765215082edea1be4e3c065a29ddcdbbc43a79576a4782ba8d797f07
4
+ data.tar.gz: d8936210124988edd8fd942c978a93ea6ee6f17fa1bcbfd3b6528e7475143ca1
5
5
  SHA512:
6
- metadata.gz: dd26c3d0fc2783f7424ba022ae03d5cc14c0e4aa7f96e2c6b682f82be3af9cee5cacb1480b414b5ab2f37d08e19b38b377455afd1ec74017901788a4a6500bab
7
- data.tar.gz: eb6f983303b2b50fafaec3a03c4c3f855b4c12a4fcd80611d20916ec1f64c078973e842d1425c3101a1609b16db3bdfbe56eccde2a703de0efc360df0a48550f
6
+ metadata.gz: cf88d846278c037fd4437db9f1cd5f3fd31d6901eeb161a38417a5919edaf9e013f28cfadea7a59bf77a687c5946f540ee6cfa28ccc001d473dac41eaf3c5f3e
7
+ data.tar.gz: ab8413b46ad23145ca6d68f2554cad6eacb9f2ecd349e890b6380295029da5426110e447c863170d997071a6dba3f76c72006ca6a90b9a456ac96858e114aa86
@@ -3,6 +3,10 @@ on: [push, pull_request]
3
3
  jobs:
4
4
  run-tests:
5
5
  runs-on: ubuntu-latest
6
+ strategy:
7
+ matrix:
8
+ ruby: ['2.6', '2.7']
9
+ fail-fast: false
6
10
  steps:
7
11
  - name: Checkout
8
12
  uses: actions/checkout@v2.3.1 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
@@ -11,6 +15,7 @@ jobs:
11
15
  - name: Setup Ruby
12
16
  uses: ruby/setup-ruby@v1
13
17
  with:
18
+ ruby-version: ${{ matrix.ruby }}
14
19
  bundler-cache: true # runs 'bundle install' and caches installed gems automatically
15
20
  - name: Run tests
16
21
  run: bundle exec rake test
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-2.6.6
1
+ ruby-2.7.5
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ro-crate (0.4.14)
4
+ ro-crate (0.4.15)
5
5
  addressable (>= 2.7, < 2.9)
6
6
  rubyzip (~> 2.0.0)
7
7
 
@@ -45,4 +45,4 @@ DEPENDENCIES
45
45
  yard (~> 0.9.25)
46
46
 
47
47
  BUNDLED WITH
48
- 1.17.3
48
+ 2.3.6
@@ -2,6 +2,11 @@ module ROCrate
2
2
  ##
3
3
  # A wrapper class for Hash that adds methods to dereference Entities within an RO-Crate.
4
4
  class JSONLDHash < ::Hash
5
+ def self.[](graph, content = {})
6
+ @graph = graph
7
+ super(stringified(content))
8
+ end
9
+
5
10
  def initialize(graph, content = {})
6
11
  @graph = graph
7
12
  super()
@@ -288,6 +288,20 @@ module ROCrate
288
288
  deleted
289
289
  end
290
290
 
291
+ ##
292
+ # Remove any contextual entities that are not linked from any other entity.
293
+ # Optionally takes a block to decide whether the given entity should be removed or not, otherwise removes all
294
+ # unlinked entities.
295
+ # @yieldparam [ContextualEntity] entity An unlinked contextual entity.
296
+ # @yieldparam [Boolean] remove Should this entity be removed?
297
+ #
298
+ # @return [Array<ContextualEntity>] The entities that were removed.
299
+ def gc(&block)
300
+ unlinked_entities = contextual_entities - metadata.linked_entities(deep: true)
301
+
302
+ unlinked_entities.select(&block).each { |e| e.delete(remove_orphaned: false) }
303
+ end
304
+
291
305
  private
292
306
 
293
307
  def full_entry_path(relative_path)
@@ -242,14 +242,16 @@ module ROCrate
242
242
  # @param linked [Hash{String => Entity}] Discovered entities, mapped by their ID, to avoid loops when recursing.
243
243
  # @return [Array<Entity>]
244
244
  def linked_entities(deep: false, linked: {})
245
- properties.each do |key, value|
245
+ properties.each_key do |key|
246
+ value = properties[key] # We're doing this to call the JSONLDHash#[] method which wraps
246
247
  value = [value] if value.is_a?(JSONLDHash)
247
248
 
248
249
  if value.is_a?(Array)
249
250
  value.each do |v|
250
251
  if v.is_a?(JSONLDHash) && !linked.key?(v['@id'])
251
252
  entity = v.dereference
252
- linked[entity.id] = entity if entity
253
+ next unless entity
254
+ linked[entity.id] = entity
253
255
  if deep
254
256
  entity.linked_entities(deep: true, linked: linked).each do |e|
255
257
  linked[e.id] = e
@@ -17,7 +17,7 @@ module ROCrate
17
17
  # @return [IO] An IO object for the remote resource.
18
18
  #
19
19
  def source
20
- open(uri)
20
+ uri.open
21
21
  end
22
22
 
23
23
  ##
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.14'
3
+ s.version = '0.4.15'
4
4
  s.summary = 'Create, manipulate, read RO-Crates.'
5
5
  s.authors = ['Finn Bacall']
6
6
  s.email = 'finn.bacall@manchester.ac.uk'
data/test/crate_test.rb CHANGED
@@ -348,4 +348,32 @@ class CrateTest < Test::Unit::TestCase
348
348
 
349
349
  assert_equal crate.payload.keys, crate.entries.keys
350
350
  end
351
+
352
+ test 'can garbage collect unlinked entities' do
353
+ crate = ROCrate::Reader.read(fixture_file('unlinked_entity_crate').path)
354
+
355
+ unlinked = crate.gc
356
+ assert_equal 2, unlinked.length
357
+ ids = unlinked.map(&:id)
358
+ assert_includes ids, '#joe'
359
+ assert_includes ids, '#joehouse'
360
+ assert_not_includes crate.contextual_entities, unlinked.first
361
+ assert_not_includes crate.contextual_entities, unlinked.last
362
+ assert_nil crate.get('#joe')
363
+ assert_nil crate.get('#joehouse')
364
+ end
365
+
366
+ test 'can conditionally garbage collect unlinked entities using a block' do
367
+ crate = ROCrate::Reader.read(fixture_file('unlinked_entity_crate').path)
368
+
369
+ unlinked = crate.gc do |entity|
370
+ entity.is_a?(ROCrate::Person)
371
+ end
372
+ assert_equal 1, unlinked.length
373
+ ids = unlinked.map(&:id)
374
+ assert_includes ids, '#joe'
375
+ assert_not_includes crate.contextual_entities, unlinked.first
376
+ assert_nil crate.get('#joe')
377
+ assert crate.get('#joehouse')
378
+ end
351
379
  end
@@ -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,2 @@
1
+ # Unlinked Entity Crate
2
+ Contains entities that are not linked from any other!
@@ -0,0 +1,150 @@
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
+ { "@id": "https://about.workflowhub.eu/Workflow-RO-Crate/" }
30
+ ]
31
+ },
32
+ {
33
+ "@id": "./",
34
+ "@type": "Dataset",
35
+ "name": "sort-and-change-case",
36
+ "description": "sort lines and change text to upper case",
37
+ "license": "Apache-2.0",
38
+ "mainEntity": {
39
+ "@id": "sort-and-change-case.ga"
40
+ },
41
+ "hasPart": [
42
+ {
43
+ "@id": "sort-and-change-case.ga"
44
+ },
45
+ {
46
+ "@id": "LICENSE"
47
+ },
48
+ {
49
+ "@id": "README.md"
50
+ },
51
+ {
52
+ "@id": "test/test1/sort-and-change-case-test.yml"
53
+ }
54
+ ],
55
+ "mentions": [
56
+ {
57
+ "@id": "#test1"
58
+ }
59
+ ]
60
+ },
61
+ {
62
+ "@id": "sort-and-change-case.ga",
63
+ "@type": [
64
+ "File",
65
+ "SoftwareSourceCode",
66
+ "ComputationalWorkflow"
67
+ ],
68
+ "programmingLanguage": {
69
+ "@id": "#galaxy"
70
+ },
71
+ "name": "sort-and-change-case"
72
+ },
73
+ {
74
+ "@id": "LICENSE",
75
+ "@type": "File"
76
+ },
77
+ {
78
+ "@id": "README.md",
79
+ "@type": "File"
80
+ },
81
+ {
82
+ "@id": "#galaxy",
83
+ "@type": "ComputerLanguage",
84
+ "name": "Galaxy",
85
+ "identifier": {
86
+ "@id": "https://galaxyproject.org/"
87
+ },
88
+ "url": {
89
+ "@id": "https://galaxyproject.org/"
90
+ }
91
+ },
92
+ {
93
+ "@id": "#test1",
94
+ "name": "test1",
95
+ "@type": "TestSuite",
96
+ "mainEntity": {
97
+ "@id": "sort-and-change-case.ga"
98
+ },
99
+ "instance": [
100
+ {"@id": "#test1_1"}
101
+ ],
102
+ "definition": {"@id": "test/test1/sort-and-change-case-test.yml"}
103
+ },
104
+ {
105
+ "@id": "#test1_1",
106
+ "name": "test1_1",
107
+ "@type": "TestInstance",
108
+ "runsOn": {"@id": "https://w3id.org/ro/terms/test#JenkinsService"},
109
+ "url": "http://example.org/jenkins",
110
+ "resource": "job/tests/"
111
+ },
112
+ {
113
+ "@id": "test/test1/sort-and-change-case-test.yml",
114
+ "@type": [
115
+ "File",
116
+ "TestDefinition"
117
+ ],
118
+ "conformsTo": {"@id": "https://w3id.org/ro/terms/test#PlanemoEngine"},
119
+ "engineVersion": ">=0.70"
120
+ },
121
+ {
122
+ "@id": "https://w3id.org/ro/terms/test#JenkinsService",
123
+ "@type": "TestService",
124
+ "name": "Jenkins",
125
+ "url": {"@id": "https://www.jenkins.io"}
126
+ },
127
+ {
128
+ "@id": "https://w3id.org/ro/terms/test#PlanemoEngine",
129
+ "@type": "SoftwareApplication",
130
+ "name": "Planemo",
131
+ "url": {"@id": "https://github.com/galaxyproject/planemo"}
132
+ },
133
+ {
134
+ "@id": "https://about.workflowhub.eu/Workflow-RO-Crate/",
135
+ "@type": "CreativeWork",
136
+ "name": "Workflow RO-Crate Profile",
137
+ "version": "0.2.0"
138
+ },
139
+ {
140
+ "@id": "#joe",
141
+ "@type": "Person",
142
+ "name": "Joe Jones"
143
+ },
144
+ {
145
+ "@id": "#joehouse",
146
+ "@type": "Organization",
147
+ "name": "Joe's House"
148
+ }
149
+ ]
150
+ }
@@ -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
+ }
@@ -0,0 +1,3 @@
1
+ chr1 66999824 67210768
2
+ chr7 48998526 50489626
3
+ chr1 66874821 66010368
@@ -0,0 +1,3 @@
1
+ CHR1 66874821 66010368
2
+ CHR1 66999824 67210768
3
+ CHR7 48998526 50489626
@@ -0,0 +1,8 @@
1
+ - doc: test with a small input
2
+ job:
3
+ bed_input:
4
+ class: File
5
+ path: input.bed
6
+ outputs:
7
+ uppercase_bed:
8
+ path: output_exp.bed
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ro-crate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.14
4
+ version: 0.4.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Finn Bacall
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-02 00:00:00.000000000 Z
11
+ date: 2022-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -196,6 +196,13 @@ files:
196
196
  - test/fixtures/sparse_directory_crate/ro-crate-metadata.jsonld
197
197
  - test/fixtures/sparse_directory_crate/ro-crate-preview.html
198
198
  - test/fixtures/sparse_directory_crate/unlisted_file.txt
199
+ - test/fixtures/unlinked_entity_crate/LICENSE
200
+ - test/fixtures/unlinked_entity_crate/README.md
201
+ - test/fixtures/unlinked_entity_crate/ro-crate-metadata.json
202
+ - test/fixtures/unlinked_entity_crate/sort-and-change-case.ga
203
+ - test/fixtures/unlinked_entity_crate/test/test1/input.bed
204
+ - test/fixtures/unlinked_entity_crate/test/test1/output_exp.bed
205
+ - test/fixtures/unlinked_entity_crate/test/test1/sort-and-change-case-test.yml
199
206
  - test/fixtures/workflow-0.2.0.zip
200
207
  - test/fixtures/workflow-0.2.0/Dockerfile
201
208
  - test/fixtures/workflow-0.2.0/README.md
@@ -2443,7 +2450,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
2443
2450
  - !ruby/object:Gem::Version
2444
2451
  version: '0'
2445
2452
  requirements: []
2446
- rubygems_version: 3.0.8
2453
+ rubygems_version: 3.1.6
2447
2454
  signing_key:
2448
2455
  specification_version: 4
2449
2456
  summary: Create, manipulate, read RO-Crates.