rbbt-util 5.34.0 → 5.34.1

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: d612eb753e090f1221cd4d3b2c17e13e0e87f4cea7bc76c920717ba8055cbe8b
4
- data.tar.gz: 9bea5062d3d73982ef5a35526c39ca3208fae9b817233344045144cbd0619920
3
+ metadata.gz: dce81f37830228a43c702909b856ebf661002d17b49614d67b6c04e16d339d4b
4
+ data.tar.gz: d7cb5ef82e50da2287c4bf9cf3912d66e36c27bb72a1c1c702d86cf7d1e8df78
5
5
  SHA512:
6
- metadata.gz: 2d1e5c3fe701bb42049ab34bbe74fddb3e9a0a29d292cc8c8fbfc93049b0004be5b449aa83939de8924f2cdf19a720c044ea7491aacc96037e1acd549bd1201f
7
- data.tar.gz: 54abc57de1a43b04337d8f9ad27668af2d07db21dbac7ee925728d6058dee280624385ef5b40280c0ec2439b6d80ed350bc136c9bef15116ba56292532d5e210
6
+ metadata.gz: fd9ad6b40180ef8cdc5a8e8335f291e557543f14cdd0cbc6760e7dd6f1327a5a73b5be92b1c037ccd46bca8596c86e7bf6eb7221989e9edac52ad34e81ad4e45
7
+ data.tar.gz: 72798bb53863c93aa768edc6c523d34e682dc374ebf4fe0307590faddb9022237a49f0556de364e7139345b35504b6d19b9c134abf8d0ae751a38c1d2c0331f7
@@ -31,6 +31,7 @@ module HPC
31
31
  options.delete "detach"
32
32
  options.delete "jobname"
33
33
  options.delete "load_inputs"
34
+ options.delete "provenance"
34
35
 
35
36
  Log.high "Prepare for exec"
36
37
  prepare_for_execution(job)
@@ -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
- path = path.find
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)
@@ -36,7 +36,7 @@ file = ARGV.shift
36
36
 
37
37
  $seen = []
38
38
  def get_step(file)
39
- file = File.expand_path(file)
39
+ file = File.expand_path(file) if File.exists?(file)
40
40
  file = file.sub(/\.(info|files)$/,'')
41
41
  $seen << file
42
42
  Workflow.load_step file
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.0
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-03 00:00:00.000000000 Z
11
+ date: 2022-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake