cheminee 0.1.36 → 0.1.37
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +4 -4
- data/docs/DefaultApi.md +4 -4
- data/docs/QuerySearchHit.md +1 -1
- data/docs/StructureSearchHit.md +1 -1
- data/lib/cheminee/api/default_api.rb +4 -4
- data/lib/cheminee/models/query_search_hit.rb +2 -6
- data/lib/cheminee/models/structure_search_hit.rb +2 -6
- data/lib/cheminee/version.rb +1 -1
- data/pkg/cheminee-0.1.37.gem +0 -0
- metadata +3 -3
- data/pkg/cheminee-0.1.36.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ddd36c59df6b4a0f859c3add057653cda701fddbf2f28b86fc6f3f41087937e
|
4
|
+
data.tar.gz: '08aa55fcf8e7a310d4fbe44f58d98b7f84dcf6c86488e9e12b2f608f33b814e1'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b66cbb84cfabbf06950f724e228d3776cf17a99c4f37a832abc6c49fcf2bf567e2e8b47fcd7b7985a51bc4e1f675bced8d73b3cb0ea54af0416eb22c26281cc
|
7
|
+
data.tar.gz: e18fa869193887951222fd4aa19845118b9077fd9f2931505fa72a1c402170531c915f20a21fcab94b2986ffd4387ff0d1db3e78175e602d3932702b79ceedd5
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Cheminée: The Chemical Structure Search Engine
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: 1.0
|
10
|
-
- Package version: 0.1.
|
10
|
+
- Package version: 0.1.37
|
11
11
|
- Generator version: 7.9.0-SNAPSHOT
|
12
12
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
13
13
|
For more information, please visit [https://github.com/rdkit-rs/cheminee](https://github.com/rdkit-rs/cheminee)
|
@@ -25,16 +25,16 @@ gem build cheminee.gemspec
|
|
25
25
|
Then either install the gem locally:
|
26
26
|
|
27
27
|
```shell
|
28
|
-
gem install ./cheminee-0.1.
|
28
|
+
gem install ./cheminee-0.1.37.gem
|
29
29
|
```
|
30
30
|
|
31
|
-
(for development, run `gem install --dev ./cheminee-0.1.
|
31
|
+
(for development, run `gem install --dev ./cheminee-0.1.37.gem` to install the development dependencies)
|
32
32
|
|
33
33
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
34
34
|
|
35
35
|
Finally add this to the Gemfile:
|
36
36
|
|
37
|
-
gem 'cheminee', '~> 0.1.
|
37
|
+
gem 'cheminee', '~> 0.1.37'
|
38
38
|
|
39
39
|
### Install from Git
|
40
40
|
|
data/docs/DefaultApi.md
CHANGED
@@ -740,11 +740,11 @@ api_instance = Cheminee::DefaultApi.new
|
|
740
740
|
index = 'index_example' # String |
|
741
741
|
smiles = 'smiles_example' # String |
|
742
742
|
opts = {
|
743
|
-
use_chirality:
|
743
|
+
use_chirality: true, # Boolean |
|
744
744
|
result_limit: 56, # Integer |
|
745
745
|
tautomer_limit: 56, # Integer |
|
746
746
|
extra_query: 'extra_query_example', # String |
|
747
|
-
use_scaffolds:
|
747
|
+
use_scaffolds: true # Boolean |
|
748
748
|
}
|
749
749
|
|
750
750
|
begin
|
@@ -780,11 +780,11 @@ end
|
|
780
780
|
| ---- | ---- | ----------- | ----- |
|
781
781
|
| **index** | **String** | | |
|
782
782
|
| **smiles** | **String** | | |
|
783
|
-
| **use_chirality** | **
|
783
|
+
| **use_chirality** | **Boolean** | | [optional] |
|
784
784
|
| **result_limit** | **Integer** | | [optional] |
|
785
785
|
| **tautomer_limit** | **Integer** | | [optional] |
|
786
786
|
| **extra_query** | **String** | | [optional] |
|
787
|
-
| **use_scaffolds** | **
|
787
|
+
| **use_scaffolds** | **Boolean** | | [optional] |
|
788
788
|
|
789
789
|
### Return type
|
790
790
|
|
data/docs/QuerySearchHit.md
CHANGED
data/docs/StructureSearchHit.md
CHANGED
@@ -760,11 +760,11 @@ module Cheminee
|
|
760
760
|
# @param index [String]
|
761
761
|
# @param smiles [String]
|
762
762
|
# @param [Hash] opts the optional parameters
|
763
|
-
# @option opts [
|
763
|
+
# @option opts [Boolean] :use_chirality
|
764
764
|
# @option opts [Integer] :result_limit
|
765
765
|
# @option opts [Integer] :tautomer_limit
|
766
766
|
# @option opts [String] :extra_query
|
767
|
-
# @option opts [
|
767
|
+
# @option opts [Boolean] :use_scaffolds
|
768
768
|
# @return [Array<StructureSearchHit>]
|
769
769
|
def v1_indexes_index_search_substructure_get(index, smiles, opts = {})
|
770
770
|
data, _status_code, _headers = v1_indexes_index_search_substructure_get_with_http_info(index, smiles, opts)
|
@@ -775,11 +775,11 @@ module Cheminee
|
|
775
775
|
# @param index [String]
|
776
776
|
# @param smiles [String]
|
777
777
|
# @param [Hash] opts the optional parameters
|
778
|
-
# @option opts [
|
778
|
+
# @option opts [Boolean] :use_chirality
|
779
779
|
# @option opts [Integer] :result_limit
|
780
780
|
# @option opts [Integer] :tautomer_limit
|
781
781
|
# @option opts [String] :extra_query
|
782
|
-
# @option opts [
|
782
|
+
# @option opts [Boolean] :use_scaffolds
|
783
783
|
# @return [Array<(Array<StructureSearchHit>, Integer, Hash)>] Array<StructureSearchHit> data, response status code and response headers
|
784
784
|
def v1_indexes_index_search_substructure_get_with_http_info(index, smiles, opts = {})
|
785
785
|
if @api_client.config.debugging
|
@@ -38,7 +38,7 @@ module Cheminee
|
|
38
38
|
# Attribute type mapping.
|
39
39
|
def self.openapi_types
|
40
40
|
{
|
41
|
-
:'extra_data' => :'
|
41
|
+
:'extra_data' => :'Object',
|
42
42
|
:'smiles' => :'String',
|
43
43
|
:'query' => :'String'
|
44
44
|
}
|
@@ -47,6 +47,7 @@ module Cheminee
|
|
47
47
|
# List of attributes with nullable: true
|
48
48
|
def self.openapi_nullable
|
49
49
|
Set.new([
|
50
|
+
:'extra_data',
|
50
51
|
])
|
51
52
|
end
|
52
53
|
|
@@ -89,10 +90,6 @@ module Cheminee
|
|
89
90
|
def list_invalid_properties
|
90
91
|
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
91
92
|
invalid_properties = Array.new
|
92
|
-
if @extra_data.nil?
|
93
|
-
invalid_properties.push('invalid value for "extra_data", extra_data cannot be nil.')
|
94
|
-
end
|
95
|
-
|
96
93
|
if @smiles.nil?
|
97
94
|
invalid_properties.push('invalid value for "smiles", smiles cannot be nil.')
|
98
95
|
end
|
@@ -108,7 +105,6 @@ module Cheminee
|
|
108
105
|
# @return true if the model is valid
|
109
106
|
def valid?
|
110
107
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
111
|
-
return false if @extra_data.nil?
|
112
108
|
return false if @smiles.nil?
|
113
109
|
return false if @query.nil?
|
114
110
|
true
|
@@ -44,7 +44,7 @@ module Cheminee
|
|
44
44
|
# Attribute type mapping.
|
45
45
|
def self.openapi_types
|
46
46
|
{
|
47
|
-
:'extra_data' => :'
|
47
|
+
:'extra_data' => :'Object',
|
48
48
|
:'smiles' => :'String',
|
49
49
|
:'score' => :'Float',
|
50
50
|
:'query' => :'String',
|
@@ -55,6 +55,7 @@ module Cheminee
|
|
55
55
|
# List of attributes with nullable: true
|
56
56
|
def self.openapi_nullable
|
57
57
|
Set.new([
|
58
|
+
:'extra_data',
|
58
59
|
])
|
59
60
|
end
|
60
61
|
|
@@ -109,10 +110,6 @@ module Cheminee
|
|
109
110
|
def list_invalid_properties
|
110
111
|
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
111
112
|
invalid_properties = Array.new
|
112
|
-
if @extra_data.nil?
|
113
|
-
invalid_properties.push('invalid value for "extra_data", extra_data cannot be nil.')
|
114
|
-
end
|
115
|
-
|
116
113
|
if @smiles.nil?
|
117
114
|
invalid_properties.push('invalid value for "smiles", smiles cannot be nil.')
|
118
115
|
end
|
@@ -136,7 +133,6 @@ module Cheminee
|
|
136
133
|
# @return true if the model is valid
|
137
134
|
def valid?
|
138
135
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
139
|
-
return false if @extra_data.nil?
|
140
136
|
return false if @smiles.nil?
|
141
137
|
return false if @score.nil?
|
142
138
|
return false if @query.nil?
|
data/lib/cheminee/version.rb
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cheminee
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.37
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Xavier Lange
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -154,7 +154,7 @@ files:
|
|
154
154
|
- lib/cheminee/version.rb
|
155
155
|
- openapi-generator-config.json
|
156
156
|
- openapi.json
|
157
|
-
- pkg/cheminee-0.1.
|
157
|
+
- pkg/cheminee-0.1.37.gem
|
158
158
|
- spec/api/default_api_spec.rb
|
159
159
|
- spec/api_client_spec.rb
|
160
160
|
- spec/configuration_spec.rb
|
data/pkg/cheminee-0.1.36.gem
DELETED
Binary file
|