workflow_manager 0.5.7 → 0.5.8
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/workflow_manager/cluster.rb +1 -1
- data/lib/workflow_manager/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a2b2e23d038d7a8e71a88f3dfab605a10ce889a4bc59ec4fcd7ec647c7239c8
|
4
|
+
data.tar.gz: 44e6121985b273019fc5098efd6084736935149496ca6aa38e710f9f4ae5e48f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78ee76362caff7fe5f6eb668cae5858e05dd94b06e29dc8c754ce424c1c3af8c8d21d87ac4c4de8a40b17c7ad10dafd0492b6a465677d191f8e599d5db96e787
|
7
|
+
data.tar.gz: bd14b2c039458901783a4485c6aad6afbcf5f20a1fef89496e9e93db14d072425990b0b2629c2d05b0b1d8920d4917d46f2062c0f37a1d02e3861d891abc3742
|
@@ -556,7 +556,7 @@ module WorkflowManager
|
|
556
556
|
err_file = File.join(@log_dir, new_job_script_base + "_e.log")
|
557
557
|
#command = "g-sub -o #{log_file} -e #{err_file} -q user #{option} #{new_job_script}"
|
558
558
|
sbatch_options = parse(option)
|
559
|
-
command = "sbatch -o #{log_file} -e #{err_file} #{sbatch_options} #{new_job_script}"
|
559
|
+
command = "sbatch -o #{log_file} -e #{err_file} -N 1 #{sbatch_options} #{new_job_script}"
|
560
560
|
puts command
|
561
561
|
job_id = `#{command}`
|
562
562
|
job_id = job_id.chomp.split.last
|