miga-base 1.3.20.7 → 1.3.20.9
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/miga/cli/action/doctor/distances.rb +19 -13
- data/lib/miga/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: 1fc1b49c630d4e619c3394850d15b692cab359f617970ce6f3235e8f6c373d6c
|
4
|
+
data.tar.gz: 2c2c6bb6ee77b873993a6ecea24047ca854acd31e88a43ee9588c350df0a719b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86a62582ae62601a5c3e3935b5bae8046e97a19b53624827d20a8728066ec68360664042a213ee094346e7dba63d8765a044cbc413bcafc3bd8f841579371c1f
|
7
|
+
data.tar.gz: 7ad47d39abd7c257c23b8bdf825135a51dd8e9fa2c96cc14881a16e5a8e03264d9541381796616462c8e6bf3b4a85cfd5ff0528539447e2f3e487aceafa6bb48
|
@@ -92,13 +92,15 @@ module MiGA::Cli::Action::Doctor::Distances
|
|
92
92
|
|
93
93
|
# Check first if a previous run is complete (and recover it)
|
94
94
|
tmp = File.join(project.path, 'doctor-bidirectional.tmp')
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
95
|
+
tmp_chunks = File.join(tmp, 'chunks.txt')
|
96
|
+
tmp_chunks_val = [chunks, 0]
|
97
|
+
if File.size?(tmp_chunks)
|
98
|
+
tmp_chunks_val = File.readlines(tmp_chunks).map(&:chomp).map(&:to_i)
|
99
99
|
end
|
100
|
+
chunks = tmp_chunks_val[0]
|
101
|
+
FileUtils.rm_rf(tmp) unless tmp_chunks_val[1] == n
|
100
102
|
|
101
|
-
# Read data
|
103
|
+
# Read data (threaded)
|
102
104
|
FileUtils.mkdir_p(tmp)
|
103
105
|
chunks_e = 0 .. chunks - 1
|
104
106
|
MiGA::Parallel.distribute(chunks_e, cli[:threads]) do |chunk, k, thr|
|
@@ -121,7 +123,7 @@ module MiGA::Cli::Action::Doctor::Distances
|
|
121
123
|
cli.say
|
122
124
|
|
123
125
|
# Save information to indicate that the run is complete and return
|
124
|
-
File.open(
|
126
|
+
File.open(tmp_chunks, 'w') { |fh| fh.puts(chunks, n) }
|
125
127
|
return tmp
|
126
128
|
end
|
127
129
|
|
@@ -130,7 +132,7 @@ module MiGA::Cli::Action::Doctor::Distances
|
|
130
132
|
# fill databases with missing values. Returns the names of the datasets fixed
|
131
133
|
# as a Set.
|
132
134
|
def merge_bidir_tmp(tmp)
|
133
|
-
tmp_done = File.join(tmp, '
|
135
|
+
tmp_done = File.join(tmp, 'chunks.txt')
|
134
136
|
chunks = File.readlines(tmp_done)[0].chomp.to_i
|
135
137
|
|
136
138
|
lower_triangle = []
|
@@ -139,18 +141,22 @@ module MiGA::Cli::Action::Doctor::Distances
|
|
139
141
|
end
|
140
142
|
MiGA::Parallel.distribute(lower_triangle, cli[:threads]) do |cell, k, thr|
|
141
143
|
cli.advance('Writing:', k, lower_triangle.size, false) if thr == 0
|
144
|
+
done_f = File.join(tmp, "#{cell[0]}-#{cell[1]}.txt")
|
145
|
+
next if File.exist?(done_f)
|
146
|
+
|
142
147
|
fixed_ds = merge_bidir_tmp_pair(tmp, cell[0], cell[1])
|
143
|
-
File.open(
|
144
|
-
|
145
|
-
end
|
148
|
+
File.open("#{done_f}.tmp", 'w') { |fh| fixed_ds.each { |ds| fh.puts ds } }
|
149
|
+
File.rename("#{done_f}.tmp", done_f)
|
146
150
|
end
|
147
151
|
cli.advance('Writing:', lower_triangle.size, lower_triangle.size, false)
|
148
152
|
cli.say
|
149
153
|
lower_triangle.map do |cell|
|
150
154
|
Set.new.tap do |y|
|
151
|
-
File.
|
152
|
-
|
153
|
-
|
155
|
+
file = File.join(tmp, "#{cell[0]}-#{cell[1]}.txt")
|
156
|
+
raise MiGA::Error.new(
|
157
|
+
"Expected file missing, probably due to a thread failure: #{file}"
|
158
|
+
) unless File.exist?(file)
|
159
|
+
File.open(file, 'r') { |fh| fh.each { |ln| y << ln.chomp } }
|
154
160
|
end
|
155
161
|
end.inject(Set.new, :+)
|
156
162
|
end
|
data/lib/miga/version.rb
CHANGED
@@ -12,7 +12,7 @@ module MiGA
|
|
12
12
|
# - String indicating release status:
|
13
13
|
# - rc* release candidate, not released as gem
|
14
14
|
# - [0-9]+ stable release, released as gem
|
15
|
-
VERSION = [1.3, 20,
|
15
|
+
VERSION = [1.3, 20, 9].freeze
|
16
16
|
|
17
17
|
##
|
18
18
|
# Nickname for the current major.minor version.
|