bioinform 0.3.1 → 0.3.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 +5 -5
- data/Gemfile.lock +2 -2
- data/lib/bioinform/data_models/named_model.rb +2 -2
- data/lib/bioinform/version.rb +1 -1
- metadata +6 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 815bb48e1022dbcf03e50fd8fe9ea2aebde5af49982a6dd724dd8076b6f8feb2
|
|
4
|
+
data.tar.gz: 2763d993767d26629452e4b1249005ac9a1fd2a2e7ea2144bad6fb64c1f4db01
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f2c27432312380b2595e42560e9edcf37d78790a06f8f4ebd4524e464fc2a2a50856b1c81935d921b8e240d1c914d737acb3baabdbf24f37cb84c77e991c2084
|
|
7
|
+
data.tar.gz: c6d1a75d09883d8cef6c1cec3a1aa2df635b02bcc86b7dea3d633e32f69649e3a0a324e0edde779c0dd30e541a4ea7017d74b30e16491e0b0d1c437c77adfd7f
|
data/Gemfile.lock
CHANGED
|
@@ -16,8 +16,8 @@ module Bioinform
|
|
|
16
16
|
|
|
17
17
|
private :motif_klasses, :motif?
|
|
18
18
|
|
|
19
|
-
def method_missing(meth, *args, &block)
|
|
20
|
-
result = model.public_send(meth, *args, &block)
|
|
19
|
+
def method_missing(meth, *args, **kwargs, &block)
|
|
20
|
+
result = model.public_send(meth, *args, **kwargs, &block)
|
|
21
21
|
if motif?(result) && ! result.is_a?(self.class)
|
|
22
22
|
self.class.new(result, name)
|
|
23
23
|
else
|
data/lib/bioinform/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bioinform
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ilya Vorontsov
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A bunch of useful classes for bioinformatics
|
|
14
14
|
email:
|
|
@@ -106,7 +106,7 @@ files:
|
|
|
106
106
|
homepage: ''
|
|
107
107
|
licenses: []
|
|
108
108
|
metadata: {}
|
|
109
|
-
post_install_message:
|
|
109
|
+
post_install_message:
|
|
110
110
|
rdoc_options: []
|
|
111
111
|
require_paths:
|
|
112
112
|
- lib
|
|
@@ -121,9 +121,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
121
121
|
- !ruby/object:Gem::Version
|
|
122
122
|
version: '0'
|
|
123
123
|
requirements: []
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
signing_key:
|
|
124
|
+
rubygems_version: 3.2.33
|
|
125
|
+
signing_key:
|
|
127
126
|
specification_version: 4
|
|
128
127
|
summary: Classes for work with different input formats of positional matrices and
|
|
129
128
|
IUPAC-words and making simple transform and statistics with them. Also module includes
|