virust-locator-ruby 0.1.0 → 0.3.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/README.md +17 -0
- data/lib/virust_locator/locator.rb +7 -4
- data/lib/virust_locator/runnable/virust-locator-aarch64-apple-darwin +0 -0
- data/lib/virust_locator/runnable/virust-locator-aarch64-unknown-linux-gnu +0 -0
- data/lib/virust_locator/runnable/virust-locator-x86_64-apple-darwin +0 -0
- data/lib/virust_locator/runnable/virust-locator-x86_64-pc-windows-gnu.exe +0 -0
- data/lib/virust_locator/runnable/virust-locator-x86_64-unknown-linux-gnu +0 -0
- data/lib/virust_locator/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: 4f707c3b610e396fa91ab80019bd33fef85a11537a02a972952da29d27e5eae5
|
4
|
+
data.tar.gz: 4530ebbc8774b4a9729015b2373149ecaa68e74d1bf03406e7adcee75e0e0d90
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c301755f05d3f6a0e1936a4ad1cbccd7db99f0d66831064f5d1293b899eefb22bb86c169f88de27444480b122659ebd91847c72678724d2dc12573ed25ba8ac9
|
7
|
+
data.tar.gz: 253da967570441b088502d3ed70cb11e20d52c71c7b9133208daba4bb1872c80e387b21bda8d5b00df66255f99883f088767a3a5c0f65980da0c67f2f548aa4d
|
data/README.md
CHANGED
@@ -16,7 +16,10 @@ gem install virust-locator-ruby
|
|
16
16
|
|
17
17
|
## Usage
|
18
18
|
|
19
|
+
```ruby
|
20
|
+
require 'virust_locator'
|
19
21
|
VirustLocator::Locator.exec("GAAAGCATAGTAATATGGGGAAAGACTCCTAAA")
|
22
|
+
```
|
20
23
|
|
21
24
|
=>
|
22
25
|
|
@@ -40,6 +43,20 @@ Options:
|
|
40
43
|
|
41
44
|
-V, --version Print version
|
42
45
|
|
46
|
+
## Change Log
|
47
|
+
|
48
|
+
### v0.3.0
|
49
|
+
|
50
|
+
1. Fixed a bug for displaying the aligned sequences.
|
51
|
+
|
52
|
+
2. Now allow multiple sequences to be run at one time. When running multiple sequences in one query (seperate each with [whitespace]), return object is the locator results one line per query.
|
53
|
+
|
54
|
+
### v0.2.0
|
55
|
+
|
56
|
+
1. Fixed a bug for showing the aligned sequences.
|
57
|
+
|
58
|
+
2. Fixed a bug that slowed down the performance.
|
59
|
+
|
43
60
|
## Contributing
|
44
61
|
|
45
62
|
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/virust-locator-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/virust-locator-ruby/blob/main/CODE_OF_CONDUCT.md).
|
@@ -10,7 +10,7 @@ module VirustLocator
|
|
10
10
|
# Locator.exec("GAAAGCATAGTAATATGGGGAAAGACTCCTAAA")
|
11
11
|
# => "3681\t3713\t100\tfalse\tGAAAGCATAGTAATATGGGGAAAGACTCCTAAA\tGAAAGCATAGTAATATGGGGAAAGACTCCTAAA"
|
12
12
|
module Locator
|
13
|
-
def self.
|
13
|
+
def self.init # rubocop:disable Metrics/MethodLength
|
14
14
|
file = case RUBY_PLATFORM
|
15
15
|
when /arm64-darwin/
|
16
16
|
"virust-locator-aarch64-apple-darwin"
|
@@ -25,12 +25,15 @@ module VirustLocator
|
|
25
25
|
else
|
26
26
|
raise "Unsupported platform: #{RUBY_PLATFORM}"
|
27
27
|
end
|
28
|
-
|
29
28
|
file = File.join(File.dirname(__FILE__), "runnable", file)
|
30
|
-
safe_file = Shellwords.escape(file)
|
31
29
|
raise "Excecutable file not found: #{file}" unless File.exist?(file)
|
32
30
|
|
33
|
-
|
31
|
+
Shellwords.escape(file)
|
32
|
+
end
|
33
|
+
|
34
|
+
def self.exec(query, type = "nt", algorithm = "1", ref = "HXB2")
|
35
|
+
safe_file = init
|
36
|
+
`#{safe_file} -q #{query} -t #{type} -a #{algorithm} -r #{ref}`.strip
|
34
37
|
end
|
35
38
|
end
|
36
39
|
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|