miga-base 1.2.4.0 → 1.2.5.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/cli/action/run.rb +1 -1
- data/lib/miga/version.rb +2 -2
- data/scripts/trimmed_fasta.bash +1 -1
- data/utils/distance/commands.rb +6 -5
- 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: e020ccd1d0a0291a8bc271432fe1dceccbe27c794295942bc6ad2e57ffcd9539
|
4
|
+
data.tar.gz: 7998b7647cefd9e09a06143f019acb01ee436e28e5f0f87aafbb677674b5cf62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3752e382431318bab43319ae6bb2a1725d5c66593a6bd144c8d6623219ab4ca5833764037cb8e59a8e491f44fb0cda8b4e001dd821ba0e6ca793ea7986c1f4e1
|
7
|
+
data.tar.gz: dea859f260cc498967d23190bc899c2a591577312b9208933b8750c4874a5a5664e4d1999e49b8152c6e7fc6cef02ab5e54825d9f5815e89cae39ff2775fcb84
|
data/lib/miga/cli/action/run.rb
CHANGED
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.2,
|
15
|
+
VERSION = [1.2, 5, 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(2022,
|
23
|
+
VERSION_DATE = Date.new(2022, 5, 9)
|
24
24
|
|
25
25
|
##
|
26
26
|
# References of MiGA
|
data/scripts/trimmed_fasta.bash
CHANGED
@@ -15,7 +15,7 @@ miga date > "$DATASET.start"
|
|
15
15
|
for s in 1 2 ; do
|
16
16
|
in="../02.trimmed_reads/${b}.${s}.clipped.fastq.gz"
|
17
17
|
[[ -s "$in" ]] \
|
18
|
-
&& FastQ.maskQual.rb -i "$in" -o "${b}.
|
18
|
+
&& FastQ.maskQual.rb -i "$in" -o "${b}.${s}.fasta" --fasta --qual 18
|
19
19
|
done
|
20
20
|
|
21
21
|
# Interpose
|
data/utils/distance/commands.rb
CHANGED
@@ -216,11 +216,12 @@ module MiGA::DistanceRunner::Commands
|
|
216
216
|
next unless target_ess
|
217
217
|
|
218
218
|
# hAAI
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
219
|
+
aairb_cmd(
|
220
|
+
tmp_file('ess_genes.fa'), target_ess,
|
221
|
+
dataset.name, target.name, tmp_dbs[:haai],
|
222
|
+
aai_save_rbm: false, aai_p: opts[:haai_p], checkpoint: :haai
|
223
|
+
)
|
224
|
+
h = value_from_db(dataset.name, target.name, tmp_dbs[:haai], :haai)
|
224
225
|
next if h.nil? || h.zero? || h > 90.0
|
225
226
|
|
226
227
|
# Estimated AAI
|
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.2.
|
4
|
+
version: 1.2.5.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: 2022-
|
11
|
+
date: 2022-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: daemons
|