benchling-api-client 2.0.413__py3-none-any.whl → 2.0.414__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.
@@ -20,6 +20,7 @@ class NucleotideTemplateAlignmentCreate:
20
20
  _template_sequence_id: str
21
21
  _algorithm: NucleotideAlignmentBaseAlgorithm
22
22
  _files: List[Union[NucleotideAlignmentBaseFilesItem, NucleotideAlignmentFile, UnknownType]]
23
+ _should_disable_circular_sequence_rotation: Union[Unset, bool] = False
23
24
  _clustalo_options: Union[Unset, NucleotideAlignmentBaseClustaloOptions] = UNSET
24
25
  _mafft_options: Union[Unset, NucleotideAlignmentBaseMafftOptions] = UNSET
25
26
  _name: Union[Unset, str] = UNSET
@@ -29,6 +30,11 @@ class NucleotideTemplateAlignmentCreate:
29
30
  fields.append("template_sequence_id={}".format(repr(self._template_sequence_id)))
30
31
  fields.append("algorithm={}".format(repr(self._algorithm)))
31
32
  fields.append("files={}".format(repr(self._files)))
33
+ fields.append(
34
+ "should_disable_circular_sequence_rotation={}".format(
35
+ repr(self._should_disable_circular_sequence_rotation)
36
+ )
37
+ )
32
38
  fields.append("clustalo_options={}".format(repr(self._clustalo_options)))
33
39
  fields.append("mafft_options={}".format(repr(self._mafft_options)))
34
40
  fields.append("name={}".format(repr(self._name)))
@@ -50,6 +56,7 @@ class NucleotideTemplateAlignmentCreate:
50
56
 
51
57
  files.append(files_item)
52
58
 
59
+ should_disable_circular_sequence_rotation = self._should_disable_circular_sequence_rotation
53
60
  clustalo_options: Union[Unset, Dict[str, Any]] = UNSET
54
61
  if not isinstance(self._clustalo_options, Unset):
55
62
  clustalo_options = self._clustalo_options.to_dict()
@@ -68,6 +75,8 @@ class NucleotideTemplateAlignmentCreate:
68
75
  field_dict["algorithm"] = algorithm
69
76
  if files is not UNSET:
70
77
  field_dict["files"] = files
78
+ if should_disable_circular_sequence_rotation is not UNSET:
79
+ field_dict["shouldDisableCircularSequenceRotation"] = should_disable_circular_sequence_rotation
71
80
  if clustalo_options is not UNSET:
72
81
  field_dict["clustaloOptions"] = clustalo_options
73
82
  if mafft_options is not UNSET:
@@ -152,6 +161,17 @@ class NucleotideTemplateAlignmentCreate:
152
161
  List[Union[NucleotideAlignmentBaseFilesItem, NucleotideAlignmentFile, UnknownType]], UNSET
153
162
  )
154
163
 
164
+ def get_should_disable_circular_sequence_rotation() -> Union[Unset, bool]:
165
+ should_disable_circular_sequence_rotation = d.pop("shouldDisableCircularSequenceRotation")
166
+ return should_disable_circular_sequence_rotation
167
+
168
+ try:
169
+ should_disable_circular_sequence_rotation = get_should_disable_circular_sequence_rotation()
170
+ except KeyError:
171
+ if strict:
172
+ raise
173
+ should_disable_circular_sequence_rotation = cast(Union[Unset, bool], UNSET)
174
+
155
175
  def get_clustalo_options() -> Union[Unset, NucleotideAlignmentBaseClustaloOptions]:
156
176
  clustalo_options: Union[Unset, Union[Unset, NucleotideAlignmentBaseClustaloOptions]] = UNSET
157
177
  _clustalo_options = d.pop("clustaloOptions")
@@ -199,6 +219,7 @@ class NucleotideTemplateAlignmentCreate:
199
219
  template_sequence_id=template_sequence_id,
200
220
  algorithm=algorithm,
201
221
  files=files,
222
+ should_disable_circular_sequence_rotation=should_disable_circular_sequence_rotation,
202
223
  clustalo_options=clustalo_options,
203
224
  mafft_options=mafft_options,
204
225
  name=name,
@@ -238,6 +259,21 @@ class NucleotideTemplateAlignmentCreate:
238
259
  ) -> None:
239
260
  self._files = value
240
261
 
262
+ @property
263
+ def should_disable_circular_sequence_rotation(self) -> bool:
264
+ """ Whether to disable circular sequence rotation. """
265
+ if isinstance(self._should_disable_circular_sequence_rotation, Unset):
266
+ raise NotPresentError(self, "should_disable_circular_sequence_rotation")
267
+ return self._should_disable_circular_sequence_rotation
268
+
269
+ @should_disable_circular_sequence_rotation.setter
270
+ def should_disable_circular_sequence_rotation(self, value: bool) -> None:
271
+ self._should_disable_circular_sequence_rotation = value
272
+
273
+ @should_disable_circular_sequence_rotation.deleter
274
+ def should_disable_circular_sequence_rotation(self) -> None:
275
+ self._should_disable_circular_sequence_rotation = UNSET
276
+
241
277
  @property
242
278
  def clustalo_options(self) -> NucleotideAlignmentBaseClustaloOptions:
243
279
  """ Options to pass to the ClustalO algorithm, only applicable for ClustalO. """
@@ -20,6 +20,7 @@ class NucleotideTemplateAlignmentCreate:
20
20
  _template_sequence_id: str
21
21
  _algorithm: NucleotideAlignmentBaseAlgorithm
22
22
  _files: List[Union[NucleotideAlignmentBaseFilesItem, NucleotideAlignmentFile, UnknownType]]
23
+ _should_disable_circular_sequence_rotation: Union[Unset, bool] = False
23
24
  _clustalo_options: Union[Unset, NucleotideAlignmentBaseClustaloOptions] = UNSET
24
25
  _mafft_options: Union[Unset, NucleotideAlignmentBaseMafftOptions] = UNSET
25
26
  _name: Union[Unset, str] = UNSET
@@ -29,6 +30,11 @@ class NucleotideTemplateAlignmentCreate:
29
30
  fields.append("template_sequence_id={}".format(repr(self._template_sequence_id)))
30
31
  fields.append("algorithm={}".format(repr(self._algorithm)))
31
32
  fields.append("files={}".format(repr(self._files)))
33
+ fields.append(
34
+ "should_disable_circular_sequence_rotation={}".format(
35
+ repr(self._should_disable_circular_sequence_rotation)
36
+ )
37
+ )
32
38
  fields.append("clustalo_options={}".format(repr(self._clustalo_options)))
33
39
  fields.append("mafft_options={}".format(repr(self._mafft_options)))
34
40
  fields.append("name={}".format(repr(self._name)))
@@ -50,6 +56,7 @@ class NucleotideTemplateAlignmentCreate:
50
56
 
51
57
  files.append(files_item)
52
58
 
59
+ should_disable_circular_sequence_rotation = self._should_disable_circular_sequence_rotation
53
60
  clustalo_options: Union[Unset, Dict[str, Any]] = UNSET
54
61
  if not isinstance(self._clustalo_options, Unset):
55
62
  clustalo_options = self._clustalo_options.to_dict()
@@ -68,6 +75,8 @@ class NucleotideTemplateAlignmentCreate:
68
75
  field_dict["algorithm"] = algorithm
69
76
  if files is not UNSET:
70
77
  field_dict["files"] = files
78
+ if should_disable_circular_sequence_rotation is not UNSET:
79
+ field_dict["shouldDisableCircularSequenceRotation"] = should_disable_circular_sequence_rotation
71
80
  if clustalo_options is not UNSET:
72
81
  field_dict["clustaloOptions"] = clustalo_options
73
82
  if mafft_options is not UNSET:
@@ -152,6 +161,17 @@ class NucleotideTemplateAlignmentCreate:
152
161
  List[Union[NucleotideAlignmentBaseFilesItem, NucleotideAlignmentFile, UnknownType]], UNSET
153
162
  )
154
163
 
164
+ def get_should_disable_circular_sequence_rotation() -> Union[Unset, bool]:
165
+ should_disable_circular_sequence_rotation = d.pop("shouldDisableCircularSequenceRotation")
166
+ return should_disable_circular_sequence_rotation
167
+
168
+ try:
169
+ should_disable_circular_sequence_rotation = get_should_disable_circular_sequence_rotation()
170
+ except KeyError:
171
+ if strict:
172
+ raise
173
+ should_disable_circular_sequence_rotation = cast(Union[Unset, bool], UNSET)
174
+
155
175
  def get_clustalo_options() -> Union[Unset, NucleotideAlignmentBaseClustaloOptions]:
156
176
  clustalo_options: Union[Unset, Union[Unset, NucleotideAlignmentBaseClustaloOptions]] = UNSET
157
177
  _clustalo_options = d.pop("clustaloOptions")
@@ -199,6 +219,7 @@ class NucleotideTemplateAlignmentCreate:
199
219
  template_sequence_id=template_sequence_id,
200
220
  algorithm=algorithm,
201
221
  files=files,
222
+ should_disable_circular_sequence_rotation=should_disable_circular_sequence_rotation,
202
223
  clustalo_options=clustalo_options,
203
224
  mafft_options=mafft_options,
204
225
  name=name,
@@ -238,6 +259,21 @@ class NucleotideTemplateAlignmentCreate:
238
259
  ) -> None:
239
260
  self._files = value
240
261
 
262
+ @property
263
+ def should_disable_circular_sequence_rotation(self) -> bool:
264
+ """ Whether to disable circular sequence rotation. """
265
+ if isinstance(self._should_disable_circular_sequence_rotation, Unset):
266
+ raise NotPresentError(self, "should_disable_circular_sequence_rotation")
267
+ return self._should_disable_circular_sequence_rotation
268
+
269
+ @should_disable_circular_sequence_rotation.setter
270
+ def should_disable_circular_sequence_rotation(self, value: bool) -> None:
271
+ self._should_disable_circular_sequence_rotation = value
272
+
273
+ @should_disable_circular_sequence_rotation.deleter
274
+ def should_disable_circular_sequence_rotation(self) -> None:
275
+ self._should_disable_circular_sequence_rotation = UNSET
276
+
241
277
  @property
242
278
  def clustalo_options(self) -> NucleotideAlignmentBaseClustaloOptions:
243
279
  """ Options to pass to the ClustalO algorithm, only applicable for ClustalO. """
@@ -31064,6 +31064,10 @@ components:
31064
31064
  allOf:
31065
31065
  - $ref: '#/components/schemas/NucleotideAlignmentBase'
31066
31066
  - properties:
31067
+ shouldDisableCircularSequenceRotation:
31068
+ default: false
31069
+ description: Whether to disable circular sequence rotation.
31070
+ type: boolean
31067
31071
  templateSequenceId:
31068
31072
  example: seq_rXqq0IHU
31069
31073
  type: string
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: benchling-api-client
3
- Version: 2.0.413
3
+ Version: 2.0.414
4
4
  Summary: Autogenerated Python client from OpenAPI Python Client generator
5
5
  License: Apache-2.0
6
6
  Author: Benchling Support
@@ -1301,7 +1301,7 @@ benchling_api_client/models/nucleotide_alignments_paginated_list.py,sha256=tx_hG
1301
1301
  benchling_api_client/models/nucleotide_consensus_alignment_create.py,sha256=-cOi_wDzzU7W_QAWgRL_809U3b3oP33tzfbg7RrhtEo,12234
1302
1302
  benchling_api_client/models/nucleotide_consensus_alignment_create_new_sequence.py,sha256=R10DdXsC5ZXMLS8waeigjiECAtN71K3gTlJBLfJs8K4,2832
1303
1303
  benchling_api_client/models/nucleotide_sequence_part.py,sha256=ZZVlZSeFZNBaelWYEbMv3W21O920fSxtlPXeytia5t4,4475
1304
- benchling_api_client/models/nucleotide_template_alignment_create.py,sha256=JNfZhZribNV5zAQrJSFVNZ9JdGUZpXbVERbjWRogMLw,10557
1304
+ benchling_api_client/models/nucleotide_template_alignment_create.py,sha256=IeoPCwIjyr70dBMmSm0yfaixTI3hswWMZ7q0NnbOWxk,12464
1305
1305
  benchling_api_client/models/o_auth_bad_request_error.py,sha256=04nNeqMhUoPYzYYXwrY-olOriFmgeQauW4DK1HTk3jw,3072
1306
1306
  benchling_api_client/models/o_auth_bad_request_error_error.py,sha256=TU1o0VajknbuPOP6QS0yWl5F2okhknHqa0-L7G_WTvA,5059
1307
1307
  benchling_api_client/models/o_auth_bad_request_error_error_type.py,sha256=epf0Y9ss38dN2A_uHKI3vIlbwqptROdHkT9E1ilreYc,864
@@ -3822,7 +3822,7 @@ benchling_api_client/v2/stable/models/nucleotide_alignments_paginated_list.py,sh
3822
3822
  benchling_api_client/v2/stable/models/nucleotide_consensus_alignment_create.py,sha256=-cOi_wDzzU7W_QAWgRL_809U3b3oP33tzfbg7RrhtEo,12234
3823
3823
  benchling_api_client/v2/stable/models/nucleotide_consensus_alignment_create_new_sequence.py,sha256=R10DdXsC5ZXMLS8waeigjiECAtN71K3gTlJBLfJs8K4,2832
3824
3824
  benchling_api_client/v2/stable/models/nucleotide_sequence_part.py,sha256=ZZVlZSeFZNBaelWYEbMv3W21O920fSxtlPXeytia5t4,4475
3825
- benchling_api_client/v2/stable/models/nucleotide_template_alignment_create.py,sha256=JNfZhZribNV5zAQrJSFVNZ9JdGUZpXbVERbjWRogMLw,10557
3825
+ benchling_api_client/v2/stable/models/nucleotide_template_alignment_create.py,sha256=IeoPCwIjyr70dBMmSm0yfaixTI3hswWMZ7q0NnbOWxk,12464
3826
3826
  benchling_api_client/v2/stable/models/o_auth_bad_request_error.py,sha256=04nNeqMhUoPYzYYXwrY-olOriFmgeQauW4DK1HTk3jw,3072
3827
3827
  benchling_api_client/v2/stable/models/o_auth_bad_request_error_error.py,sha256=TU1o0VajknbuPOP6QS0yWl5F2okhknHqa0-L7G_WTvA,5059
3828
3828
  benchling_api_client/v2/stable/models/o_auth_bad_request_error_error_type.py,sha256=epf0Y9ss38dN2A_uHKI3vIlbwqptROdHkT9E1ilreYc,864
@@ -4199,7 +4199,7 @@ benchling_api_client/v2/stable/models/worksheet_review_changes_review_record.py,
4199
4199
  benchling_api_client/v2/stable/models/worksheet_review_changes_review_record_status.py,sha256=9VKJkUCQCFCdkJnV8-JLRQObhO0cTJf2ZeZnBIEyPFA,1093
4200
4200
  benchling_api_client/v2/stable/models/worksheet_updated_review_snapshot_beta_event.py,sha256=omW47Bd5ghtsrw7DNYNsnMX_k7xw7JyJOJzw4FWn0oA,12046
4201
4201
  benchling_api_client/v2/stable/models/worksheet_updated_review_snapshot_beta_event_event_type.py,sha256=sjbdp-hm8WO8sTocFgmYd_9zt6PpJdZz5tgws0W2cEg,898
4202
- benchling_api_client/v2/stable/openapi.yaml,sha256=uhkL-R9xrGhfP-1GE45gAGt-KbMEZdF4VsfM0fTAOxk,1138219
4202
+ benchling_api_client/v2/stable/openapi.yaml,sha256=ocp4-bO-4tZyJ7_vqMdoL-IJzU2CZLNDvHDH7m4pxwA,1138393
4203
4203
  benchling_api_client/v2/stable/types.py,sha256=nCpxtn44qMDpuS_jcdbjhJlZFvRrXEUEVEDN471GrH8,244
4204
4204
  benchling_api_client/v2/types.py,sha256=SkWwIlK-UbP10AeiC1VeIQ_1HwALN65zpQyXPc0qDFs,1169
4205
4205
  benchling_api_client/webhooks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -4513,7 +4513,7 @@ benchling_api_client/webhooks/v0/stable/models/workflow_task_updated_status_webh
4513
4513
  benchling_api_client/webhooks/v0/stable/openapi.yaml,sha256=Gvlve51cLq7Ws8ll_8Nx-6SGXuYEb8TWCoWzfg_YGnA,39400
4514
4514
  benchling_api_client/webhooks/v0/stable/types.py,sha256=nCpxtn44qMDpuS_jcdbjhJlZFvRrXEUEVEDN471GrH8,244
4515
4515
  benchling_api_client/webhooks/v0/types.py,sha256=SkWwIlK-UbP10AeiC1VeIQ_1HwALN65zpQyXPc0qDFs,1169
4516
- benchling_api_client-2.0.413.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
4517
- benchling_api_client-2.0.413.dist-info/METADATA,sha256=6mTBg6SAmaaMwlD4elS_MHqAo6Z6sFasBnP4A2KgRYo,1253
4518
- benchling_api_client-2.0.413.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
4519
- benchling_api_client-2.0.413.dist-info/RECORD,,
4516
+ benchling_api_client-2.0.414.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
4517
+ benchling_api_client-2.0.414.dist-info/METADATA,sha256=vVLjNpxrG7NRPmY99ceQheenOWF62w8ipKpz_HUOLaM,1253
4518
+ benchling_api_client-2.0.414.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
4519
+ benchling_api_client-2.0.414.dist-info/RECORD,,