huaweicloudsdkeihealth 3.1.107__py2.py3-none-any.whl → 3.1.109__py2.py3-none-any.whl
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.
- huaweicloudsdkeihealth/v1/__init__.py +31 -0
- huaweicloudsdkeihealth/v1/eihealth_async_client.py +543 -0
- huaweicloudsdkeihealth/v1/eihealth_client.py +543 -0
- huaweicloudsdkeihealth/v1/model/__init__.py +31 -0
- huaweicloudsdkeihealth/v1/model/base_model.py +142 -0
- huaweicloudsdkeihealth/v1/model/base_model_dto.py +231 -0
- huaweicloudsdkeihealth/v1/model/bind_site_dto.py +3 -3
- huaweicloudsdkeihealth/v1/model/cpi_receptor.py +226 -0
- huaweicloudsdkeihealth/v1/model/create_admet_job_req.py +61 -3
- huaweicloudsdkeihealth/v1/model/create_cpi_job_req.py +166 -0
- huaweicloudsdkeihealth/v1/model/create_cpi_job_request.py +139 -0
- huaweicloudsdkeihealth/v1/model/create_cpi_job_response.py +145 -0
- huaweicloudsdkeihealth/v1/model/create_dock_job_req.py +32 -3
- huaweicloudsdkeihealth/v1/model/create_drug_ligand_interaction2d_svg_req.py +32 -3
- huaweicloudsdkeihealth/v1/model/create_gen_job_req.py +338 -0
- huaweicloudsdkeihealth/v1/model/create_gen_job_request.py +139 -0
- huaweicloudsdkeihealth/v1/model/create_gen_job_response.py +145 -0
- huaweicloudsdkeihealth/v1/model/create_ligand_preview_task_req.py +32 -3
- huaweicloudsdkeihealth/v1/model/create_model_req.py +32 -3
- huaweicloudsdkeihealth/v1/model/create_optm_job_req.py +30 -1
- huaweicloudsdkeihealth/v1/model/create_target_opt_job_req.py +184 -0
- huaweicloudsdkeihealth/v1/model/create_target_opt_job_request.py +139 -0
- huaweicloudsdkeihealth/v1/model/create_target_opt_job_response.py +145 -0
- huaweicloudsdkeihealth/v1/model/fasta_receptor.py +197 -0
- huaweicloudsdkeihealth/v1/model/interaction.py +166 -0
- huaweicloudsdkeihealth/v1/model/interaction_constraint_dto.py +167 -0
- huaweicloudsdkeihealth/v1/model/interaction_type.py +91 -0
- huaweicloudsdkeihealth/v1/model/list_base_model_request.py +202 -0
- huaweicloudsdkeihealth/v1/model/list_base_model_response.py +145 -0
- huaweicloudsdkeihealth/v1/model/list_drug_model_request.py +35 -6
- huaweicloudsdkeihealth/v1/model/md_param.py +169 -0
- huaweicloudsdkeihealth/v1/model/md_step_param.py +202 -0
- huaweicloudsdkeihealth/v1/model/model_dto.py +61 -3
- huaweicloudsdkeihealth/v1/model/pocket_fragment.py +30 -1
- huaweicloudsdkeihealth/v1/model/run_fasta_preprocess_req.py +168 -0
- huaweicloudsdkeihealth/v1/model/run_fasta_preprocess_request.py +139 -0
- huaweicloudsdkeihealth/v1/model/run_fasta_preprocess_response.py +145 -0
- huaweicloudsdkeihealth/v1/model/show_admet_job_response.py +57 -3
- huaweicloudsdkeihealth/v1/model/show_cpi_job_request.py +142 -0
- huaweicloudsdkeihealth/v1/model/show_cpi_job_response.py +170 -0
- huaweicloudsdkeihealth/v1/model/show_docking_job_response.py +30 -1
- huaweicloudsdkeihealth/v1/model/show_gen_job_request.py +142 -0
- huaweicloudsdkeihealth/v1/model/show_gen_job_response.py +365 -0
- huaweicloudsdkeihealth/v1/model/show_optm_job_response.py +26 -1
- huaweicloudsdkeihealth/v1/model/show_target_opt_job_request.py +142 -0
- huaweicloudsdkeihealth/v1/model/show_target_opt_job_response.py +187 -0
- huaweicloudsdkeihealth/v1/model/strong_constraint_dto.py +28 -3
- huaweicloudsdkeihealth/v1/model/strong_constraint_type.py +1 -0
- huaweicloudsdkeihealth/v1/model/target_opt_ligand.py +139 -0
- huaweicloudsdkeihealth/v1/model/target_opt_receptor.py +255 -0
- huaweicloudsdkeihealth/v1/model/weak_constraint_dto.py +28 -3
- huaweicloudsdkeihealth/v1/model/weak_constraint_type.py +1 -0
- {huaweicloudsdkeihealth-3.1.107.dist-info → huaweicloudsdkeihealth-3.1.109.dist-info}/METADATA +2 -2
- {huaweicloudsdkeihealth-3.1.107.dist-info → huaweicloudsdkeihealth-3.1.109.dist-info}/RECORD +57 -26
- {huaweicloudsdkeihealth-3.1.107.dist-info → huaweicloudsdkeihealth-3.1.109.dist-info}/WHEEL +1 -1
- {huaweicloudsdkeihealth-3.1.107.dist-info → huaweicloudsdkeihealth-3.1.109.dist-info}/LICENSE +0 -0
- {huaweicloudsdkeihealth-3.1.107.dist-info → huaweicloudsdkeihealth-3.1.109.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,145 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.sdk_response import SdkResponse
|
6
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
7
|
+
|
8
|
+
|
9
|
+
class CreateCpiJobResponse(SdkResponse):
|
10
|
+
|
11
|
+
"""
|
12
|
+
Attributes:
|
13
|
+
openapi_types (dict): The key is attribute name
|
14
|
+
and the value is attribute type.
|
15
|
+
attribute_map (dict): The key is attribute name
|
16
|
+
and the value is json key in definition.
|
17
|
+
"""
|
18
|
+
sensitive_list = []
|
19
|
+
|
20
|
+
openapi_types = {
|
21
|
+
'id': 'str',
|
22
|
+
'limit_concurrency': 'int'
|
23
|
+
}
|
24
|
+
|
25
|
+
attribute_map = {
|
26
|
+
'id': 'id',
|
27
|
+
'limit_concurrency': 'limit_concurrency'
|
28
|
+
}
|
29
|
+
|
30
|
+
def __init__(self, id=None, limit_concurrency=None):
|
31
|
+
"""CreateCpiJobResponse
|
32
|
+
|
33
|
+
The model defined in huaweicloud sdk
|
34
|
+
|
35
|
+
:param id: 作业id
|
36
|
+
:type id: str
|
37
|
+
:param limit_concurrency: 限制的并发量
|
38
|
+
:type limit_concurrency: int
|
39
|
+
"""
|
40
|
+
|
41
|
+
super(CreateCpiJobResponse, self).__init__()
|
42
|
+
|
43
|
+
self._id = None
|
44
|
+
self._limit_concurrency = None
|
45
|
+
self.discriminator = None
|
46
|
+
|
47
|
+
if id is not None:
|
48
|
+
self.id = id
|
49
|
+
if limit_concurrency is not None:
|
50
|
+
self.limit_concurrency = limit_concurrency
|
51
|
+
|
52
|
+
@property
|
53
|
+
def id(self):
|
54
|
+
"""Gets the id of this CreateCpiJobResponse.
|
55
|
+
|
56
|
+
作业id
|
57
|
+
|
58
|
+
:return: The id of this CreateCpiJobResponse.
|
59
|
+
:rtype: str
|
60
|
+
"""
|
61
|
+
return self._id
|
62
|
+
|
63
|
+
@id.setter
|
64
|
+
def id(self, id):
|
65
|
+
"""Sets the id of this CreateCpiJobResponse.
|
66
|
+
|
67
|
+
作业id
|
68
|
+
|
69
|
+
:param id: The id of this CreateCpiJobResponse.
|
70
|
+
:type id: str
|
71
|
+
"""
|
72
|
+
self._id = id
|
73
|
+
|
74
|
+
@property
|
75
|
+
def limit_concurrency(self):
|
76
|
+
"""Gets the limit_concurrency of this CreateCpiJobResponse.
|
77
|
+
|
78
|
+
限制的并发量
|
79
|
+
|
80
|
+
:return: The limit_concurrency of this CreateCpiJobResponse.
|
81
|
+
:rtype: int
|
82
|
+
"""
|
83
|
+
return self._limit_concurrency
|
84
|
+
|
85
|
+
@limit_concurrency.setter
|
86
|
+
def limit_concurrency(self, limit_concurrency):
|
87
|
+
"""Sets the limit_concurrency of this CreateCpiJobResponse.
|
88
|
+
|
89
|
+
限制的并发量
|
90
|
+
|
91
|
+
:param limit_concurrency: The limit_concurrency of this CreateCpiJobResponse.
|
92
|
+
:type limit_concurrency: int
|
93
|
+
"""
|
94
|
+
self._limit_concurrency = limit_concurrency
|
95
|
+
|
96
|
+
def to_dict(self):
|
97
|
+
"""Returns the model properties as a dict"""
|
98
|
+
result = {}
|
99
|
+
|
100
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
101
|
+
value = getattr(self, attr)
|
102
|
+
if isinstance(value, list):
|
103
|
+
result[attr] = list(map(
|
104
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
105
|
+
value
|
106
|
+
))
|
107
|
+
elif hasattr(value, "to_dict"):
|
108
|
+
result[attr] = value.to_dict()
|
109
|
+
elif isinstance(value, dict):
|
110
|
+
result[attr] = dict(map(
|
111
|
+
lambda item: (item[0], item[1].to_dict())
|
112
|
+
if hasattr(item[1], "to_dict") else item,
|
113
|
+
value.items()
|
114
|
+
))
|
115
|
+
else:
|
116
|
+
if attr in self.sensitive_list:
|
117
|
+
result[attr] = "****"
|
118
|
+
else:
|
119
|
+
result[attr] = value
|
120
|
+
|
121
|
+
return result
|
122
|
+
|
123
|
+
def to_str(self):
|
124
|
+
"""Returns the string representation of the model"""
|
125
|
+
import simplejson as json
|
126
|
+
if six.PY2:
|
127
|
+
import sys
|
128
|
+
reload(sys)
|
129
|
+
sys.setdefaultencoding("utf-8")
|
130
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
131
|
+
|
132
|
+
def __repr__(self):
|
133
|
+
"""For `print`"""
|
134
|
+
return self.to_str()
|
135
|
+
|
136
|
+
def __eq__(self, other):
|
137
|
+
"""Returns true if both objects are equal"""
|
138
|
+
if not isinstance(other, CreateCpiJobResponse):
|
139
|
+
return False
|
140
|
+
|
141
|
+
return self.__dict__ == other.__dict__
|
142
|
+
|
143
|
+
def __ne__(self, other):
|
144
|
+
"""Returns true if both objects are not equal"""
|
145
|
+
return not self == other
|
@@ -19,16 +19,18 @@ class CreateDockJobReq:
|
|
19
19
|
openapi_types = {
|
20
20
|
'basic_info': 'CreateDrugJobBasicInfo',
|
21
21
|
'receptors': 'list[DockingReceptorDto]',
|
22
|
-
'ligands': 'list[LigandDto]'
|
22
|
+
'ligands': 'list[LigandDto]',
|
23
|
+
'engine': 'str'
|
23
24
|
}
|
24
25
|
|
25
26
|
attribute_map = {
|
26
27
|
'basic_info': 'basic_info',
|
27
28
|
'receptors': 'receptors',
|
28
|
-
'ligands': 'ligands'
|
29
|
+
'ligands': 'ligands',
|
30
|
+
'engine': 'engine'
|
29
31
|
}
|
30
32
|
|
31
|
-
def __init__(self, basic_info=None, receptors=None, ligands=None):
|
33
|
+
def __init__(self, basic_info=None, receptors=None, ligands=None, engine=None):
|
32
34
|
"""CreateDockJobReq
|
33
35
|
|
34
36
|
The model defined in huaweicloud sdk
|
@@ -39,6 +41,8 @@ class CreateDockJobReq:
|
|
39
41
|
:type receptors: list[:class:`huaweicloudsdkeihealth.v1.DockingReceptorDto`]
|
40
42
|
:param ligands: 配体文件列表,当前仅支持1个
|
41
43
|
:type ligands: list[:class:`huaweicloudsdkeihealth.v1.LigandDto`]
|
44
|
+
:param engine: 引擎,默认为AUTODOCK_VINA
|
45
|
+
:type engine: str
|
42
46
|
"""
|
43
47
|
|
44
48
|
|
@@ -46,11 +50,14 @@ class CreateDockJobReq:
|
|
46
50
|
self._basic_info = None
|
47
51
|
self._receptors = None
|
48
52
|
self._ligands = None
|
53
|
+
self._engine = None
|
49
54
|
self.discriminator = None
|
50
55
|
|
51
56
|
self.basic_info = basic_info
|
52
57
|
self.receptors = receptors
|
53
58
|
self.ligands = ligands
|
59
|
+
if engine is not None:
|
60
|
+
self.engine = engine
|
54
61
|
|
55
62
|
@property
|
56
63
|
def basic_info(self):
|
@@ -114,6 +121,28 @@ class CreateDockJobReq:
|
|
114
121
|
"""
|
115
122
|
self._ligands = ligands
|
116
123
|
|
124
|
+
@property
|
125
|
+
def engine(self):
|
126
|
+
"""Gets the engine of this CreateDockJobReq.
|
127
|
+
|
128
|
+
引擎,默认为AUTODOCK_VINA
|
129
|
+
|
130
|
+
:return: The engine of this CreateDockJobReq.
|
131
|
+
:rtype: str
|
132
|
+
"""
|
133
|
+
return self._engine
|
134
|
+
|
135
|
+
@engine.setter
|
136
|
+
def engine(self, engine):
|
137
|
+
"""Sets the engine of this CreateDockJobReq.
|
138
|
+
|
139
|
+
引擎,默认为AUTODOCK_VINA
|
140
|
+
|
141
|
+
:param engine: The engine of this CreateDockJobReq.
|
142
|
+
:type engine: str
|
143
|
+
"""
|
144
|
+
self._engine = engine
|
145
|
+
|
117
146
|
def to_dict(self):
|
118
147
|
"""Returns the model properties as a dict"""
|
119
148
|
result = {}
|
@@ -18,15 +18,17 @@ class CreateDrugLigandInteraction2dSvgReq:
|
|
18
18
|
|
19
19
|
openapi_types = {
|
20
20
|
'receptor_file': 'ReceptorDrugFileReq',
|
21
|
-
'ligand_file': 'DrugFile'
|
21
|
+
'ligand_file': 'DrugFile',
|
22
|
+
'name': 'str'
|
22
23
|
}
|
23
24
|
|
24
25
|
attribute_map = {
|
25
26
|
'receptor_file': 'receptor_file',
|
26
|
-
'ligand_file': 'ligand_file'
|
27
|
+
'ligand_file': 'ligand_file',
|
28
|
+
'name': 'name'
|
27
29
|
}
|
28
30
|
|
29
|
-
def __init__(self, receptor_file=None, ligand_file=None):
|
31
|
+
def __init__(self, receptor_file=None, ligand_file=None, name=None):
|
30
32
|
"""CreateDrugLigandInteraction2dSvgReq
|
31
33
|
|
32
34
|
The model defined in huaweicloud sdk
|
@@ -35,17 +37,22 @@ class CreateDrugLigandInteraction2dSvgReq:
|
|
35
37
|
:type receptor_file: :class:`huaweicloudsdkeihealth.v1.ReceptorDrugFileReq`
|
36
38
|
:param ligand_file:
|
37
39
|
:type ligand_file: :class:`huaweicloudsdkeihealth.v1.DrugFile`
|
40
|
+
:param name: 小分子名称
|
41
|
+
:type name: str
|
38
42
|
"""
|
39
43
|
|
40
44
|
|
41
45
|
|
42
46
|
self._receptor_file = None
|
43
47
|
self._ligand_file = None
|
48
|
+
self._name = None
|
44
49
|
self.discriminator = None
|
45
50
|
|
46
51
|
self.receptor_file = receptor_file
|
47
52
|
if ligand_file is not None:
|
48
53
|
self.ligand_file = ligand_file
|
54
|
+
if name is not None:
|
55
|
+
self.name = name
|
49
56
|
|
50
57
|
@property
|
51
58
|
def receptor_file(self):
|
@@ -83,6 +90,28 @@ class CreateDrugLigandInteraction2dSvgReq:
|
|
83
90
|
"""
|
84
91
|
self._ligand_file = ligand_file
|
85
92
|
|
93
|
+
@property
|
94
|
+
def name(self):
|
95
|
+
"""Gets the name of this CreateDrugLigandInteraction2dSvgReq.
|
96
|
+
|
97
|
+
小分子名称
|
98
|
+
|
99
|
+
:return: The name of this CreateDrugLigandInteraction2dSvgReq.
|
100
|
+
:rtype: str
|
101
|
+
"""
|
102
|
+
return self._name
|
103
|
+
|
104
|
+
@name.setter
|
105
|
+
def name(self, name):
|
106
|
+
"""Sets the name of this CreateDrugLigandInteraction2dSvgReq.
|
107
|
+
|
108
|
+
小分子名称
|
109
|
+
|
110
|
+
:param name: The name of this CreateDrugLigandInteraction2dSvgReq.
|
111
|
+
:type name: str
|
112
|
+
"""
|
113
|
+
self._name = name
|
114
|
+
|
86
115
|
def to_dict(self):
|
87
116
|
"""Returns the model properties as a dict"""
|
88
117
|
result = {}
|
@@ -0,0 +1,338 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
6
|
+
|
7
|
+
|
8
|
+
class CreateGenJobReq:
|
9
|
+
|
10
|
+
"""
|
11
|
+
Attributes:
|
12
|
+
openapi_types (dict): The key is attribute name
|
13
|
+
and the value is attribute type.
|
14
|
+
attribute_map (dict): The key is attribute name
|
15
|
+
and the value is json key in definition.
|
16
|
+
"""
|
17
|
+
sensitive_list = []
|
18
|
+
|
19
|
+
openapi_types = {
|
20
|
+
'basic_info': 'CreateDrugJobBasicInfo',
|
21
|
+
'smiles_list': 'list[str]',
|
22
|
+
'molecule_file': 'DrugFile',
|
23
|
+
'binding_sites': 'list[BindSiteDto]',
|
24
|
+
'weak_constraints': 'list[WeakConstraintDto]',
|
25
|
+
'strong_constraints': 'list[StrongConstraintDto]',
|
26
|
+
'base_model_id': 'str',
|
27
|
+
'model_ids': 'list[str]',
|
28
|
+
'num_trials': 'int'
|
29
|
+
}
|
30
|
+
|
31
|
+
attribute_map = {
|
32
|
+
'basic_info': 'basic_info',
|
33
|
+
'smiles_list': 'smiles_list',
|
34
|
+
'molecule_file': 'molecule_file',
|
35
|
+
'binding_sites': 'binding_sites',
|
36
|
+
'weak_constraints': 'weak_constraints',
|
37
|
+
'strong_constraints': 'strong_constraints',
|
38
|
+
'base_model_id': 'base_model_id',
|
39
|
+
'model_ids': 'model_ids',
|
40
|
+
'num_trials': 'num_trials'
|
41
|
+
}
|
42
|
+
|
43
|
+
def __init__(self, basic_info=None, smiles_list=None, molecule_file=None, binding_sites=None, weak_constraints=None, strong_constraints=None, base_model_id=None, model_ids=None, num_trials=None):
|
44
|
+
"""CreateGenJobReq
|
45
|
+
|
46
|
+
The model defined in huaweicloud sdk
|
47
|
+
|
48
|
+
:param basic_info:
|
49
|
+
:type basic_info: :class:`huaweicloudsdkeihealth.v1.CreateDrugJobBasicInfo`
|
50
|
+
:param smiles_list: 分子表达式列表
|
51
|
+
:type smiles_list: list[str]
|
52
|
+
:param molecule_file:
|
53
|
+
:type molecule_file: :class:`huaweicloudsdkeihealth.v1.DrugFile`
|
54
|
+
:param binding_sites: 靶点列表
|
55
|
+
:type binding_sites: list[:class:`huaweicloudsdkeihealth.v1.BindSiteDto`]
|
56
|
+
:param weak_constraints: 弱约束集合
|
57
|
+
:type weak_constraints: list[:class:`huaweicloudsdkeihealth.v1.WeakConstraintDto`]
|
58
|
+
:param strong_constraints: 强约束集合
|
59
|
+
:type strong_constraints: list[:class:`huaweicloudsdkeihealth.v1.StrongConstraintDto`]
|
60
|
+
:param base_model_id: 基模型id
|
61
|
+
:type base_model_id: str
|
62
|
+
:param model_ids: 模型id列表
|
63
|
+
:type model_ids: list[str]
|
64
|
+
:param num_trials: 生成分子数量
|
65
|
+
:type num_trials: int
|
66
|
+
"""
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
self._basic_info = None
|
71
|
+
self._smiles_list = None
|
72
|
+
self._molecule_file = None
|
73
|
+
self._binding_sites = None
|
74
|
+
self._weak_constraints = None
|
75
|
+
self._strong_constraints = None
|
76
|
+
self._base_model_id = None
|
77
|
+
self._model_ids = None
|
78
|
+
self._num_trials = None
|
79
|
+
self.discriminator = None
|
80
|
+
|
81
|
+
self.basic_info = basic_info
|
82
|
+
if smiles_list is not None:
|
83
|
+
self.smiles_list = smiles_list
|
84
|
+
if molecule_file is not None:
|
85
|
+
self.molecule_file = molecule_file
|
86
|
+
if binding_sites is not None:
|
87
|
+
self.binding_sites = binding_sites
|
88
|
+
if weak_constraints is not None:
|
89
|
+
self.weak_constraints = weak_constraints
|
90
|
+
if strong_constraints is not None:
|
91
|
+
self.strong_constraints = strong_constraints
|
92
|
+
if base_model_id is not None:
|
93
|
+
self.base_model_id = base_model_id
|
94
|
+
if model_ids is not None:
|
95
|
+
self.model_ids = model_ids
|
96
|
+
if num_trials is not None:
|
97
|
+
self.num_trials = num_trials
|
98
|
+
|
99
|
+
@property
|
100
|
+
def basic_info(self):
|
101
|
+
"""Gets the basic_info of this CreateGenJobReq.
|
102
|
+
|
103
|
+
:return: The basic_info of this CreateGenJobReq.
|
104
|
+
:rtype: :class:`huaweicloudsdkeihealth.v1.CreateDrugJobBasicInfo`
|
105
|
+
"""
|
106
|
+
return self._basic_info
|
107
|
+
|
108
|
+
@basic_info.setter
|
109
|
+
def basic_info(self, basic_info):
|
110
|
+
"""Sets the basic_info of this CreateGenJobReq.
|
111
|
+
|
112
|
+
:param basic_info: The basic_info of this CreateGenJobReq.
|
113
|
+
:type basic_info: :class:`huaweicloudsdkeihealth.v1.CreateDrugJobBasicInfo`
|
114
|
+
"""
|
115
|
+
self._basic_info = basic_info
|
116
|
+
|
117
|
+
@property
|
118
|
+
def smiles_list(self):
|
119
|
+
"""Gets the smiles_list of this CreateGenJobReq.
|
120
|
+
|
121
|
+
分子表达式列表
|
122
|
+
|
123
|
+
:return: The smiles_list of this CreateGenJobReq.
|
124
|
+
:rtype: list[str]
|
125
|
+
"""
|
126
|
+
return self._smiles_list
|
127
|
+
|
128
|
+
@smiles_list.setter
|
129
|
+
def smiles_list(self, smiles_list):
|
130
|
+
"""Sets the smiles_list of this CreateGenJobReq.
|
131
|
+
|
132
|
+
分子表达式列表
|
133
|
+
|
134
|
+
:param smiles_list: The smiles_list of this CreateGenJobReq.
|
135
|
+
:type smiles_list: list[str]
|
136
|
+
"""
|
137
|
+
self._smiles_list = smiles_list
|
138
|
+
|
139
|
+
@property
|
140
|
+
def molecule_file(self):
|
141
|
+
"""Gets the molecule_file of this CreateGenJobReq.
|
142
|
+
|
143
|
+
:return: The molecule_file of this CreateGenJobReq.
|
144
|
+
:rtype: :class:`huaweicloudsdkeihealth.v1.DrugFile`
|
145
|
+
"""
|
146
|
+
return self._molecule_file
|
147
|
+
|
148
|
+
@molecule_file.setter
|
149
|
+
def molecule_file(self, molecule_file):
|
150
|
+
"""Sets the molecule_file of this CreateGenJobReq.
|
151
|
+
|
152
|
+
:param molecule_file: The molecule_file of this CreateGenJobReq.
|
153
|
+
:type molecule_file: :class:`huaweicloudsdkeihealth.v1.DrugFile`
|
154
|
+
"""
|
155
|
+
self._molecule_file = molecule_file
|
156
|
+
|
157
|
+
@property
|
158
|
+
def binding_sites(self):
|
159
|
+
"""Gets the binding_sites of this CreateGenJobReq.
|
160
|
+
|
161
|
+
靶点列表
|
162
|
+
|
163
|
+
:return: The binding_sites of this CreateGenJobReq.
|
164
|
+
:rtype: list[:class:`huaweicloudsdkeihealth.v1.BindSiteDto`]
|
165
|
+
"""
|
166
|
+
return self._binding_sites
|
167
|
+
|
168
|
+
@binding_sites.setter
|
169
|
+
def binding_sites(self, binding_sites):
|
170
|
+
"""Sets the binding_sites of this CreateGenJobReq.
|
171
|
+
|
172
|
+
靶点列表
|
173
|
+
|
174
|
+
:param binding_sites: The binding_sites of this CreateGenJobReq.
|
175
|
+
:type binding_sites: list[:class:`huaweicloudsdkeihealth.v1.BindSiteDto`]
|
176
|
+
"""
|
177
|
+
self._binding_sites = binding_sites
|
178
|
+
|
179
|
+
@property
|
180
|
+
def weak_constraints(self):
|
181
|
+
"""Gets the weak_constraints of this CreateGenJobReq.
|
182
|
+
|
183
|
+
弱约束集合
|
184
|
+
|
185
|
+
:return: The weak_constraints of this CreateGenJobReq.
|
186
|
+
:rtype: list[:class:`huaweicloudsdkeihealth.v1.WeakConstraintDto`]
|
187
|
+
"""
|
188
|
+
return self._weak_constraints
|
189
|
+
|
190
|
+
@weak_constraints.setter
|
191
|
+
def weak_constraints(self, weak_constraints):
|
192
|
+
"""Sets the weak_constraints of this CreateGenJobReq.
|
193
|
+
|
194
|
+
弱约束集合
|
195
|
+
|
196
|
+
:param weak_constraints: The weak_constraints of this CreateGenJobReq.
|
197
|
+
:type weak_constraints: list[:class:`huaweicloudsdkeihealth.v1.WeakConstraintDto`]
|
198
|
+
"""
|
199
|
+
self._weak_constraints = weak_constraints
|
200
|
+
|
201
|
+
@property
|
202
|
+
def strong_constraints(self):
|
203
|
+
"""Gets the strong_constraints of this CreateGenJobReq.
|
204
|
+
|
205
|
+
强约束集合
|
206
|
+
|
207
|
+
:return: The strong_constraints of this CreateGenJobReq.
|
208
|
+
:rtype: list[:class:`huaweicloudsdkeihealth.v1.StrongConstraintDto`]
|
209
|
+
"""
|
210
|
+
return self._strong_constraints
|
211
|
+
|
212
|
+
@strong_constraints.setter
|
213
|
+
def strong_constraints(self, strong_constraints):
|
214
|
+
"""Sets the strong_constraints of this CreateGenJobReq.
|
215
|
+
|
216
|
+
强约束集合
|
217
|
+
|
218
|
+
:param strong_constraints: The strong_constraints of this CreateGenJobReq.
|
219
|
+
:type strong_constraints: list[:class:`huaweicloudsdkeihealth.v1.StrongConstraintDto`]
|
220
|
+
"""
|
221
|
+
self._strong_constraints = strong_constraints
|
222
|
+
|
223
|
+
@property
|
224
|
+
def base_model_id(self):
|
225
|
+
"""Gets the base_model_id of this CreateGenJobReq.
|
226
|
+
|
227
|
+
基模型id
|
228
|
+
|
229
|
+
:return: The base_model_id of this CreateGenJobReq.
|
230
|
+
:rtype: str
|
231
|
+
"""
|
232
|
+
return self._base_model_id
|
233
|
+
|
234
|
+
@base_model_id.setter
|
235
|
+
def base_model_id(self, base_model_id):
|
236
|
+
"""Sets the base_model_id of this CreateGenJobReq.
|
237
|
+
|
238
|
+
基模型id
|
239
|
+
|
240
|
+
:param base_model_id: The base_model_id of this CreateGenJobReq.
|
241
|
+
:type base_model_id: str
|
242
|
+
"""
|
243
|
+
self._base_model_id = base_model_id
|
244
|
+
|
245
|
+
@property
|
246
|
+
def model_ids(self):
|
247
|
+
"""Gets the model_ids of this CreateGenJobReq.
|
248
|
+
|
249
|
+
模型id列表
|
250
|
+
|
251
|
+
:return: The model_ids of this CreateGenJobReq.
|
252
|
+
:rtype: list[str]
|
253
|
+
"""
|
254
|
+
return self._model_ids
|
255
|
+
|
256
|
+
@model_ids.setter
|
257
|
+
def model_ids(self, model_ids):
|
258
|
+
"""Sets the model_ids of this CreateGenJobReq.
|
259
|
+
|
260
|
+
模型id列表
|
261
|
+
|
262
|
+
:param model_ids: The model_ids of this CreateGenJobReq.
|
263
|
+
:type model_ids: list[str]
|
264
|
+
"""
|
265
|
+
self._model_ids = model_ids
|
266
|
+
|
267
|
+
@property
|
268
|
+
def num_trials(self):
|
269
|
+
"""Gets the num_trials of this CreateGenJobReq.
|
270
|
+
|
271
|
+
生成分子数量
|
272
|
+
|
273
|
+
:return: The num_trials of this CreateGenJobReq.
|
274
|
+
:rtype: int
|
275
|
+
"""
|
276
|
+
return self._num_trials
|
277
|
+
|
278
|
+
@num_trials.setter
|
279
|
+
def num_trials(self, num_trials):
|
280
|
+
"""Sets the num_trials of this CreateGenJobReq.
|
281
|
+
|
282
|
+
生成分子数量
|
283
|
+
|
284
|
+
:param num_trials: The num_trials of this CreateGenJobReq.
|
285
|
+
:type num_trials: int
|
286
|
+
"""
|
287
|
+
self._num_trials = num_trials
|
288
|
+
|
289
|
+
def to_dict(self):
|
290
|
+
"""Returns the model properties as a dict"""
|
291
|
+
result = {}
|
292
|
+
|
293
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
294
|
+
value = getattr(self, attr)
|
295
|
+
if isinstance(value, list):
|
296
|
+
result[attr] = list(map(
|
297
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
298
|
+
value
|
299
|
+
))
|
300
|
+
elif hasattr(value, "to_dict"):
|
301
|
+
result[attr] = value.to_dict()
|
302
|
+
elif isinstance(value, dict):
|
303
|
+
result[attr] = dict(map(
|
304
|
+
lambda item: (item[0], item[1].to_dict())
|
305
|
+
if hasattr(item[1], "to_dict") else item,
|
306
|
+
value.items()
|
307
|
+
))
|
308
|
+
else:
|
309
|
+
if attr in self.sensitive_list:
|
310
|
+
result[attr] = "****"
|
311
|
+
else:
|
312
|
+
result[attr] = value
|
313
|
+
|
314
|
+
return result
|
315
|
+
|
316
|
+
def to_str(self):
|
317
|
+
"""Returns the string representation of the model"""
|
318
|
+
import simplejson as json
|
319
|
+
if six.PY2:
|
320
|
+
import sys
|
321
|
+
reload(sys)
|
322
|
+
sys.setdefaultencoding("utf-8")
|
323
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
324
|
+
|
325
|
+
def __repr__(self):
|
326
|
+
"""For `print`"""
|
327
|
+
return self.to_str()
|
328
|
+
|
329
|
+
def __eq__(self, other):
|
330
|
+
"""Returns true if both objects are equal"""
|
331
|
+
if not isinstance(other, CreateGenJobReq):
|
332
|
+
return False
|
333
|
+
|
334
|
+
return self.__dict__ == other.__dict__
|
335
|
+
|
336
|
+
def __ne__(self, other):
|
337
|
+
"""Returns true if both objects are not equal"""
|
338
|
+
return not self == other
|