rbbt-util 5.34.0 → 5.34.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/rbbt/hpc/orchestrate.rb +1 -0
- data/lib/rbbt/util/open.rb +1 -1
- data/lib/rbbt/workflow.rb +18 -1
- data/share/rbbt_commands/workflow/prov +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dce81f37830228a43c702909b856ebf661002d17b49614d67b6c04e16d339d4b
|
|
4
|
+
data.tar.gz: d7cb5ef82e50da2287c4bf9cf3912d66e36c27bb72a1c1c702d86cf7d1e8df78
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd9ad6b40180ef8cdc5a8e8335f291e557543f14cdd0cbc6760e7dd6f1327a5a73b5be92b1c037ccd46bca8596c86e7bf6eb7221989e9edac52ad34e81ad4e45
|
|
7
|
+
data.tar.gz: 72798bb53863c93aa768edc6c523d34e682dc374ebf4fe0307590faddb9022237a49f0556de364e7139345b35504b6d19b9c134abf8d0ae751a38c1d2c0331f7
|
data/lib/rbbt/hpc/orchestrate.rb
CHANGED
data/lib/rbbt/util/open.rb
CHANGED
|
@@ -678,7 +678,7 @@ module Open
|
|
|
678
678
|
if Open.exists? notification_file
|
|
679
679
|
key = Open.read(notification_file).strip
|
|
680
680
|
key = nil if key.empty?
|
|
681
|
-
if key.include?("@")
|
|
681
|
+
if key && key.include?("@")
|
|
682
682
|
to = from = key
|
|
683
683
|
subject = "Wrote " << file
|
|
684
684
|
message = "Content attached"
|
data/lib/rbbt/workflow.rb
CHANGED
|
@@ -542,8 +542,17 @@ module Workflow
|
|
|
542
542
|
step_path = step_path.call if Proc === step_path
|
|
543
543
|
persist = input_values.nil? ? false : true
|
|
544
544
|
persist = false
|
|
545
|
+
|
|
546
|
+
if ! (Path === step_path ? step_path.find : File.exists?(step_path)) && step_path.split("/").length == 3 && File.exists?(new_path = Rbbt.var.jobs[step_path].find)
|
|
547
|
+
step_path = new_path
|
|
548
|
+
end
|
|
549
|
+
|
|
545
550
|
key = Path === step_path ? step_path.find : step_path
|
|
546
551
|
|
|
552
|
+
if ! File.exists?(step_path) && step_path.split("/").length == 3 && File.exists?(new_path = Rbbt.var.jobs[step_path].find)
|
|
553
|
+
step_path = new_path
|
|
554
|
+
end
|
|
555
|
+
|
|
547
556
|
step = Step.new step_path, task, input_values, dependencies
|
|
548
557
|
|
|
549
558
|
set_step_dependencies(step) unless dependencies
|
|
@@ -703,7 +712,15 @@ module Workflow
|
|
|
703
712
|
|
|
704
713
|
def self.load_step(path)
|
|
705
714
|
path = Path.setup(path.dup) unless Path === path
|
|
706
|
-
|
|
715
|
+
|
|
716
|
+
if ! (Path === path ? path.exists? : File.exists?(path)) && path.split("/").length == 3
|
|
717
|
+
new_path = Rbbt.var.jobs[path]
|
|
718
|
+
if new_path.exists? || new_path.set_extension('info').exists?
|
|
719
|
+
path = new_path
|
|
720
|
+
end
|
|
721
|
+
end
|
|
722
|
+
|
|
723
|
+
path = path.find if Path === path
|
|
707
724
|
|
|
708
725
|
begin
|
|
709
726
|
_load_step(path)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rbbt-util
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.34.
|
|
4
|
+
version: 5.34.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Miguel Vazquez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-06-
|
|
11
|
+
date: 2022-06-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|