benchling-api-client 2.0.417__py3-none-any.whl → 2.0.418__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.
Files changed (23) hide show
  1. benchling_api_client/models/back_translate.py +85 -1
  2. benchling_api_client/models/back_translate_gc_content_range.py +98 -0
  3. benchling_api_client/models/back_translate_method.py +21 -0
  4. benchling_api_client/models/optimize_codons.py +85 -1
  5. benchling_api_client/models/optimize_codons_gc_content_range.py +98 -0
  6. benchling_api_client/models/optimize_codons_method.py +21 -0
  7. benchling_api_client/models/reduced_pattern.py +3 -1
  8. benchling_api_client/v2/alpha/models/benchling_app_manifest_feature_canvas_locations.py +1 -0
  9. benchling_api_client/v2/alpha/openapi.yaml +1 -0
  10. benchling_api_client/v2/beta/models/benchling_app_manifest_feature_canvas_locations.py +1 -0
  11. benchling_api_client/v2/beta/openapi.yaml +1 -0
  12. benchling_api_client/v2/stable/models/back_translate.py +85 -1
  13. benchling_api_client/v2/stable/models/back_translate_gc_content_range.py +98 -0
  14. benchling_api_client/v2/stable/models/back_translate_method.py +21 -0
  15. benchling_api_client/v2/stable/models/optimize_codons.py +85 -1
  16. benchling_api_client/v2/stable/models/optimize_codons_gc_content_range.py +98 -0
  17. benchling_api_client/v2/stable/models/optimize_codons_method.py +21 -0
  18. benchling_api_client/v2/stable/models/reduced_pattern.py +3 -1
  19. benchling_api_client/v2/stable/openapi.yaml +78 -11
  20. {benchling_api_client-2.0.417.dist-info → benchling_api_client-2.0.418.dist-info}/METADATA +1 -1
  21. {benchling_api_client-2.0.417.dist-info → benchling_api_client-2.0.418.dist-info}/RECORD +23 -15
  22. {benchling_api_client-2.0.417.dist-info → benchling_api_client-2.0.418.dist-info}/LICENSE +0 -0
  23. {benchling_api_client-2.0.417.dist-info → benchling_api_client-2.0.418.dist-info}/WHEEL +0 -0
@@ -23669,9 +23669,10 @@ components:
23669
23669
  type: string
23670
23670
  gcContent:
23671
23671
  default: ANY
23672
- description: 'The amount of GC content in the back-translated sequence.
23673
- If not specified, the back-translation will default to ANY (0-1). LOW
23674
- is defined as below 0.33, MEDIUM as 0.33-0.66, and HIGH as above 0.66.
23672
+ description: 'The amount of GC content in the optimized sequence. LOW is
23673
+ defined as below 0.33, MEDIUM as 0.33-0.66, and HIGH as above 0.66. If
23674
+ neither gcContent nor gcContentRange is specified, the optimization will
23675
+ default to ANY (0-1). Cannot be specified together with gcContentRange.
23675
23676
 
23676
23677
  '
23677
23678
  enum:
@@ -23680,6 +23681,25 @@ components:
23680
23681
  - MEDIUM
23681
23682
  - HIGH
23682
23683
  type: string
23684
+ gcContentRange:
23685
+ additionalProperties: false
23686
+ description: 'Custom GC content range for the optimized sequence, specified
23687
+ as decimal values between 0 and 1. The maximum must be greater than the
23688
+ minimum. Cannot be specified together with gcContent.
23689
+
23690
+ '
23691
+ properties:
23692
+ max:
23693
+ description: Maximum GC content ratio (e.g., 0.6 for 60%)
23694
+ maximum: 1
23695
+ minimum: 0
23696
+ type: number
23697
+ min:
23698
+ description: Minimum GC content ratio (e.g., 0.4 for 40%)
23699
+ maximum: 1
23700
+ minimum: 0
23701
+ type: number
23702
+ type: object
23683
23703
  hairpinParameters:
23684
23704
  additionalProperties: false
23685
23705
  description: 'These parameters are applied in the AvoidHairpins specification
@@ -23695,6 +23715,18 @@ components:
23695
23715
  default: 200
23696
23716
  type: integer
23697
23717
  type: object
23718
+ method:
23719
+ default: MATCH_CODON_USAGE
23720
+ description: 'The codon optimization algorithm to use. Requires codonUsageTableId
23721
+ to be specified. MATCH_CODON_USAGE selects codons probabilistically based
23722
+ on the organism''s codon usage frequencies. USE_BEST_CODON always selects
23723
+ the most frequently used codon for each amino acid.
23724
+
23725
+ '
23726
+ enum:
23727
+ - MATCH_CODON_USAGE
23728
+ - USE_BEST_CODON
23729
+ type: string
23698
23730
  reducedPatterns:
23699
23731
  description: 'List of patterns to avoid when creating the back-translated
23700
23732
  sequence, on the coding strand only.
@@ -31383,9 +31415,10 @@ components:
31383
31415
  type: string
31384
31416
  gcContent:
31385
31417
  default: ANY
31386
- description: 'The amount of GC content in the optimized sequence. If not
31387
- specified, the optimization will default to ANY (0-1). LOW is defined
31388
- as below 0.33, MEDIUM as 0.33-0.66, and HIGH as above 0.66.
31418
+ description: 'The amount of GC content in the optimized sequence. LOW is
31419
+ defined as below 0.33, MEDIUM as 0.33-0.66, and HIGH as above 0.66. If
31420
+ neither gcContent nor gcContentRange is specified, the optimization will
31421
+ default to ANY (0-1). Cannot be specified together with gcContentRange.
31389
31422
 
31390
31423
  '
31391
31424
  enum:
@@ -31394,6 +31427,25 @@ components:
31394
31427
  - MEDIUM
31395
31428
  - HIGH
31396
31429
  type: string
31430
+ gcContentRange:
31431
+ additionalProperties: false
31432
+ description: 'Custom GC content range for the optimized sequence, specified
31433
+ as decimal values between 0 and 1. The maximum must be greater than the
31434
+ minimum. Cannot be specified together with gcContent.
31435
+
31436
+ '
31437
+ properties:
31438
+ max:
31439
+ description: Maximum GC content ratio (e.g., 0.6 for 60%)
31440
+ maximum: 1
31441
+ minimum: 0
31442
+ type: number
31443
+ min:
31444
+ description: Minimum GC content ratio (e.g., 0.4 for 40%)
31445
+ maximum: 1
31446
+ minimum: 0
31447
+ type: number
31448
+ type: object
31397
31449
  hairpinParameters:
31398
31450
  additionalProperties: false
31399
31451
  description: 'These parameters are applied in the AvoidHairpins specification
@@ -31409,6 +31461,18 @@ components:
31409
31461
  default: 200
31410
31462
  type: integer
31411
31463
  type: object
31464
+ method:
31465
+ default: MATCH_CODON_USAGE
31466
+ description: 'The codon optimization algorithm to use. Requires codonUsageTableId
31467
+ to be specified. MATCH_CODON_USAGE selects codons probabilistically based
31468
+ on the organism''s codon usage frequencies. USE_BEST_CODON always selects
31469
+ the most frequently used codon for each amino acid.
31470
+
31471
+ '
31472
+ enum:
31473
+ - MATCH_CODON_USAGE
31474
+ - USE_BEST_CODON
31475
+ type: string
31412
31476
  reducedPatterns:
31413
31477
  description: 'List of patterns to avoid when creating the optimized sequence,
31414
31478
  on the coding strand only.
@@ -31924,11 +31988,14 @@ components:
31924
31988
  type: object
31925
31989
  ReducedPattern:
31926
31990
  additionalProperties: false
31927
- description: 'Patterns must consist of ATGC bases only, and are case-insensitive
31928
- ("gat" will reduce usage of "GAT"). If avoidReverseComplement is true, then
31929
- the pattern''s reverse complement will also be avoided.
31930
-
31931
- '
31991
+ description: "DNA patterns to avoid during optimization. Supports two formats:\
31992
+ \ 1) DNA base patterns: strings of ATGC bases (case-insensitive, e.g., \"\
31993
+ ATGC\" or \"gat\") 2) Repeat patterns: format \"nxkmer\" specifying n repeats\
31994
+ \ of k-sized sequences (e.g., \"3x4mer\" matches 3 consecutive 4-base repeats).\
31995
+ \ Maximum total length for repeat patterns is 50 bases (n * k \u2264 50).\n\
31996
+ If avoidReverseComplement is true, the pattern's reverse complement will also\
31997
+ \ be avoided. Note: avoidReverseComplement cannot be true for repeat patterns\
31998
+ \ (nxkmer format).\n"
31932
31999
  properties:
31933
32000
  avoidReverseComplement:
31934
32001
  default: false
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: benchling-api-client
3
- Version: 2.0.417
3
+ Version: 2.0.418
4
4
  Summary: Autogenerated Python client from OpenAPI Python Client generator
5
5
  License: Apache-2.0
6
6
  Author: Benchling Support
@@ -687,9 +687,11 @@ benchling_api_client/models/automation_transform_status_running_event_v2_event.p
687
687
  benchling_api_client/models/automation_transform_status_running_event_v2_event_event_type.py,sha256=7OMUUZifRDfjXVtJTWyNmaP1UqwYD8sJsap1buNC8os,941
688
688
  benchling_api_client/models/automation_transform_status_succeeded_event_v2_event.py,sha256=5xo_SRFE2ApTafPGFKpO5bkzGscOzIAktk7altP34Ts,11624
689
689
  benchling_api_client/models/automation_transform_status_succeeded_event_v2_event_event_type.py,sha256=sJhREtW1dnZoHeNpY0UJgrOjGq0SUT-rwFnT1FxUtlg,955
690
- benchling_api_client/models/back_translate.py,sha256=i0eoquAY0VNFyjhv1qbNA1JOLUXm6wE4EstYJxtyG08,13782
690
+ benchling_api_client/models/back_translate.py,sha256=-9LcheXwlShO8tq7MX3YCtZzjrDjuLWg1NGRBDLWEl4,17439
691
691
  benchling_api_client/models/back_translate_gc_content.py,sha256=lX3dz1mBTj-aW2QCT30ik-GDIhK1roYRw8Da-jdZSl4,723
692
+ benchling_api_client/models/back_translate_gc_content_range.py,sha256=iEaJboVMwRgH5LxYASb2sp5QynrxedVCQy6Kv1HEDPg,2738
692
693
  benchling_api_client/models/back_translate_hairpin_parameters.py,sha256=ieNZos3jLzPpkbyiTitx5KDlCXvqOGbRWgU1JloM2H4,2671
694
+ benchling_api_client/models/back_translate_method.py,sha256=gfv7VGdnAhJn1ssFiNbS3ZEjsCDJt9z4BiTStzWL2y0,718
693
695
  benchling_api_client/models/bad_request_error.py,sha256=X7d3281tCCAH2hCZ36Rv1i-cc0E1h6aQJKDOg4fBXj0,2989
694
696
  benchling_api_client/models/bad_request_error_bulk.py,sha256=yzGVjZ8-I26sFjmHWVRHDDv7K_Dne9vJds1mPEKew6M,3053
695
697
  benchling_api_client/models/bad_request_error_bulk_error.py,sha256=CGgTNuBZzoghtC4TMvY-LS2tmmYm_nlIBaMjaAC-7AQ,3375
@@ -1324,9 +1326,11 @@ benchling_api_client/models/oligos_bulk_create_request.py,sha256=xw9usEE_PSZV0yK
1324
1326
  benchling_api_client/models/oligos_bulk_get.py,sha256=ozrJ185hJP8je1A_sB9zPBkDEhufMSdoBnVx9tYOiBI,4411
1325
1327
  benchling_api_client/models/oligos_paginated_list.py,sha256=sR7Fy-vHxpQBWc_fpzT7gGthiYuSu3YG4L6nIzQQo4A,4748
1326
1328
  benchling_api_client/models/oligos_unarchive.py,sha256=diA8MPY841xJbComzokKzSP337ZtIyT1M9y54p30jVk,1682
1327
- benchling_api_client/models/optimize_codons.py,sha256=BtjCdJ4S7Hq5plFAt4ia2OHlnDqqI6kBarj67Xa53m8,13799
1329
+ benchling_api_client/models/optimize_codons.py,sha256=enU8PRRs3BBcYfNL4D2aTJFG0wrcAFCY9KYCvd1vduk,17485
1328
1330
  benchling_api_client/models/optimize_codons_gc_content.py,sha256=6s-JZxxyOoK0f5j3xnYrg7HgU9TXxq8SxVI4LqBB6Bw,728
1331
+ benchling_api_client/models/optimize_codons_gc_content_range.py,sha256=D5TYA5GoKlheLuQcq5-zK9MrLQgACRLIPrwgs1sgc7g,2743
1329
1332
  benchling_api_client/models/optimize_codons_hairpin_parameters.py,sha256=6Y_5LWCPQab8fPyDxm49Ro3VIZO0ZZIImQj8yjlF2p8,2676
1333
+ benchling_api_client/models/optimize_codons_method.py,sha256=pXMu1F1YE29jtglzlevq38O7q87ZuHwo7U2rF9J0UGs,723
1330
1334
  benchling_api_client/models/organization.py,sha256=tdaZQNFpa6o62YY27Wq7e0G972DNXtgt-FmxeYKlxrM,4078
1331
1335
  benchling_api_client/models/organization_summary.py,sha256=8SF-KQ6jZh5U1WRTfDCK4SxTX9frtcDk-H4va7Mn6iQ,4123
1332
1336
  benchling_api_client/models/organizations_paginated_list.py,sha256=iCqz9Syy7jWjUiDZ95DL_14SL53fw_Wqoia3HbNziCU,4443
@@ -1362,7 +1366,7 @@ benchling_api_client/models/projects_archive.py,sha256=hxN8tPc-hgwr6x--Jc475087q
1362
1366
  benchling_api_client/models/projects_archive_reason.py,sha256=0qERDCMGpcDbD-rD8sN2gAd9I-y2HZkPnasW4mDPDQo,726
1363
1367
  benchling_api_client/models/projects_paginated_list.py,sha256=C-9i40BxT0zKTb0jgGueAB2wCL9VmeVZxIO06-swNwY,4167
1364
1368
  benchling_api_client/models/projects_unarchive.py,sha256=R61AsX4TE62BSY6PacV3UNw2Hx-s7giJXhxmywCqRg0,1754
1365
- benchling_api_client/models/reduced_pattern.py,sha256=4JPUe_LEPnJuWooSltEz8M_iE0NvvfxwDU02uM4_vZ4,3211
1369
+ benchling_api_client/models/reduced_pattern.py,sha256=kqOHvb-wyjv8lHgFT-wjHIOhelLz-95Bq6OyJIGUtu0,3546
1366
1370
  benchling_api_client/models/register_entities.py,sha256=dncNlk4wLj-trHWgLnz5jdz5WCJrdLqXYG_U5fHBALA,3652
1367
1371
  benchling_api_client/models/registered_entities_list.py,sha256=HMkMwmY0Bvjxh_nce2xOltdn9b0p4MnhaYJ1lPy8Jxk,13219
1368
1372
  benchling_api_client/models/registration_origin.py,sha256=pIqNe11YL5MvFQ4ZDuWYP8eSn9WCkF4WKjkl3dlfJaw,4358
@@ -1848,7 +1852,7 @@ benchling_api_client/v2/alpha/models/benchling_app_manifest_alpha_features_item.
1848
1852
  benchling_api_client/v2/alpha/models/benchling_app_manifest_alpha_features_item_type.py,sha256=31Bml1cqpPPE3-ExDj8IQIhwlr1F8ORlj6WADjdTM5I,810
1849
1853
  benchling_api_client/v2/alpha/models/benchling_app_manifest_alpha_settings.py,sha256=ylvuWV8vU7XPlPwNu0rlc5qHDAKIwO3DRB00ZW-Gosw,8257
1850
1854
  benchling_api_client/v2/alpha/models/benchling_app_manifest_alpha_settings_lifecycle_management.py,sha256=tGwQRWqY1WRMSjYRa-O71WAK8blDDeLyr1Zep2tiD18,881
1851
- benchling_api_client/v2/alpha/models/benchling_app_manifest_feature_canvas_locations.py,sha256=C7H53y3ipsREcfITdomqrMlPFBG81jQWBrQJzOZzY90,839
1855
+ benchling_api_client/v2/alpha/models/benchling_app_manifest_feature_canvas_locations.py,sha256=Sr6xuUeCA6JOXzdAqW6DZ7dauW1VZCFVf70lW29pFVY,865
1852
1856
  benchling_api_client/v2/alpha/models/benchling_app_manifest_features_item.py,sha256=ck3wWJzheFSgMbJ_lg51BEv55hj_itht0MUrbCI4X7c,6651
1853
1857
  benchling_api_client/v2/alpha/models/benchling_app_manifest_features_item_type.py,sha256=CgrrwfK3uzdcN0DSWYqCCsQ4aXxYp4HSpKoygzdQ37M,835
1854
1858
  benchling_api_client/v2/alpha/models/benchling_app_manifest_info.py,sha256=fsiUC3Jeh2cKwZSOwNBWgfpqJK3VeeLOhL9GT80xHzY,4528
@@ -2122,7 +2126,7 @@ benchling_api_client/v2/alpha/models/user_validation_validation_status.py,sha256
2122
2126
  benchling_api_client/v2/alpha/models/workflow_task_schema_dependency.py,sha256=yVI3BdgsL8w4eoTPSlzZwA_4RJd4Igt4xnbOPc862zo,8226
2123
2127
  benchling_api_client/v2/alpha/models/workflow_task_schema_dependency_output.py,sha256=VSUorIgg3VetmPLa-HNpviFZ2MEuLC35Klj1mdujzRo,3838
2124
2128
  benchling_api_client/v2/alpha/models/workflow_task_schema_dependency_type.py,sha256=mi7_dLXJ5p5o_QS2dfq4J2UwT2TOTKeh0prqgP4aS7Y,781
2125
- benchling_api_client/v2/alpha/openapi.yaml,sha256=hA_6dRCPLqsWcGoVZP8Uy5C7snWAKSBNZ3TKGipJZo0,225242
2129
+ benchling_api_client/v2/alpha/openapi.yaml,sha256=nV0Im4dj0GVyyYZnecUPORpgUCl7LxPbvoZafhhRLRo,225259
2126
2130
  benchling_api_client/v2/alpha/types.py,sha256=nCpxtn44qMDpuS_jcdbjhJlZFvRrXEUEVEDN471GrH8,244
2127
2131
  benchling_api_client/v2/auth/__init__.py,sha256=N4pJYVUnTLzg5HO9ZldHaI-Am97i6AOCdQS0M5QcVpA,120
2128
2132
  benchling_api_client/v2/auth/api_key_auth.py,sha256=_z7albjrstwL675sSoPrPSG7VG1F8pz0ktbzdF2D2w8,627
@@ -2239,7 +2243,7 @@ benchling_api_client/v2/beta/models/batch_or_inaccessible_resource.py,sha256=7D0
2239
2243
  benchling_api_client/v2/beta/models/batch_worklist_items_list.py,sha256=Ni-RIHq58YEEqtIUXzpdZnSPCQu9gEVh_ku_MZFDZoI,4857
2240
2244
  benchling_api_client/v2/beta/models/batch_worklist_items_list_type.py,sha256=161g7RRZsFlamoDTuzVBUcQs3HBotLZUJdduHUY7mD4,691
2241
2245
  benchling_api_client/v2/beta/models/benchling_app_manifest.py,sha256=Tbn59rtlU8TQ4KERgFWI_0e6AqQ7DuVxsGJ_MdrOVfg,33311
2242
- benchling_api_client/v2/beta/models/benchling_app_manifest_feature_canvas_locations.py,sha256=C7H53y3ipsREcfITdomqrMlPFBG81jQWBrQJzOZzY90,839
2246
+ benchling_api_client/v2/beta/models/benchling_app_manifest_feature_canvas_locations.py,sha256=Sr6xuUeCA6JOXzdAqW6DZ7dauW1VZCFVf70lW29pFVY,865
2243
2247
  benchling_api_client/v2/beta/models/benchling_app_manifest_features_item.py,sha256=ck3wWJzheFSgMbJ_lg51BEv55hj_itht0MUrbCI4X7c,6651
2244
2248
  benchling_api_client/v2/beta/models/benchling_app_manifest_features_item_type.py,sha256=CgrrwfK3uzdcN0DSWYqCCsQ4aXxYp4HSpKoygzdQ37M,835
2245
2249
  benchling_api_client/v2/beta/models/benchling_app_manifest_info.py,sha256=fsiUC3Jeh2cKwZSOwNBWgfpqJK3VeeLOhL9GT80xHzY,4528
@@ -2538,7 +2542,7 @@ benchling_api_client/v2/beta/models/worksheet_review_changes.py,sha256=0MmkysLeA
2538
2542
  benchling_api_client/v2/beta/models/worksheet_review_changes_by_id.py,sha256=UgTNMq3Q_ZcIumMhd8irgQAZjXCFFQeE33b_WiiYgDU,3344
2539
2543
  benchling_api_client/v2/beta/models/worksheet_review_changes_review_record.py,sha256=vYjl1dskegWel0XUx2d0UEFhM5pQ_FKjGZNwKkYTHbQ,6202
2540
2544
  benchling_api_client/v2/beta/models/worksheet_review_changes_review_record_status.py,sha256=9VKJkUCQCFCdkJnV8-JLRQObhO0cTJf2ZeZnBIEyPFA,1093
2541
- benchling_api_client/v2/beta/openapi.yaml,sha256=wi65Sgx-lHbNDOHR0Lu7tW3JL9P7r5EM6B7BNxTm0gc,249425
2545
+ benchling_api_client/v2/beta/openapi.yaml,sha256=GtCoVuqUga3RUZsYE71c44Hphyjo6ClaxBexnouv8kI,249442
2542
2546
  benchling_api_client/v2/beta/types.py,sha256=nCpxtn44qMDpuS_jcdbjhJlZFvRrXEUEVEDN471GrH8,244
2543
2547
  benchling_api_client/v2/client.py,sha256=-6Yzio8p22BaTJ_BEInEoUzmh4afxXlwceNFtn1vBLc,2241
2544
2548
  benchling_api_client/v2/extensions.py,sha256=4TSjnmlUquvmBu8up1vPXutEInf-oXDSZ58ciyBW7_E,1996
@@ -3230,9 +3234,11 @@ benchling_api_client/v2/stable/models/automation_transform_status_running_event_
3230
3234
  benchling_api_client/v2/stable/models/automation_transform_status_running_event_v2_event_event_type.py,sha256=7OMUUZifRDfjXVtJTWyNmaP1UqwYD8sJsap1buNC8os,941
3231
3235
  benchling_api_client/v2/stable/models/automation_transform_status_succeeded_event_v2_event.py,sha256=5xo_SRFE2ApTafPGFKpO5bkzGscOzIAktk7altP34Ts,11624
3232
3236
  benchling_api_client/v2/stable/models/automation_transform_status_succeeded_event_v2_event_event_type.py,sha256=sJhREtW1dnZoHeNpY0UJgrOjGq0SUT-rwFnT1FxUtlg,955
3233
- benchling_api_client/v2/stable/models/back_translate.py,sha256=i0eoquAY0VNFyjhv1qbNA1JOLUXm6wE4EstYJxtyG08,13782
3237
+ benchling_api_client/v2/stable/models/back_translate.py,sha256=-9LcheXwlShO8tq7MX3YCtZzjrDjuLWg1NGRBDLWEl4,17439
3234
3238
  benchling_api_client/v2/stable/models/back_translate_gc_content.py,sha256=lX3dz1mBTj-aW2QCT30ik-GDIhK1roYRw8Da-jdZSl4,723
3239
+ benchling_api_client/v2/stable/models/back_translate_gc_content_range.py,sha256=iEaJboVMwRgH5LxYASb2sp5QynrxedVCQy6Kv1HEDPg,2738
3235
3240
  benchling_api_client/v2/stable/models/back_translate_hairpin_parameters.py,sha256=ieNZos3jLzPpkbyiTitx5KDlCXvqOGbRWgU1JloM2H4,2671
3241
+ benchling_api_client/v2/stable/models/back_translate_method.py,sha256=gfv7VGdnAhJn1ssFiNbS3ZEjsCDJt9z4BiTStzWL2y0,718
3236
3242
  benchling_api_client/v2/stable/models/bad_request_error.py,sha256=X7d3281tCCAH2hCZ36Rv1i-cc0E1h6aQJKDOg4fBXj0,2989
3237
3243
  benchling_api_client/v2/stable/models/bad_request_error_bulk.py,sha256=yzGVjZ8-I26sFjmHWVRHDDv7K_Dne9vJds1mPEKew6M,3053
3238
3244
  benchling_api_client/v2/stable/models/bad_request_error_bulk_error.py,sha256=CGgTNuBZzoghtC4TMvY-LS2tmmYm_nlIBaMjaAC-7AQ,3375
@@ -3867,9 +3873,11 @@ benchling_api_client/v2/stable/models/oligos_bulk_create_request.py,sha256=xw9us
3867
3873
  benchling_api_client/v2/stable/models/oligos_bulk_get.py,sha256=ozrJ185hJP8je1A_sB9zPBkDEhufMSdoBnVx9tYOiBI,4411
3868
3874
  benchling_api_client/v2/stable/models/oligos_paginated_list.py,sha256=sR7Fy-vHxpQBWc_fpzT7gGthiYuSu3YG4L6nIzQQo4A,4748
3869
3875
  benchling_api_client/v2/stable/models/oligos_unarchive.py,sha256=diA8MPY841xJbComzokKzSP337ZtIyT1M9y54p30jVk,1682
3870
- benchling_api_client/v2/stable/models/optimize_codons.py,sha256=BtjCdJ4S7Hq5plFAt4ia2OHlnDqqI6kBarj67Xa53m8,13799
3876
+ benchling_api_client/v2/stable/models/optimize_codons.py,sha256=enU8PRRs3BBcYfNL4D2aTJFG0wrcAFCY9KYCvd1vduk,17485
3871
3877
  benchling_api_client/v2/stable/models/optimize_codons_gc_content.py,sha256=6s-JZxxyOoK0f5j3xnYrg7HgU9TXxq8SxVI4LqBB6Bw,728
3878
+ benchling_api_client/v2/stable/models/optimize_codons_gc_content_range.py,sha256=D5TYA5GoKlheLuQcq5-zK9MrLQgACRLIPrwgs1sgc7g,2743
3872
3879
  benchling_api_client/v2/stable/models/optimize_codons_hairpin_parameters.py,sha256=6Y_5LWCPQab8fPyDxm49Ro3VIZO0ZZIImQj8yjlF2p8,2676
3880
+ benchling_api_client/v2/stable/models/optimize_codons_method.py,sha256=pXMu1F1YE29jtglzlevq38O7q87ZuHwo7U2rF9J0UGs,723
3873
3881
  benchling_api_client/v2/stable/models/organization.py,sha256=tdaZQNFpa6o62YY27Wq7e0G972DNXtgt-FmxeYKlxrM,4078
3874
3882
  benchling_api_client/v2/stable/models/organization_summary.py,sha256=8SF-KQ6jZh5U1WRTfDCK4SxTX9frtcDk-H4va7Mn6iQ,4123
3875
3883
  benchling_api_client/v2/stable/models/organizations_paginated_list.py,sha256=iCqz9Syy7jWjUiDZ95DL_14SL53fw_Wqoia3HbNziCU,4443
@@ -3905,7 +3913,7 @@ benchling_api_client/v2/stable/models/projects_archive.py,sha256=hxN8tPc-hgwr6x-
3905
3913
  benchling_api_client/v2/stable/models/projects_archive_reason.py,sha256=0qERDCMGpcDbD-rD8sN2gAd9I-y2HZkPnasW4mDPDQo,726
3906
3914
  benchling_api_client/v2/stable/models/projects_paginated_list.py,sha256=C-9i40BxT0zKTb0jgGueAB2wCL9VmeVZxIO06-swNwY,4167
3907
3915
  benchling_api_client/v2/stable/models/projects_unarchive.py,sha256=R61AsX4TE62BSY6PacV3UNw2Hx-s7giJXhxmywCqRg0,1754
3908
- benchling_api_client/v2/stable/models/reduced_pattern.py,sha256=4JPUe_LEPnJuWooSltEz8M_iE0NvvfxwDU02uM4_vZ4,3211
3916
+ benchling_api_client/v2/stable/models/reduced_pattern.py,sha256=kqOHvb-wyjv8lHgFT-wjHIOhelLz-95Bq6OyJIGUtu0,3546
3909
3917
  benchling_api_client/v2/stable/models/register_entities.py,sha256=dncNlk4wLj-trHWgLnz5jdz5WCJrdLqXYG_U5fHBALA,3652
3910
3918
  benchling_api_client/v2/stable/models/registered_entities_list.py,sha256=HMkMwmY0Bvjxh_nce2xOltdn9b0p4MnhaYJ1lPy8Jxk,13219
3911
3919
  benchling_api_client/v2/stable/models/registration_origin.py,sha256=pIqNe11YL5MvFQ4ZDuWYP8eSn9WCkF4WKjkl3dlfJaw,4358
@@ -4225,7 +4233,7 @@ benchling_api_client/v2/stable/models/worksheet_review_changes_review_record.py,
4225
4233
  benchling_api_client/v2/stable/models/worksheet_review_changes_review_record_status.py,sha256=9VKJkUCQCFCdkJnV8-JLRQObhO0cTJf2ZeZnBIEyPFA,1093
4226
4234
  benchling_api_client/v2/stable/models/worksheet_updated_review_snapshot_beta_event.py,sha256=omW47Bd5ghtsrw7DNYNsnMX_k7xw7JyJOJzw4FWn0oA,12046
4227
4235
  benchling_api_client/v2/stable/models/worksheet_updated_review_snapshot_beta_event_event_type.py,sha256=sjbdp-hm8WO8sTocFgmYd_9zt6PpJdZz5tgws0W2cEg,898
4228
- benchling_api_client/v2/stable/openapi.yaml,sha256=fmxjXzbKzY4_6rbly8GcAZkd0k7qmr4A3hxpXHHD0uQ,1138849
4236
+ benchling_api_client/v2/stable/openapi.yaml,sha256=xrShAfO_ezk3HxFh5IhAD9J7gA2N5SmBj9dL0nndChg,1141787
4229
4237
  benchling_api_client/v2/stable/types.py,sha256=nCpxtn44qMDpuS_jcdbjhJlZFvRrXEUEVEDN471GrH8,244
4230
4238
  benchling_api_client/v2/types.py,sha256=SkWwIlK-UbP10AeiC1VeIQ_1HwALN65zpQyXPc0qDFs,1169
4231
4239
  benchling_api_client/webhooks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -4539,7 +4547,7 @@ benchling_api_client/webhooks/v0/stable/models/workflow_task_updated_status_webh
4539
4547
  benchling_api_client/webhooks/v0/stable/openapi.yaml,sha256=Gvlve51cLq7Ws8ll_8Nx-6SGXuYEb8TWCoWzfg_YGnA,39400
4540
4548
  benchling_api_client/webhooks/v0/stable/types.py,sha256=nCpxtn44qMDpuS_jcdbjhJlZFvRrXEUEVEDN471GrH8,244
4541
4549
  benchling_api_client/webhooks/v0/types.py,sha256=SkWwIlK-UbP10AeiC1VeIQ_1HwALN65zpQyXPc0qDFs,1169
4542
- benchling_api_client-2.0.417.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
4543
- benchling_api_client-2.0.417.dist-info/METADATA,sha256=W4XAHUE6_Z2uSF0zb-iDM69s8rEdBDy86BJfli8Y3aw,1253
4544
- benchling_api_client-2.0.417.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
4545
- benchling_api_client-2.0.417.dist-info/RECORD,,
4550
+ benchling_api_client-2.0.418.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
4551
+ benchling_api_client-2.0.418.dist-info/METADATA,sha256=bOD2na8xmJHM4Rdi-vUCmroiIoOOxzRrpnK4chyXM40,1253
4552
+ benchling_api_client-2.0.418.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
4553
+ benchling_api_client-2.0.418.dist-info/RECORD,,