workflow_manager 0.8.0 → 0.8.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/Gemfile.lock +7 -7
- data/lib/workflow_manager/cluster.rb +11 -9
- data/lib/workflow_manager/server.rb +2 -2
- data/lib/workflow_manager/version.rb +1 -1
- data/start_workflow_manager.sh +3 -2
- 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: 46119a1d4da028cc76b16a56545512607afa923742d982f2b5f1941ce42bacd3
|
4
|
+
data.tar.gz: 922c122276a8e6842017288a643eb4dbe208b4f69907f690d4a8c00adb1649b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a2e0eea78ab77f45b1b80e558f880ef362c2668cb3d30b67039dc078fd45a27d49401d802c46caeb55352053b25f22a05f7d50d5ff0b6d970e22e8fdd73b043
|
7
|
+
data.tar.gz: ec74fee4bebb6c4014535e228a1c2c6b229a8a7151c540c9fb9853635a207e05a177ec9f8dcce4cf7f5eb331294a6ef1eed213f6893404155d030c4595ada2c9
|
data/Gemfile.lock
CHANGED
@@ -1,23 +1,23 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
workflow_manager (0.
|
4
|
+
workflow_manager (0.8.1)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
-
concurrent-ruby (1.2.
|
10
|
-
connection_pool (2.
|
11
|
-
rack (3.0.
|
9
|
+
concurrent-ruby (1.2.2)
|
10
|
+
connection_pool (2.4.1)
|
11
|
+
rack (3.0.8)
|
12
12
|
redis (5.0.6)
|
13
13
|
redis-client (>= 0.9.0)
|
14
|
-
redis-client (0.
|
14
|
+
redis-client (0.17.0)
|
15
15
|
connection_pool
|
16
|
-
sidekiq (7.
|
16
|
+
sidekiq (7.1.4)
|
17
17
|
concurrent-ruby (< 2)
|
18
18
|
connection_pool (>= 2.3.0)
|
19
19
|
rack (>= 2.2.4)
|
20
|
-
redis-client (>= 0.
|
20
|
+
redis-client (>= 0.14.0)
|
21
21
|
|
22
22
|
PLATFORMS
|
23
23
|
x86_64-linux
|
@@ -28,7 +28,7 @@ module WorkflowManager
|
|
28
28
|
end
|
29
29
|
def job_pending?(job_id)
|
30
30
|
end
|
31
|
-
def copy_commands(org_dir, dest_parent_dir, now=nil)
|
31
|
+
def copy_commands(org_dir, dest_parent_dir, now=nil, queue="light")
|
32
32
|
end
|
33
33
|
def kill_command(job_id)
|
34
34
|
end
|
@@ -75,7 +75,7 @@ module WorkflowManager
|
|
75
75
|
result = `#{command}`
|
76
76
|
result.to_s.empty? ? false : true
|
77
77
|
end
|
78
|
-
def copy_commands(org_dir, dest_parent_dir, now=nil)
|
78
|
+
def copy_commands(org_dir, dest_parent_dir, now=nil, queue="light")
|
79
79
|
commands = []
|
80
80
|
commands << "mkdir -p #{dest_parent_dir}"
|
81
81
|
commands << "cp -r #{org_dir} #{dest_parent_dir}"
|
@@ -199,7 +199,7 @@ module WorkflowManager
|
|
199
199
|
end
|
200
200
|
qstat_flag
|
201
201
|
end
|
202
|
-
def copy_commands(org_dir, dest_parent_dir, now=nil)
|
202
|
+
def copy_commands(org_dir, dest_parent_dir, now=nil, queue="light")
|
203
203
|
commands = if now == "force"
|
204
204
|
target_file = File.join(dest_parent_dir, File.basename(org_dir))
|
205
205
|
["g-req copynow -f #{org_dir} #{dest_parent_dir}"]
|
@@ -300,7 +300,7 @@ module WorkflowManager
|
|
300
300
|
end
|
301
301
|
|
302
302
|
class FGCZCourseCluster < FGCZCluster
|
303
|
-
def copy_commands(org_dir, dest_parent_dir, now=nil)
|
303
|
+
def copy_commands(org_dir, dest_parent_dir, now=nil, queue="light")
|
304
304
|
commands = ["cp -r #{org_dir} #{dest_parent_dir}"]
|
305
305
|
end
|
306
306
|
def delete_command(target)
|
@@ -333,7 +333,7 @@ module WorkflowManager
|
|
333
333
|
def job_pending?(job_id)
|
334
334
|
# TODO
|
335
335
|
end
|
336
|
-
def copy_commands(org_dir, dest_parent_dir, now=nil)
|
336
|
+
def copy_commands(org_dir, dest_parent_dir, now=nil, queue="light")
|
337
337
|
# TODO
|
338
338
|
end
|
339
339
|
def kill_command(job_id)
|
@@ -411,7 +411,7 @@ module WorkflowManager
|
|
411
411
|
end
|
412
412
|
qstat_flag
|
413
413
|
end
|
414
|
-
def copy_commands(org_dir, dest_parent_dir, now=nil)
|
414
|
+
def copy_commands(org_dir, dest_parent_dir, now=nil, queue="light")
|
415
415
|
commands = if now == "force"
|
416
416
|
target_file = File.join(dest_parent_dir, File.basename(org_dir))
|
417
417
|
["g-req copynow -f #{org_dir} #{dest_parent_dir}"]
|
@@ -521,14 +521,16 @@ module WorkflowManager
|
|
521
521
|
end
|
522
522
|
qstat_flag
|
523
523
|
end
|
524
|
-
def copy_commands(org_dir, dest_parent_dir, now=nil)
|
524
|
+
def copy_commands(org_dir, dest_parent_dir, now=nil, queue="light")
|
525
525
|
commands = if now == "force"
|
526
526
|
target_file = File.join(dest_parent_dir, File.basename(org_dir))
|
527
527
|
["g-req copynow -f #{org_dir} #{dest_parent_dir}"]
|
528
528
|
elsif now
|
529
529
|
["g-req copynow #{org_dir} #{dest_parent_dir}"]
|
530
|
-
|
530
|
+
elsif queue.nil? or queue == "light"
|
531
531
|
["g-req -w copy #{org_dir} #{dest_parent_dir}"]
|
532
|
+
else
|
533
|
+
["g-req -w copy -f heavy #{org_dir} #{dest_parent_dir}"]
|
532
534
|
end
|
533
535
|
end
|
534
536
|
def kill_command(job_id)
|
@@ -546,7 +548,7 @@ module WorkflowManager
|
|
546
548
|
end
|
547
549
|
|
548
550
|
class FGCZDebian10DemoCluster < FGCZDebian10Cluster
|
549
|
-
def copy_commands(org_dir, dest_parent_dir, now=nil)
|
551
|
+
def copy_commands(org_dir, dest_parent_dir, now=nil, queue="light")
|
550
552
|
commands = ["cp -r #{org_dir} #{dest_parent_dir}"]
|
551
553
|
end
|
552
554
|
def delete_command(target)
|
@@ -202,8 +202,8 @@ module WorkflowManager
|
|
202
202
|
def hello
|
203
203
|
'hello hoge hoge bar boo bundle, '+ @cluster.name
|
204
204
|
end
|
205
|
-
def copy_commands(org_dir, dest_parent_dir, now=nil)
|
206
|
-
@cluster.copy_commands(org_dir, dest_parent_dir, now)
|
205
|
+
def copy_commands(org_dir, dest_parent_dir, now=nil, queue="light")
|
206
|
+
@cluster.copy_commands(org_dir, dest_parent_dir, now, queue)
|
207
207
|
end
|
208
208
|
def kill_job(job_id)
|
209
209
|
status(job_id, 'FAIL')
|
data/start_workflow_manager.sh
CHANGED
@@ -2,10 +2,11 @@
|
|
2
2
|
source /usr/local/ngseq/etc/lmod_profile
|
3
3
|
module load Dev/Ruby/3.1.3
|
4
4
|
module load Tools/Redis/7.0.8
|
5
|
-
conda activate gtools_env
|
5
|
+
#conda activate gtools_env
|
6
6
|
which python
|
7
7
|
which g-sub
|
8
8
|
which g-req
|
9
9
|
mkdir -p logs
|
10
10
|
mkdir -p dbs
|
11
|
-
bundle exec workflow_manager -d druby://fgcz-h-031:40001
|
11
|
+
#bundle exec workflow_manager -d druby://fgcz-h-031:40001
|
12
|
+
bundle exec workflow_manager -d druby://fgcz-h-032:40001
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: workflow_manager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Functional Genomics Center Zurich
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|