ncbi-blast-dbs 0.0.2 → 0.0.3
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.
- data/.ruby-version +1 -0
- data/bin/ncbi-blast-dbs +10 -2
- data/ncbi-blast-dbs.gemspec +1 -1
- metadata +22 -14
- checksums.yaml +0 -7
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.9
|
data/bin/ncbi-blast-dbs
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
3
|
require 'rake'
|
4
|
-
import "#{
|
5
|
-
|
4
|
+
import "#{File.dirname(__FILE__)}/../lib/ncbi-blast-dbs.rake"
|
5
|
+
|
6
|
+
trap :INT do
|
7
|
+
puts "Quitting ..."
|
8
|
+
exit!
|
9
|
+
end
|
10
|
+
|
11
|
+
Rake.application.init 'ncbi-blast-dbs'
|
12
|
+
Rake.application.load_imports
|
13
|
+
Rake.application.top_level
|
data/ncbi-blast-dbs.gemspec
CHANGED
@@ -2,7 +2,7 @@ Gem::Specification.new do |s|
|
|
2
2
|
s.authors = ['Anurag Priyam']
|
3
3
|
s.email = ['anurag08priyam@gmail.com']
|
4
4
|
s.name = 'ncbi-blast-dbs'
|
5
|
-
s.version = '0.0.
|
5
|
+
s.version = '0.0.3'
|
6
6
|
s.summary = 'Fast download BLAST databases from NCBI.'
|
7
7
|
s.description = <<DESC
|
8
8
|
Downloads BLAST databases from NCBI. Database files (volumes) are downloaded in
|
metadata
CHANGED
@@ -1,39 +1,46 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ncbi-blast-dbs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Anurag Priyam
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2016-02-
|
12
|
+
date: 2016-02-16 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: rake
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
16
18
|
requirements:
|
17
|
-
- -
|
19
|
+
- - ~>
|
18
20
|
- !ruby/object:Gem::Version
|
19
21
|
version: '10.3'
|
20
|
-
- -
|
22
|
+
- - ! '>='
|
21
23
|
- !ruby/object:Gem::Version
|
22
24
|
version: 10.3.2
|
23
25
|
type: :runtime
|
24
26
|
prerelease: false
|
25
27
|
version_requirements: !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
26
29
|
requirements:
|
27
|
-
- -
|
30
|
+
- - ~>
|
28
31
|
- !ruby/object:Gem::Version
|
29
32
|
version: '10.3'
|
30
|
-
- -
|
33
|
+
- - ! '>='
|
31
34
|
- !ruby/object:Gem::Version
|
32
35
|
version: 10.3.2
|
33
|
-
description:
|
34
|
-
|
36
|
+
description: ! 'Downloads BLAST databases from NCBI. Database files (volumes) are
|
37
|
+
downloaded in
|
38
|
+
|
35
39
|
parallel; number of threads to use is determined automatically. Database files
|
40
|
+
|
36
41
|
are verified and extracted upon download.
|
42
|
+
|
43
|
+
'
|
37
44
|
email:
|
38
45
|
- anurag08priyam@gmail.com
|
39
46
|
executables:
|
@@ -41,6 +48,7 @@ executables:
|
|
41
48
|
extensions: []
|
42
49
|
extra_rdoc_files: []
|
43
50
|
files:
|
51
|
+
- .ruby-version
|
44
52
|
- Gemfile
|
45
53
|
- LICENSE.txt
|
46
54
|
- README.md
|
@@ -50,26 +58,26 @@ files:
|
|
50
58
|
homepage: http://github.com/yeban/ncbi-blast-dbs
|
51
59
|
licenses:
|
52
60
|
- MIT
|
53
|
-
metadata: {}
|
54
61
|
post_install_message:
|
55
62
|
rdoc_options: []
|
56
63
|
require_paths:
|
57
64
|
- lib
|
58
65
|
required_ruby_version: !ruby/object:Gem::Requirement
|
66
|
+
none: false
|
59
67
|
requirements:
|
60
|
-
- -
|
68
|
+
- - ! '>='
|
61
69
|
- !ruby/object:Gem::Version
|
62
70
|
version: '0'
|
63
71
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
64
73
|
requirements:
|
65
|
-
- -
|
74
|
+
- - ! '>='
|
66
75
|
- !ruby/object:Gem::Version
|
67
76
|
version: '0'
|
68
77
|
requirements: []
|
69
78
|
rubyforge_project:
|
70
|
-
rubygems_version:
|
79
|
+
rubygems_version: 1.8.23.2
|
71
80
|
signing_key:
|
72
|
-
specification_version:
|
81
|
+
specification_version: 3
|
73
82
|
summary: Fast download BLAST databases from NCBI.
|
74
83
|
test_files: []
|
75
|
-
has_rdoc:
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: 5e0cc1d52b816514b98df36ded99c565d83f7f16
|
4
|
-
data.tar.gz: a42179ad695241c4774e44e891ec90ad9d657218
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: 2038176b3f4a2f4f1407116465a104247ed0c51b221533a9ac3767e7addcbce854f5368894921d91b0d4e5848cb72d8ac8a986b124ce4f0d9351dcfd678e1726
|
7
|
-
data.tar.gz: d1b713b964f1f9ab68d757252a3f3400f89772665a6e36658dcc42e04c76994fd781c51aeebf5a209c9317b89e35228ee16f37ed90baf2ce044e04a13c12421b
|