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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2c6360afd316cce82e4e86fbf6add9fcf77e8d42b8f3310639be4d96f8b9c195
4
- data.tar.gz: dba1b714a536d2a99fe6101ba2406eab9e8d91d32a813f6a00670195ac0bd841
3
+ metadata.gz: 1fc1b49c630d4e619c3394850d15b692cab359f617970ce6f3235e8f6c373d6c
4
+ data.tar.gz: 2c2c6bb6ee77b873993a6ecea24047ca854acd31e88a43ee9588c350df0a719b
5
5
  SHA512:
6
- metadata.gz: 78f8a407b258726b64d4fcc1c124a614ae7a0b0f9401669b3fbeae6912045ba0c7dac5af73d20359bb0c073bba20c87d4a3efcbb0c81b06cedc1c65ce2e0feba
7
- data.tar.gz: eeb2acbcb111419f6c7427a08a29095f075ba6b548a9a56ec8689d8ad72a188db6a3277c861c1baaebc5a9492f64d459f1f1c8be62d5231feaf7bb5d2544b2ec
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
- tmp_done = File.join(tmp, 'read-done.txt')
96
- if File.size?(tmp_done) &&
97
- File.readlines(tmp_done)[0].chomp.to_i == chunks
98
- return tmp
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 first (threaded)
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(tmp_done, 'w') { |fh| fh.puts chunks }
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, 'read-done.txt')
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(File.join(tmp, "#{cell[0]}-#{cell[1]}.txt"), 'w') do |fh|
144
- fixed_ds.each { |ds| fh.puts ds }
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.open(File.join(tmp, "#{cell[0]}-#{cell[1]}.txt"), 'r') do |fh|
152
- fh.each { |ln| y << ln.chomp }
153
- end
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, 7].freeze
15
+ VERSION = [1.3, 20, 9].freeze
16
16
 
17
17
  ##
18
18
  # Nickname for the current major.minor version.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: miga-base
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.20.7
4
+ version: 1.3.20.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luis M. Rodriguez-R