miga-base 1.3.6.2 → 1.3.7.0
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/version.rb +2 -2
- data/utils/distance/commands.rb +4 -1
- 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: b5e0216cf49c600ae5776ea4e45bfcc2441ffed928908b20bbfc32541b08351a
|
4
|
+
data.tar.gz: a826116aa5208524e029bd2c6324a89d1805653dd20659a9738e627439192ad1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8da516f7f72b162e643202d1e84e57646f36afe895f7e57695bb281a937e6a80ee8cdbd333fe83e24f2708d2306e10d9d216adc86c510e07bf2dcdf3a02372d6
|
7
|
+
data.tar.gz: 3cbc31c7152861e678858420e213c35f4283c668586d0770a1d933e6d788589f006de645b9de292bbc991511c72a375bc97881981aa40c412271063b9434c83b
|
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,
|
15
|
+
VERSION = [1.3, 7, 0].freeze
|
16
16
|
|
17
17
|
##
|
18
18
|
# Nickname for the current major.minor version.
|
@@ -20,7 +20,7 @@ module MiGA
|
|
20
20
|
|
21
21
|
##
|
22
22
|
# Date of the current gem relese.
|
23
|
-
VERSION_DATE = Date.new(2023,
|
23
|
+
VERSION_DATE = Date.new(2023, 6, 4)
|
24
24
|
|
25
25
|
##
|
26
26
|
# References of MiGA
|
data/utils/distance/commands.rb
CHANGED
@@ -224,7 +224,10 @@ module MiGA::DistanceRunner::Commands
|
|
224
224
|
else
|
225
225
|
out[6] = out[6].to_f
|
226
226
|
end
|
227
|
-
|
227
|
+
|
228
|
+
# AAI-hat can result in 0.0 values (e.g., "<30%") when low-quality
|
229
|
+
# genome comparisons produce unrealistically small estimates.
|
230
|
+
aai_data[out[1]] = [out[6], 0, 0, 0] unless out[6].zero?
|
228
231
|
end
|
229
232
|
end
|
230
233
|
$stderr.puts "Results: #{haai_data.size} | Inferences: #{aai_data.size}"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: miga-base
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luis M. Rodriguez-R
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: daemons
|