bacterial-annotator 0.9.1 → 0.9.2
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/bin/ba_diamond +4 -5
- 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: b90fb0d1c0bc3d82a10706a7d6d2c0554099b94ce8ec27f63d4ebcad0ec11f04
|
4
|
+
data.tar.gz: c98732d57ad75290b6f0584ee559de98f8676ed0d94e5f4e9886f152269bf75e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eab03371ef5f9fbf75b694f58ba4108adb38f6316131a96efc38a0c938fed727f3583f80e3f97604103c5c25f0d271fa9bcb397670b16bfd1bb2b930ca47be83
|
7
|
+
data.tar.gz: 6e48a1c67bd2add06ca3772bab0f734050a28476e05a9879f23fbf6df1cd88a314aee21c469a8226623978fefcd1b0d62cd240960b4097c55802395a891d5ae9
|
data/bin/ba_diamond
CHANGED
@@ -2,21 +2,21 @@
|
|
2
2
|
# -*- coding: utf-8 -*-
|
3
3
|
# author: maxime déraspe
|
4
4
|
# email: maximilien1er@gmail.com
|
5
|
-
# review:
|
5
|
+
# review:
|
6
6
|
# date: 17-08-24
|
7
7
|
# version: 0.01
|
8
|
-
# licence:
|
8
|
+
# licence:
|
9
9
|
|
10
10
|
require 'open-uri'
|
11
11
|
|
12
12
|
ROOT_path = File.dirname(__FILE__)
|
13
|
-
# diamond URL = "https://github.com/bbuchfink/diamond/releases/download/
|
13
|
+
# diamond URL = "https://github.com/bbuchfink/diamond/releases/download/v2.0.15/diamond-linux64.tar.gz"
|
14
14
|
|
15
15
|
# Install diamond on the user system
|
16
16
|
def installDiamond
|
17
17
|
|
18
18
|
begin
|
19
|
-
resp = open("https://github.com/bbuchfink/diamond/releases/download/
|
19
|
+
resp = open("https://github.com/bbuchfink/diamond/releases/download/v2.0.15/diamond-linux64.tar.gz")
|
20
20
|
open("#{ROOT_path}/diamond-linux64.tar.gz", "wb") do |file|
|
21
21
|
file.write(resp.read)
|
22
22
|
end
|
@@ -43,4 +43,3 @@ if ! File.exists? "#{ROOT_path}/diamond.linux"
|
|
43
43
|
puts ""
|
44
44
|
|
45
45
|
end
|
46
|
-
|