biocgem 0.0.1 → 0.0.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/README.md +2 -1
- data/lib/bioc_gem/parser.rb +2 -2
- data/lib/bioc_gem/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b8bfbcb8142aae417fe036d452d5aaeb97e36741bf368a656ff363914277cc01
|
|
4
|
+
data.tar.gz: 96cf48a41ea9874da8e6f35623a63218247ecbca355d07056ab3d0c7433fe9ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da47849575cacbd3225292dd6796e58721ec27235f658221cdcc82fd884b7a014823cf11941ef7aee42aadc3f95f0668637990d9271e157619f08a7ae47446b2
|
|
7
|
+
data.tar.gz: b434fc243049e98310a7d18ee798b7e0b165275fe065591cc371fd44fa3296b2d370e385e96a573c23f0e369c424e0e86d293857d43ea8508105c9d612f70d34
|
data/README.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# BiocGem
|
|
2
2
|
|
|
3
|
+
[](https://badge.fury.io/rb/biocgem)
|
|
3
4
|
[](https://github.com/ruby-on-bioc/biocgem/actions/workflows/ci.yml)
|
|
4
5
|
|
|
5
|
-
Extract the database included in the Bioconductor annotation package and use it in the Ruby gem.
|
|
6
|
+
Extract the database included in the [Bioconductor](https://bioconductor.org/) annotation package and use it in the Ruby gem.
|
|
6
7
|
|
|
7
8
|
## Installation
|
|
8
9
|
|
data/lib/bioc_gem/parser.rb
CHANGED
|
@@ -37,10 +37,10 @@ module BiocGem
|
|
|
37
37
|
parser.on("--bioc_package_sha256sum [VAL]", "e.g. ") do |v|
|
|
38
38
|
options[:bioc_package_sha256sum] = v
|
|
39
39
|
end
|
|
40
|
-
parser.on("
|
|
40
|
+
parser.on("--bioc_version [VAL]", "e.g. 3.14") do |v|
|
|
41
41
|
options[:bioc_version] = v
|
|
42
42
|
end
|
|
43
|
-
parser.on("--bioc_package_version VAL", "e.g. 3.14.0") do |v|
|
|
43
|
+
parser.on("-v", "--bioc_package_version VAL", "e.g. 3.14.0") do |v|
|
|
44
44
|
options[:bioc_package_version] = v
|
|
45
45
|
end
|
|
46
46
|
end
|
data/lib/bioc_gem/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: biocgem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- kojix2
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-12-
|
|
11
|
+
date: 2021-12-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: biocgem command line tools
|
|
14
14
|
email:
|
|
@@ -39,7 +39,7 @@ homepage: https://github.com/ruby-on-bioc/biocgem
|
|
|
39
39
|
licenses:
|
|
40
40
|
- MIT
|
|
41
41
|
metadata: {}
|
|
42
|
-
post_install_message:
|
|
42
|
+
post_install_message:
|
|
43
43
|
rdoc_options: []
|
|
44
44
|
require_paths:
|
|
45
45
|
- lib
|
|
@@ -54,8 +54,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
55
|
version: '0'
|
|
56
56
|
requirements: []
|
|
57
|
-
rubygems_version: 3.
|
|
58
|
-
signing_key:
|
|
57
|
+
rubygems_version: 3.0.3
|
|
58
|
+
signing_key:
|
|
59
59
|
specification_version: 4
|
|
60
60
|
summary: biocgem command line tools
|
|
61
61
|
test_files: []
|