OLD | NEW |
1 // This is a generated file (see the discoveryapis_generator project). | 1 // This is a generated file (see the discoveryapis_generator project). |
2 | 2 |
3 library googleapis.genomics.v1; | 3 library googleapis.genomics.v1; |
4 | 4 |
5 import 'dart:core' as core; | 5 import 'dart:core' as core; |
6 import 'dart:async' as async; | 6 import 'dart:async' as async; |
7 import 'dart:convert' as convert; | 7 import 'dart:convert' as convert; |
8 | 8 |
9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; | 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; |
10 import 'package:http/http.dart' as http; | 10 import 'package:http/http.dart' as http; |
(...skipping 1389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1400 uploadMedia: _uploadMedia, | 1400 uploadMedia: _uploadMedia, |
1401 downloadOptions: _downloadOptions); | 1401 downloadOptions: _downloadOptions); |
1402 return _response.then((data) => new Operation.fromJson(data)); | 1402 return _response.then((data) => new Operation.fromJson(data)); |
1403 } | 1403 } |
1404 | 1404 |
1405 /** | 1405 /** |
1406 * Lists operations that match the specified filter in the request. | 1406 * Lists operations that match the specified filter in the request. |
1407 * | 1407 * |
1408 * Request parameters: | 1408 * Request parameters: |
1409 * | 1409 * |
1410 * [name] - The name of the operation collection. | 1410 * [name] - The name of the operation's parent resource. |
1411 * Value must have pattern "^operations$". | 1411 * Value must have pattern "^operations$". |
1412 * | 1412 * |
1413 * [filter] - A string for filtering Operations. | 1413 * [filter] - A string for filtering Operations. |
1414 * The following filter fields are supported: | 1414 * The following filter fields are supported: |
1415 * | 1415 * |
1416 * * projectId: Required. Corresponds to | 1416 * * projectId: Required. Corresponds to |
1417 * OperationMetadata.projectId. | 1417 * OperationMetadata.projectId. |
1418 * * createTime: The time this job was created, in seconds from the | 1418 * * createTime: The time this job was created, in seconds from the |
1419 * [epoch](http://en.wikipedia.org/wiki/Unix_time). Can use `>=` and/or `<=` | 1419 * [epoch](http://en.wikipedia.org/wiki/Unix_time). Can use `>=` and/or `<=` |
1420 * operators. | 1420 * operators. |
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1819 * base in the reference sequence. Coverage buckets are available at several | 1819 * base in the reference sequence. Coverage buckets are available at several |
1820 * precomputed bucket widths, enabling retrieval of various coverage 'zoom | 1820 * precomputed bucket widths, enabling retrieval of various coverage 'zoom |
1821 * levels'. The caller must have READ permissions for the target read group | 1821 * levels'. The caller must have READ permissions for the target read group |
1822 * set. | 1822 * set. |
1823 * | 1823 * |
1824 * Request parameters: | 1824 * Request parameters: |
1825 * | 1825 * |
1826 * [readGroupSetId] - Required. The ID of the read group set over which | 1826 * [readGroupSetId] - Required. The ID of the read group set over which |
1827 * coverage is requested. | 1827 * coverage is requested. |
1828 * | 1828 * |
| 1829 * [end] - The end position of the range on the reference, 0-based exclusive. |
| 1830 * If |
| 1831 * specified, `referenceName` must also be specified. If unset or 0, defaults |
| 1832 * to the length of the reference. |
| 1833 * |
| 1834 * [pageToken] - The continuation token, which is used to page through large |
| 1835 * result sets. |
| 1836 * To get the next page of results, set this parameter to the value of |
| 1837 * `nextPageToken` from the previous response. |
| 1838 * |
1829 * [pageSize] - The maximum number of results to return in a single page. If | 1839 * [pageSize] - The maximum number of results to return in a single page. If |
1830 * unspecified, | 1840 * unspecified, |
1831 * defaults to 1024. The maximum value is 2048. | 1841 * defaults to 1024. The maximum value is 2048. |
1832 * | 1842 * |
1833 * [start] - The start position of the range on the reference, 0-based | 1843 * [start] - The start position of the range on the reference, 0-based |
1834 * inclusive. If | 1844 * inclusive. If |
1835 * specified, `referenceName` must also be specified. Defaults to 0. | 1845 * specified, `referenceName` must also be specified. Defaults to 0. |
1836 * | 1846 * |
1837 * [targetBucketWidth] - The desired width of each reported coverage bucket in | 1847 * [targetBucketWidth] - The desired width of each reported coverage bucket in |
1838 * base pairs. This | 1848 * base pairs. This |
1839 * will be rounded down to the nearest precomputed bucket width; the value | 1849 * will be rounded down to the nearest precomputed bucket width; the value |
1840 * of which is returned as `bucketWidth` in the response. Defaults | 1850 * of which is returned as `bucketWidth` in the response. Defaults |
1841 * to infinity (each bucket spans an entire reference sequence) or the length | 1851 * to infinity (each bucket spans an entire reference sequence) or the length |
1842 * of the target range, if specified. The smallest precomputed | 1852 * of the target range, if specified. The smallest precomputed |
1843 * `bucketWidth` is currently 2048 base pairs; this is subject to | 1853 * `bucketWidth` is currently 2048 base pairs; this is subject to |
1844 * change. | 1854 * change. |
1845 * | 1855 * |
1846 * [referenceName] - The name of the reference to query, within the reference | 1856 * [referenceName] - The name of the reference to query, within the reference |
1847 * set associated | 1857 * set associated |
1848 * with this query. Optional. | 1858 * with this query. Optional. |
1849 * | 1859 * |
1850 * [end] - The end position of the range on the reference, 0-based exclusive. | |
1851 * If | |
1852 * specified, `referenceName` must also be specified. If unset or 0, defaults | |
1853 * to the length of the reference. | |
1854 * | |
1855 * [pageToken] - The continuation token, which is used to page through large | |
1856 * result sets. | |
1857 * To get the next page of results, set this parameter to the value of | |
1858 * `nextPageToken` from the previous response. | |
1859 * | |
1860 * Completes with a [ListCoverageBucketsResponse]. | 1860 * Completes with a [ListCoverageBucketsResponse]. |
1861 * | 1861 * |
1862 * Completes with a [commons.ApiRequestError] if the API endpoint returned an | 1862 * Completes with a [commons.ApiRequestError] if the API endpoint returned an |
1863 * error. | 1863 * error. |
1864 * | 1864 * |
1865 * If the used [http.Client] completes with an error when making a REST call, | 1865 * If the used [http.Client] completes with an error when making a REST call, |
1866 * this method will complete with the same error. | 1866 * this method will complete with the same error. |
1867 */ | 1867 */ |
1868 async.Future<ListCoverageBucketsResponse> list(core.String readGroupSetId, {co
re.int pageSize, core.String start, core.String targetBucketWidth, core.String r
eferenceName, core.String end, core.String pageToken}) { | 1868 async.Future<ListCoverageBucketsResponse> list(core.String readGroupSetId, {co
re.String end, core.String pageToken, core.int pageSize, core.String start, core
.String targetBucketWidth, core.String referenceName}) { |
1869 var _url = null; | 1869 var _url = null; |
1870 var _queryParams = new core.Map(); | 1870 var _queryParams = new core.Map(); |
1871 var _uploadMedia = null; | 1871 var _uploadMedia = null; |
1872 var _uploadOptions = null; | 1872 var _uploadOptions = null; |
1873 var _downloadOptions = commons.DownloadOptions.Metadata; | 1873 var _downloadOptions = commons.DownloadOptions.Metadata; |
1874 var _body = null; | 1874 var _body = null; |
1875 | 1875 |
1876 if (readGroupSetId == null) { | 1876 if (readGroupSetId == null) { |
1877 throw new core.ArgumentError("Parameter readGroupSetId is required."); | 1877 throw new core.ArgumentError("Parameter readGroupSetId is required."); |
1878 } | 1878 } |
| 1879 if (end != null) { |
| 1880 _queryParams["end"] = [end]; |
| 1881 } |
| 1882 if (pageToken != null) { |
| 1883 _queryParams["pageToken"] = [pageToken]; |
| 1884 } |
1879 if (pageSize != null) { | 1885 if (pageSize != null) { |
1880 _queryParams["pageSize"] = ["${pageSize}"]; | 1886 _queryParams["pageSize"] = ["${pageSize}"]; |
1881 } | 1887 } |
1882 if (start != null) { | 1888 if (start != null) { |
1883 _queryParams["start"] = [start]; | 1889 _queryParams["start"] = [start]; |
1884 } | 1890 } |
1885 if (targetBucketWidth != null) { | 1891 if (targetBucketWidth != null) { |
1886 _queryParams["targetBucketWidth"] = [targetBucketWidth]; | 1892 _queryParams["targetBucketWidth"] = [targetBucketWidth]; |
1887 } | 1893 } |
1888 if (referenceName != null) { | 1894 if (referenceName != null) { |
1889 _queryParams["referenceName"] = [referenceName]; | 1895 _queryParams["referenceName"] = [referenceName]; |
1890 } | 1896 } |
1891 if (end != null) { | |
1892 _queryParams["end"] = [end]; | |
1893 } | |
1894 if (pageToken != null) { | |
1895 _queryParams["pageToken"] = [pageToken]; | |
1896 } | |
1897 | 1897 |
1898 _url = 'v1/readgroupsets/' + commons.Escaper.ecapeVariable('$readGroupSetId'
) + '/coveragebuckets'; | 1898 _url = 'v1/readgroupsets/' + commons.Escaper.ecapeVariable('$readGroupSetId'
) + '/coveragebuckets'; |
1899 | 1899 |
1900 var _response = _requester.request(_url, | 1900 var _response = _requester.request(_url, |
1901 "GET", | 1901 "GET", |
1902 body: _body, | 1902 body: _body, |
1903 queryParams: _queryParams, | 1903 queryParams: _queryParams, |
1904 uploadOptions: _uploadOptions, | 1904 uploadOptions: _uploadOptions, |
1905 uploadMedia: _uploadMedia, | 1905 uploadMedia: _uploadMedia, |
1906 downloadOptions: _downloadOptions); | 1906 downloadOptions: _downloadOptions); |
(...skipping 1200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3107 transcript = new Transcript.fromJson(_json["transcript"]); | 3107 transcript = new Transcript.fromJson(_json["transcript"]); |
3108 } | 3108 } |
3109 if (_json.containsKey("type")) { | 3109 if (_json.containsKey("type")) { |
3110 type = _json["type"]; | 3110 type = _json["type"]; |
3111 } | 3111 } |
3112 if (_json.containsKey("variant")) { | 3112 if (_json.containsKey("variant")) { |
3113 variant = new VariantAnnotation.fromJson(_json["variant"]); | 3113 variant = new VariantAnnotation.fromJson(_json["variant"]); |
3114 } | 3114 } |
3115 } | 3115 } |
3116 | 3116 |
3117 core.Map toJson() { | 3117 core.Map<core.String, core.Object> toJson() { |
3118 var _json = new core.Map(); | 3118 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3119 if (annotationSetId != null) { | 3119 if (annotationSetId != null) { |
3120 _json["annotationSetId"] = annotationSetId; | 3120 _json["annotationSetId"] = annotationSetId; |
3121 } | 3121 } |
3122 if (end != null) { | 3122 if (end != null) { |
3123 _json["end"] = end; | 3123 _json["end"] = end; |
3124 } | 3124 } |
3125 if (id != null) { | 3125 if (id != null) { |
3126 _json["id"] = id; | 3126 _json["id"] = id; |
3127 } | 3127 } |
3128 if (info != null) { | 3128 if (info != null) { |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3227 referenceSetId = _json["referenceSetId"]; | 3227 referenceSetId = _json["referenceSetId"]; |
3228 } | 3228 } |
3229 if (_json.containsKey("sourceUri")) { | 3229 if (_json.containsKey("sourceUri")) { |
3230 sourceUri = _json["sourceUri"]; | 3230 sourceUri = _json["sourceUri"]; |
3231 } | 3231 } |
3232 if (_json.containsKey("type")) { | 3232 if (_json.containsKey("type")) { |
3233 type = _json["type"]; | 3233 type = _json["type"]; |
3234 } | 3234 } |
3235 } | 3235 } |
3236 | 3236 |
3237 core.Map toJson() { | 3237 core.Map<core.String, core.Object> toJson() { |
3238 var _json = new core.Map(); | 3238 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3239 if (datasetId != null) { | 3239 if (datasetId != null) { |
3240 _json["datasetId"] = datasetId; | 3240 _json["datasetId"] = datasetId; |
3241 } | 3241 } |
3242 if (id != null) { | 3242 if (id != null) { |
3243 _json["id"] = id; | 3243 _json["id"] = id; |
3244 } | 3244 } |
3245 if (info != null) { | 3245 if (info != null) { |
3246 _json["info"] = info; | 3246 _json["info"] = info; |
3247 } | 3247 } |
3248 if (name != null) { | 3248 if (name != null) { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3282 | 3282 |
3283 BatchCreateAnnotationsRequest.fromJson(core.Map _json) { | 3283 BatchCreateAnnotationsRequest.fromJson(core.Map _json) { |
3284 if (_json.containsKey("annotations")) { | 3284 if (_json.containsKey("annotations")) { |
3285 annotations = _json["annotations"].map((value) => new Annotation.fromJson(
value)).toList(); | 3285 annotations = _json["annotations"].map((value) => new Annotation.fromJson(
value)).toList(); |
3286 } | 3286 } |
3287 if (_json.containsKey("requestId")) { | 3287 if (_json.containsKey("requestId")) { |
3288 requestId = _json["requestId"]; | 3288 requestId = _json["requestId"]; |
3289 } | 3289 } |
3290 } | 3290 } |
3291 | 3291 |
3292 core.Map toJson() { | 3292 core.Map<core.String, core.Object> toJson() { |
3293 var _json = new core.Map(); | 3293 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3294 if (annotations != null) { | 3294 if (annotations != null) { |
3295 _json["annotations"] = annotations.map((value) => (value).toJson()).toList
(); | 3295 _json["annotations"] = annotations.map((value) => (value).toJson()).toList
(); |
3296 } | 3296 } |
3297 if (requestId != null) { | 3297 if (requestId != null) { |
3298 _json["requestId"] = requestId; | 3298 _json["requestId"] = requestId; |
3299 } | 3299 } |
3300 return _json; | 3300 return _json; |
3301 } | 3301 } |
3302 } | 3302 } |
3303 | 3303 |
3304 class BatchCreateAnnotationsResponse { | 3304 class BatchCreateAnnotationsResponse { |
3305 /** | 3305 /** |
3306 * The resulting per-annotation entries, ordered consistently with the | 3306 * The resulting per-annotation entries, ordered consistently with the |
3307 * original request. | 3307 * original request. |
3308 */ | 3308 */ |
3309 core.List<Entry> entries; | 3309 core.List<Entry> entries; |
3310 | 3310 |
3311 BatchCreateAnnotationsResponse(); | 3311 BatchCreateAnnotationsResponse(); |
3312 | 3312 |
3313 BatchCreateAnnotationsResponse.fromJson(core.Map _json) { | 3313 BatchCreateAnnotationsResponse.fromJson(core.Map _json) { |
3314 if (_json.containsKey("entries")) { | 3314 if (_json.containsKey("entries")) { |
3315 entries = _json["entries"].map((value) => new Entry.fromJson(value)).toLis
t(); | 3315 entries = _json["entries"].map((value) => new Entry.fromJson(value)).toLis
t(); |
3316 } | 3316 } |
3317 } | 3317 } |
3318 | 3318 |
3319 core.Map toJson() { | 3319 core.Map<core.String, core.Object> toJson() { |
3320 var _json = new core.Map(); | 3320 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3321 if (entries != null) { | 3321 if (entries != null) { |
3322 _json["entries"] = entries.map((value) => (value).toJson()).toList(); | 3322 _json["entries"] = entries.map((value) => (value).toJson()).toList(); |
3323 } | 3323 } |
3324 return _json; | 3324 return _json; |
3325 } | 3325 } |
3326 } | 3326 } |
3327 | 3327 |
3328 /** Associates `members` with a `role`. */ | 3328 /** Associates `members` with a `role`. */ |
3329 class Binding { | 3329 class Binding { |
3330 /** | 3330 /** |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3363 | 3363 |
3364 Binding.fromJson(core.Map _json) { | 3364 Binding.fromJson(core.Map _json) { |
3365 if (_json.containsKey("members")) { | 3365 if (_json.containsKey("members")) { |
3366 members = _json["members"]; | 3366 members = _json["members"]; |
3367 } | 3367 } |
3368 if (_json.containsKey("role")) { | 3368 if (_json.containsKey("role")) { |
3369 role = _json["role"]; | 3369 role = _json["role"]; |
3370 } | 3370 } |
3371 } | 3371 } |
3372 | 3372 |
3373 core.Map toJson() { | 3373 core.Map<core.String, core.Object> toJson() { |
3374 var _json = new core.Map(); | 3374 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3375 if (members != null) { | 3375 if (members != null) { |
3376 _json["members"] = members; | 3376 _json["members"] = members; |
3377 } | 3377 } |
3378 if (role != null) { | 3378 if (role != null) { |
3379 _json["role"] = role; | 3379 _json["role"] = role; |
3380 } | 3380 } |
3381 return _json; | 3381 return _json; |
3382 } | 3382 } |
3383 } | 3383 } |
3384 | 3384 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3431 name = _json["name"]; | 3431 name = _json["name"]; |
3432 } | 3432 } |
3433 if (_json.containsKey("sampleId")) { | 3433 if (_json.containsKey("sampleId")) { |
3434 sampleId = _json["sampleId"]; | 3434 sampleId = _json["sampleId"]; |
3435 } | 3435 } |
3436 if (_json.containsKey("variantSetIds")) { | 3436 if (_json.containsKey("variantSetIds")) { |
3437 variantSetIds = _json["variantSetIds"]; | 3437 variantSetIds = _json["variantSetIds"]; |
3438 } | 3438 } |
3439 } | 3439 } |
3440 | 3440 |
3441 core.Map toJson() { | 3441 core.Map<core.String, core.Object> toJson() { |
3442 var _json = new core.Map(); | 3442 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3443 if (created != null) { | 3443 if (created != null) { |
3444 _json["created"] = created; | 3444 _json["created"] = created; |
3445 } | 3445 } |
3446 if (id != null) { | 3446 if (id != null) { |
3447 _json["id"] = id; | 3447 _json["id"] = id; |
3448 } | 3448 } |
3449 if (info != null) { | 3449 if (info != null) { |
3450 _json["info"] = info; | 3450 _json["info"] = info; |
3451 } | 3451 } |
3452 if (name != null) { | 3452 if (name != null) { |
(...skipping 10 matching lines...) Expand all Loading... |
3463 } | 3463 } |
3464 | 3464 |
3465 /** The request message for Operations.CancelOperation. */ | 3465 /** The request message for Operations.CancelOperation. */ |
3466 class CancelOperationRequest { | 3466 class CancelOperationRequest { |
3467 | 3467 |
3468 CancelOperationRequest(); | 3468 CancelOperationRequest(); |
3469 | 3469 |
3470 CancelOperationRequest.fromJson(core.Map _json) { | 3470 CancelOperationRequest.fromJson(core.Map _json) { |
3471 } | 3471 } |
3472 | 3472 |
3473 core.Map toJson() { | 3473 core.Map<core.String, core.Object> toJson() { |
3474 var _json = new core.Map(); | 3474 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3475 return _json; | 3475 return _json; |
3476 } | 3476 } |
3477 } | 3477 } |
3478 | 3478 |
3479 /** A single CIGAR operation. */ | 3479 /** A single CIGAR operation. */ |
3480 class CigarUnit { | 3480 class CigarUnit { |
3481 /** | 3481 /** |
3482 * | 3482 * |
3483 * Possible string values are: | 3483 * Possible string values are: |
3484 * - "OPERATION_UNSPECIFIED" | 3484 * - "OPERATION_UNSPECIFIED" |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3545 operation = _json["operation"]; | 3545 operation = _json["operation"]; |
3546 } | 3546 } |
3547 if (_json.containsKey("operationLength")) { | 3547 if (_json.containsKey("operationLength")) { |
3548 operationLength = _json["operationLength"]; | 3548 operationLength = _json["operationLength"]; |
3549 } | 3549 } |
3550 if (_json.containsKey("referenceSequence")) { | 3550 if (_json.containsKey("referenceSequence")) { |
3551 referenceSequence = _json["referenceSequence"]; | 3551 referenceSequence = _json["referenceSequence"]; |
3552 } | 3552 } |
3553 } | 3553 } |
3554 | 3554 |
3555 core.Map toJson() { | 3555 core.Map<core.String, core.Object> toJson() { |
3556 var _json = new core.Map(); | 3556 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3557 if (operation != null) { | 3557 if (operation != null) { |
3558 _json["operation"] = operation; | 3558 _json["operation"] = operation; |
3559 } | 3559 } |
3560 if (operationLength != null) { | 3560 if (operationLength != null) { |
3561 _json["operationLength"] = operationLength; | 3561 _json["operationLength"] = operationLength; |
3562 } | 3562 } |
3563 if (referenceSequence != null) { | 3563 if (referenceSequence != null) { |
3564 _json["referenceSequence"] = referenceSequence; | 3564 _json["referenceSequence"] = referenceSequence; |
3565 } | 3565 } |
3566 return _json; | 3566 return _json; |
(...skipping 26 matching lines...) Expand all Loading... |
3593 externalIds = _json["externalIds"].map((value) => new ExternalId.fromJson(
value)).toList(); | 3593 externalIds = _json["externalIds"].map((value) => new ExternalId.fromJson(
value)).toList(); |
3594 } | 3594 } |
3595 if (_json.containsKey("names")) { | 3595 if (_json.containsKey("names")) { |
3596 names = _json["names"]; | 3596 names = _json["names"]; |
3597 } | 3597 } |
3598 if (_json.containsKey("omimId")) { | 3598 if (_json.containsKey("omimId")) { |
3599 omimId = _json["omimId"]; | 3599 omimId = _json["omimId"]; |
3600 } | 3600 } |
3601 } | 3601 } |
3602 | 3602 |
3603 core.Map toJson() { | 3603 core.Map<core.String, core.Object> toJson() { |
3604 var _json = new core.Map(); | 3604 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3605 if (conceptId != null) { | 3605 if (conceptId != null) { |
3606 _json["conceptId"] = conceptId; | 3606 _json["conceptId"] = conceptId; |
3607 } | 3607 } |
3608 if (externalIds != null) { | 3608 if (externalIds != null) { |
3609 _json["externalIds"] = externalIds.map((value) => (value).toJson()).toList
(); | 3609 _json["externalIds"] = externalIds.map((value) => (value).toJson()).toList
(); |
3610 } | 3610 } |
3611 if (names != null) { | 3611 if (names != null) { |
3612 _json["names"] = names; | 3612 _json["names"] = names; |
3613 } | 3613 } |
3614 if (omimId != null) { | 3614 if (omimId != null) { |
(...skipping 21 matching lines...) Expand all Loading... |
3636 | 3636 |
3637 CodingSequence.fromJson(core.Map _json) { | 3637 CodingSequence.fromJson(core.Map _json) { |
3638 if (_json.containsKey("end")) { | 3638 if (_json.containsKey("end")) { |
3639 end = _json["end"]; | 3639 end = _json["end"]; |
3640 } | 3640 } |
3641 if (_json.containsKey("start")) { | 3641 if (_json.containsKey("start")) { |
3642 start = _json["start"]; | 3642 start = _json["start"]; |
3643 } | 3643 } |
3644 } | 3644 } |
3645 | 3645 |
3646 core.Map toJson() { | 3646 core.Map<core.String, core.Object> toJson() { |
3647 var _json = new core.Map(); | 3647 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3648 if (end != null) { | 3648 if (end != null) { |
3649 _json["end"] = end; | 3649 _json["end"] = end; |
3650 } | 3650 } |
3651 if (start != null) { | 3651 if (start != null) { |
3652 _json["start"] = start; | 3652 _json["start"] = start; |
3653 } | 3653 } |
3654 return _json; | 3654 return _json; |
3655 } | 3655 } |
3656 } | 3656 } |
3657 | 3657 |
(...skipping 21 matching lines...) Expand all Loading... |
3679 instanceName = _json["instanceName"]; | 3679 instanceName = _json["instanceName"]; |
3680 } | 3680 } |
3681 if (_json.containsKey("machineType")) { | 3681 if (_json.containsKey("machineType")) { |
3682 machineType = _json["machineType"]; | 3682 machineType = _json["machineType"]; |
3683 } | 3683 } |
3684 if (_json.containsKey("zone")) { | 3684 if (_json.containsKey("zone")) { |
3685 zone = _json["zone"]; | 3685 zone = _json["zone"]; |
3686 } | 3686 } |
3687 } | 3687 } |
3688 | 3688 |
3689 core.Map toJson() { | 3689 core.Map<core.String, core.Object> toJson() { |
3690 var _json = new core.Map(); | 3690 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3691 if (diskNames != null) { | 3691 if (diskNames != null) { |
3692 _json["diskNames"] = diskNames; | 3692 _json["diskNames"] = diskNames; |
3693 } | 3693 } |
3694 if (instanceName != null) { | 3694 if (instanceName != null) { |
3695 _json["instanceName"] = instanceName; | 3695 _json["instanceName"] = instanceName; |
3696 } | 3696 } |
3697 if (machineType != null) { | 3697 if (machineType != null) { |
3698 _json["machineType"] = machineType; | 3698 _json["machineType"] = machineType; |
3699 } | 3699 } |
3700 if (zone != null) { | 3700 if (zone != null) { |
(...skipping 20 matching lines...) Expand all Loading... |
3721 | 3721 |
3722 CoverageBucket.fromJson(core.Map _json) { | 3722 CoverageBucket.fromJson(core.Map _json) { |
3723 if (_json.containsKey("meanCoverage")) { | 3723 if (_json.containsKey("meanCoverage")) { |
3724 meanCoverage = _json["meanCoverage"]; | 3724 meanCoverage = _json["meanCoverage"]; |
3725 } | 3725 } |
3726 if (_json.containsKey("range")) { | 3726 if (_json.containsKey("range")) { |
3727 range = new Range.fromJson(_json["range"]); | 3727 range = new Range.fromJson(_json["range"]); |
3728 } | 3728 } |
3729 } | 3729 } |
3730 | 3730 |
3731 core.Map toJson() { | 3731 core.Map<core.String, core.Object> toJson() { |
3732 var _json = new core.Map(); | 3732 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3733 if (meanCoverage != null) { | 3733 if (meanCoverage != null) { |
3734 _json["meanCoverage"] = meanCoverage; | 3734 _json["meanCoverage"] = meanCoverage; |
3735 } | 3735 } |
3736 if (range != null) { | 3736 if (range != null) { |
3737 _json["range"] = (range).toJson(); | 3737 _json["range"] = (range).toJson(); |
3738 } | 3738 } |
3739 return _json; | 3739 return _json; |
3740 } | 3740 } |
3741 } | 3741 } |
3742 | 3742 |
(...skipping 23 matching lines...) Expand all Loading... |
3766 id = _json["id"]; | 3766 id = _json["id"]; |
3767 } | 3767 } |
3768 if (_json.containsKey("name")) { | 3768 if (_json.containsKey("name")) { |
3769 name = _json["name"]; | 3769 name = _json["name"]; |
3770 } | 3770 } |
3771 if (_json.containsKey("projectId")) { | 3771 if (_json.containsKey("projectId")) { |
3772 projectId = _json["projectId"]; | 3772 projectId = _json["projectId"]; |
3773 } | 3773 } |
3774 } | 3774 } |
3775 | 3775 |
3776 core.Map toJson() { | 3776 core.Map<core.String, core.Object> toJson() { |
3777 var _json = new core.Map(); | 3777 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3778 if (createTime != null) { | 3778 if (createTime != null) { |
3779 _json["createTime"] = createTime; | 3779 _json["createTime"] = createTime; |
3780 } | 3780 } |
3781 if (id != null) { | 3781 if (id != null) { |
3782 _json["id"] = id; | 3782 _json["id"] = id; |
3783 } | 3783 } |
3784 if (name != null) { | 3784 if (name != null) { |
3785 _json["name"] = name; | 3785 _json["name"] = name; |
3786 } | 3786 } |
3787 if (projectId != null) { | 3787 if (projectId != null) { |
(...skipping 14 matching lines...) Expand all Loading... |
3802 * | 3802 * |
3803 * The JSON representation for `Empty` is empty JSON object `{}`. | 3803 * The JSON representation for `Empty` is empty JSON object `{}`. |
3804 */ | 3804 */ |
3805 class Empty { | 3805 class Empty { |
3806 | 3806 |
3807 Empty(); | 3807 Empty(); |
3808 | 3808 |
3809 Empty.fromJson(core.Map _json) { | 3809 Empty.fromJson(core.Map _json) { |
3810 } | 3810 } |
3811 | 3811 |
3812 core.Map toJson() { | 3812 core.Map<core.String, core.Object> toJson() { |
3813 var _json = new core.Map(); | 3813 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3814 return _json; | 3814 return _json; |
3815 } | 3815 } |
3816 } | 3816 } |
3817 | 3817 |
3818 class Entry { | 3818 class Entry { |
3819 /** The created annotation, if creation was successful. */ | 3819 /** The created annotation, if creation was successful. */ |
3820 Annotation annotation; | 3820 Annotation annotation; |
3821 /** The creation status. */ | 3821 /** The creation status. */ |
3822 Status status; | 3822 Status status; |
3823 | 3823 |
3824 Entry(); | 3824 Entry(); |
3825 | 3825 |
3826 Entry.fromJson(core.Map _json) { | 3826 Entry.fromJson(core.Map _json) { |
3827 if (_json.containsKey("annotation")) { | 3827 if (_json.containsKey("annotation")) { |
3828 annotation = new Annotation.fromJson(_json["annotation"]); | 3828 annotation = new Annotation.fromJson(_json["annotation"]); |
3829 } | 3829 } |
3830 if (_json.containsKey("status")) { | 3830 if (_json.containsKey("status")) { |
3831 status = new Status.fromJson(_json["status"]); | 3831 status = new Status.fromJson(_json["status"]); |
3832 } | 3832 } |
3833 } | 3833 } |
3834 | 3834 |
3835 core.Map toJson() { | 3835 core.Map<core.String, core.Object> toJson() { |
3836 var _json = new core.Map(); | 3836 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3837 if (annotation != null) { | 3837 if (annotation != null) { |
3838 _json["annotation"] = (annotation).toJson(); | 3838 _json["annotation"] = (annotation).toJson(); |
3839 } | 3839 } |
3840 if (status != null) { | 3840 if (status != null) { |
3841 _json["status"] = (status).toJson(); | 3841 _json["status"] = (status).toJson(); |
3842 } | 3842 } |
3843 return _json; | 3843 return _json; |
3844 } | 3844 } |
3845 } | 3845 } |
3846 | 3846 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3881 end = _json["end"]; | 3881 end = _json["end"]; |
3882 } | 3882 } |
3883 if (_json.containsKey("frame")) { | 3883 if (_json.containsKey("frame")) { |
3884 frame = _json["frame"]; | 3884 frame = _json["frame"]; |
3885 } | 3885 } |
3886 if (_json.containsKey("start")) { | 3886 if (_json.containsKey("start")) { |
3887 start = _json["start"]; | 3887 start = _json["start"]; |
3888 } | 3888 } |
3889 } | 3889 } |
3890 | 3890 |
3891 core.Map toJson() { | 3891 core.Map<core.String, core.Object> toJson() { |
3892 var _json = new core.Map(); | 3892 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3893 if (end != null) { | 3893 if (end != null) { |
3894 _json["end"] = end; | 3894 _json["end"] = end; |
3895 } | 3895 } |
3896 if (frame != null) { | 3896 if (frame != null) { |
3897 _json["frame"] = frame; | 3897 _json["frame"] = frame; |
3898 } | 3898 } |
3899 if (start != null) { | 3899 if (start != null) { |
3900 _json["start"] = start; | 3900 _json["start"] = start; |
3901 } | 3901 } |
3902 return _json; | 3902 return _json; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3935 libraryId = _json["libraryId"]; | 3935 libraryId = _json["libraryId"]; |
3936 } | 3936 } |
3937 if (_json.containsKey("platformUnit")) { | 3937 if (_json.containsKey("platformUnit")) { |
3938 platformUnit = _json["platformUnit"]; | 3938 platformUnit = _json["platformUnit"]; |
3939 } | 3939 } |
3940 if (_json.containsKey("sequencingCenter")) { | 3940 if (_json.containsKey("sequencingCenter")) { |
3941 sequencingCenter = _json["sequencingCenter"]; | 3941 sequencingCenter = _json["sequencingCenter"]; |
3942 } | 3942 } |
3943 } | 3943 } |
3944 | 3944 |
3945 core.Map toJson() { | 3945 core.Map<core.String, core.Object> toJson() { |
3946 var _json = new core.Map(); | 3946 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3947 if (instrumentModel != null) { | 3947 if (instrumentModel != null) { |
3948 _json["instrumentModel"] = instrumentModel; | 3948 _json["instrumentModel"] = instrumentModel; |
3949 } | 3949 } |
3950 if (libraryId != null) { | 3950 if (libraryId != null) { |
3951 _json["libraryId"] = libraryId; | 3951 _json["libraryId"] = libraryId; |
3952 } | 3952 } |
3953 if (platformUnit != null) { | 3953 if (platformUnit != null) { |
3954 _json["platformUnit"] = platformUnit; | 3954 _json["platformUnit"] = platformUnit; |
3955 } | 3955 } |
3956 if (sequencingCenter != null) { | 3956 if (sequencingCenter != null) { |
(...skipping 30 matching lines...) Expand all Loading... |
3987 exportUri = _json["exportUri"]; | 3987 exportUri = _json["exportUri"]; |
3988 } | 3988 } |
3989 if (_json.containsKey("projectId")) { | 3989 if (_json.containsKey("projectId")) { |
3990 projectId = _json["projectId"]; | 3990 projectId = _json["projectId"]; |
3991 } | 3991 } |
3992 if (_json.containsKey("referenceNames")) { | 3992 if (_json.containsKey("referenceNames")) { |
3993 referenceNames = _json["referenceNames"]; | 3993 referenceNames = _json["referenceNames"]; |
3994 } | 3994 } |
3995 } | 3995 } |
3996 | 3996 |
3997 core.Map toJson() { | 3997 core.Map<core.String, core.Object> toJson() { |
3998 var _json = new core.Map(); | 3998 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
3999 if (exportUri != null) { | 3999 if (exportUri != null) { |
4000 _json["exportUri"] = exportUri; | 4000 _json["exportUri"] = exportUri; |
4001 } | 4001 } |
4002 if (projectId != null) { | 4002 if (projectId != null) { |
4003 _json["projectId"] = projectId; | 4003 _json["projectId"] = projectId; |
4004 } | 4004 } |
4005 if (referenceNames != null) { | 4005 if (referenceNames != null) { |
4006 _json["referenceNames"] = referenceNames; | 4006 _json["referenceNames"] = referenceNames; |
4007 } | 4007 } |
4008 return _json; | 4008 return _json; |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4054 callSetIds = _json["callSetIds"]; | 4054 callSetIds = _json["callSetIds"]; |
4055 } | 4055 } |
4056 if (_json.containsKey("format")) { | 4056 if (_json.containsKey("format")) { |
4057 format = _json["format"]; | 4057 format = _json["format"]; |
4058 } | 4058 } |
4059 if (_json.containsKey("projectId")) { | 4059 if (_json.containsKey("projectId")) { |
4060 projectId = _json["projectId"]; | 4060 projectId = _json["projectId"]; |
4061 } | 4061 } |
4062 } | 4062 } |
4063 | 4063 |
4064 core.Map toJson() { | 4064 core.Map<core.String, core.Object> toJson() { |
4065 var _json = new core.Map(); | 4065 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4066 if (bigqueryDataset != null) { | 4066 if (bigqueryDataset != null) { |
4067 _json["bigqueryDataset"] = bigqueryDataset; | 4067 _json["bigqueryDataset"] = bigqueryDataset; |
4068 } | 4068 } |
4069 if (bigqueryTable != null) { | 4069 if (bigqueryTable != null) { |
4070 _json["bigqueryTable"] = bigqueryTable; | 4070 _json["bigqueryTable"] = bigqueryTable; |
4071 } | 4071 } |
4072 if (callSetIds != null) { | 4072 if (callSetIds != null) { |
4073 _json["callSetIds"] = callSetIds; | 4073 _json["callSetIds"] = callSetIds; |
4074 } | 4074 } |
4075 if (format != null) { | 4075 if (format != null) { |
(...skipping 16 matching lines...) Expand all Loading... |
4092 | 4092 |
4093 ExternalId.fromJson(core.Map _json) { | 4093 ExternalId.fromJson(core.Map _json) { |
4094 if (_json.containsKey("id")) { | 4094 if (_json.containsKey("id")) { |
4095 id = _json["id"]; | 4095 id = _json["id"]; |
4096 } | 4096 } |
4097 if (_json.containsKey("sourceName")) { | 4097 if (_json.containsKey("sourceName")) { |
4098 sourceName = _json["sourceName"]; | 4098 sourceName = _json["sourceName"]; |
4099 } | 4099 } |
4100 } | 4100 } |
4101 | 4101 |
4102 core.Map toJson() { | 4102 core.Map<core.String, core.Object> toJson() { |
4103 var _json = new core.Map(); | 4103 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4104 if (id != null) { | 4104 if (id != null) { |
4105 _json["id"] = id; | 4105 _json["id"] = id; |
4106 } | 4106 } |
4107 if (sourceName != null) { | 4107 if (sourceName != null) { |
4108 _json["sourceName"] = sourceName; | 4108 _json["sourceName"] = sourceName; |
4109 } | 4109 } |
4110 return _json; | 4110 return _json; |
4111 } | 4111 } |
4112 } | 4112 } |
4113 | 4113 |
4114 /** Request message for `GetIamPolicy` method. */ | 4114 /** Request message for `GetIamPolicy` method. */ |
4115 class GetIamPolicyRequest { | 4115 class GetIamPolicyRequest { |
4116 | 4116 |
4117 GetIamPolicyRequest(); | 4117 GetIamPolicyRequest(); |
4118 | 4118 |
4119 GetIamPolicyRequest.fromJson(core.Map _json) { | 4119 GetIamPolicyRequest.fromJson(core.Map _json) { |
4120 } | 4120 } |
4121 | 4121 |
4122 core.Map toJson() { | 4122 core.Map<core.String, core.Object> toJson() { |
4123 var _json = new core.Map(); | 4123 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4124 return _json; | 4124 return _json; |
4125 } | 4125 } |
4126 } | 4126 } |
4127 | 4127 |
4128 /** The read group set import request. */ | 4128 /** The read group set import request. */ |
4129 class ImportReadGroupSetsRequest { | 4129 class ImportReadGroupSetsRequest { |
4130 /** | 4130 /** |
4131 * Required. The ID of the dataset these read group sets will belong to. The | 4131 * Required. The ID of the dataset these read group sets will belong to. The |
4132 * caller must have WRITE permissions to this dataset. | 4132 * caller must have WRITE permissions to this dataset. |
4133 */ | 4133 */ |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4183 partitionStrategy = _json["partitionStrategy"]; | 4183 partitionStrategy = _json["partitionStrategy"]; |
4184 } | 4184 } |
4185 if (_json.containsKey("referenceSetId")) { | 4185 if (_json.containsKey("referenceSetId")) { |
4186 referenceSetId = _json["referenceSetId"]; | 4186 referenceSetId = _json["referenceSetId"]; |
4187 } | 4187 } |
4188 if (_json.containsKey("sourceUris")) { | 4188 if (_json.containsKey("sourceUris")) { |
4189 sourceUris = _json["sourceUris"]; | 4189 sourceUris = _json["sourceUris"]; |
4190 } | 4190 } |
4191 } | 4191 } |
4192 | 4192 |
4193 core.Map toJson() { | 4193 core.Map<core.String, core.Object> toJson() { |
4194 var _json = new core.Map(); | 4194 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4195 if (datasetId != null) { | 4195 if (datasetId != null) { |
4196 _json["datasetId"] = datasetId; | 4196 _json["datasetId"] = datasetId; |
4197 } | 4197 } |
4198 if (partitionStrategy != null) { | 4198 if (partitionStrategy != null) { |
4199 _json["partitionStrategy"] = partitionStrategy; | 4199 _json["partitionStrategy"] = partitionStrategy; |
4200 } | 4200 } |
4201 if (referenceSetId != null) { | 4201 if (referenceSetId != null) { |
4202 _json["referenceSetId"] = referenceSetId; | 4202 _json["referenceSetId"] = referenceSetId; |
4203 } | 4203 } |
4204 if (sourceUris != null) { | 4204 if (sourceUris != null) { |
4205 _json["sourceUris"] = sourceUris; | 4205 _json["sourceUris"] = sourceUris; |
4206 } | 4206 } |
4207 return _json; | 4207 return _json; |
4208 } | 4208 } |
4209 } | 4209 } |
4210 | 4210 |
4211 /** The read group set import response. */ | 4211 /** The read group set import response. */ |
4212 class ImportReadGroupSetsResponse { | 4212 class ImportReadGroupSetsResponse { |
4213 /** IDs of the read group sets that were created. */ | 4213 /** IDs of the read group sets that were created. */ |
4214 core.List<core.String> readGroupSetIds; | 4214 core.List<core.String> readGroupSetIds; |
4215 | 4215 |
4216 ImportReadGroupSetsResponse(); | 4216 ImportReadGroupSetsResponse(); |
4217 | 4217 |
4218 ImportReadGroupSetsResponse.fromJson(core.Map _json) { | 4218 ImportReadGroupSetsResponse.fromJson(core.Map _json) { |
4219 if (_json.containsKey("readGroupSetIds")) { | 4219 if (_json.containsKey("readGroupSetIds")) { |
4220 readGroupSetIds = _json["readGroupSetIds"]; | 4220 readGroupSetIds = _json["readGroupSetIds"]; |
4221 } | 4221 } |
4222 } | 4222 } |
4223 | 4223 |
4224 core.Map toJson() { | 4224 core.Map<core.String, core.Object> toJson() { |
4225 var _json = new core.Map(); | 4225 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4226 if (readGroupSetIds != null) { | 4226 if (readGroupSetIds != null) { |
4227 _json["readGroupSetIds"] = readGroupSetIds; | 4227 _json["readGroupSetIds"] = readGroupSetIds; |
4228 } | 4228 } |
4229 return _json; | 4229 return _json; |
4230 } | 4230 } |
4231 } | 4231 } |
4232 | 4232 |
4233 /** The variant data import request. */ | 4233 /** The variant data import request. */ |
4234 class ImportVariantsRequest { | 4234 class ImportVariantsRequest { |
4235 /** | 4235 /** |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4288 normalizeReferenceNames = _json["normalizeReferenceNames"]; | 4288 normalizeReferenceNames = _json["normalizeReferenceNames"]; |
4289 } | 4289 } |
4290 if (_json.containsKey("sourceUris")) { | 4290 if (_json.containsKey("sourceUris")) { |
4291 sourceUris = _json["sourceUris"]; | 4291 sourceUris = _json["sourceUris"]; |
4292 } | 4292 } |
4293 if (_json.containsKey("variantSetId")) { | 4293 if (_json.containsKey("variantSetId")) { |
4294 variantSetId = _json["variantSetId"]; | 4294 variantSetId = _json["variantSetId"]; |
4295 } | 4295 } |
4296 } | 4296 } |
4297 | 4297 |
4298 core.Map toJson() { | 4298 core.Map<core.String, core.Object> toJson() { |
4299 var _json = new core.Map(); | 4299 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4300 if (format != null) { | 4300 if (format != null) { |
4301 _json["format"] = format; | 4301 _json["format"] = format; |
4302 } | 4302 } |
4303 if (infoMergeConfig != null) { | 4303 if (infoMergeConfig != null) { |
4304 _json["infoMergeConfig"] = infoMergeConfig; | 4304 _json["infoMergeConfig"] = infoMergeConfig; |
4305 } | 4305 } |
4306 if (normalizeReferenceNames != null) { | 4306 if (normalizeReferenceNames != null) { |
4307 _json["normalizeReferenceNames"] = normalizeReferenceNames; | 4307 _json["normalizeReferenceNames"] = normalizeReferenceNames; |
4308 } | 4308 } |
4309 if (sourceUris != null) { | 4309 if (sourceUris != null) { |
(...skipping 12 matching lines...) Expand all Loading... |
4322 core.List<core.String> callSetIds; | 4322 core.List<core.String> callSetIds; |
4323 | 4323 |
4324 ImportVariantsResponse(); | 4324 ImportVariantsResponse(); |
4325 | 4325 |
4326 ImportVariantsResponse.fromJson(core.Map _json) { | 4326 ImportVariantsResponse.fromJson(core.Map _json) { |
4327 if (_json.containsKey("callSetIds")) { | 4327 if (_json.containsKey("callSetIds")) { |
4328 callSetIds = _json["callSetIds"]; | 4328 callSetIds = _json["callSetIds"]; |
4329 } | 4329 } |
4330 } | 4330 } |
4331 | 4331 |
4332 core.Map toJson() { | 4332 core.Map<core.String, core.Object> toJson() { |
4333 var _json = new core.Map(); | 4333 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4334 if (callSetIds != null) { | 4334 if (callSetIds != null) { |
4335 _json["callSetIds"] = callSetIds; | 4335 _json["callSetIds"] = callSetIds; |
4336 } | 4336 } |
4337 return _json; | 4337 return _json; |
4338 } | 4338 } |
4339 } | 4339 } |
4340 | 4340 |
4341 /** | 4341 /** |
4342 * A linear alignment can be represented by one CIGAR string. Describes the | 4342 * A linear alignment can be represented by one CIGAR string. Describes the |
4343 * mapped position and local alignment of the read to the reference. | 4343 * mapped position and local alignment of the read to the reference. |
(...skipping 22 matching lines...) Expand all Loading... |
4366 cigar = _json["cigar"].map((value) => new CigarUnit.fromJson(value)).toLis
t(); | 4366 cigar = _json["cigar"].map((value) => new CigarUnit.fromJson(value)).toLis
t(); |
4367 } | 4367 } |
4368 if (_json.containsKey("mappingQuality")) { | 4368 if (_json.containsKey("mappingQuality")) { |
4369 mappingQuality = _json["mappingQuality"]; | 4369 mappingQuality = _json["mappingQuality"]; |
4370 } | 4370 } |
4371 if (_json.containsKey("position")) { | 4371 if (_json.containsKey("position")) { |
4372 position = new Position.fromJson(_json["position"]); | 4372 position = new Position.fromJson(_json["position"]); |
4373 } | 4373 } |
4374 } | 4374 } |
4375 | 4375 |
4376 core.Map toJson() { | 4376 core.Map<core.String, core.Object> toJson() { |
4377 var _json = new core.Map(); | 4377 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4378 if (cigar != null) { | 4378 if (cigar != null) { |
4379 _json["cigar"] = cigar.map((value) => (value).toJson()).toList(); | 4379 _json["cigar"] = cigar.map((value) => (value).toJson()).toList(); |
4380 } | 4380 } |
4381 if (mappingQuality != null) { | 4381 if (mappingQuality != null) { |
4382 _json["mappingQuality"] = mappingQuality; | 4382 _json["mappingQuality"] = mappingQuality; |
4383 } | 4383 } |
4384 if (position != null) { | 4384 if (position != null) { |
4385 _json["position"] = (position).toJson(); | 4385 _json["position"] = (position).toJson(); |
4386 } | 4386 } |
4387 return _json; | 4387 return _json; |
(...skipping 23 matching lines...) Expand all Loading... |
4411 nextPageToken = _json["nextPageToken"]; | 4411 nextPageToken = _json["nextPageToken"]; |
4412 } | 4412 } |
4413 if (_json.containsKey("offset")) { | 4413 if (_json.containsKey("offset")) { |
4414 offset = _json["offset"]; | 4414 offset = _json["offset"]; |
4415 } | 4415 } |
4416 if (_json.containsKey("sequence")) { | 4416 if (_json.containsKey("sequence")) { |
4417 sequence = _json["sequence"]; | 4417 sequence = _json["sequence"]; |
4418 } | 4418 } |
4419 } | 4419 } |
4420 | 4420 |
4421 core.Map toJson() { | 4421 core.Map<core.String, core.Object> toJson() { |
4422 var _json = new core.Map(); | 4422 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4423 if (nextPageToken != null) { | 4423 if (nextPageToken != null) { |
4424 _json["nextPageToken"] = nextPageToken; | 4424 _json["nextPageToken"] = nextPageToken; |
4425 } | 4425 } |
4426 if (offset != null) { | 4426 if (offset != null) { |
4427 _json["offset"] = offset; | 4427 _json["offset"] = offset; |
4428 } | 4428 } |
4429 if (sequence != null) { | 4429 if (sequence != null) { |
4430 _json["sequence"] = sequence; | 4430 _json["sequence"] = sequence; |
4431 } | 4431 } |
4432 return _json; | 4432 return _json; |
(...skipping 29 matching lines...) Expand all Loading... |
4462 bucketWidth = _json["bucketWidth"]; | 4462 bucketWidth = _json["bucketWidth"]; |
4463 } | 4463 } |
4464 if (_json.containsKey("coverageBuckets")) { | 4464 if (_json.containsKey("coverageBuckets")) { |
4465 coverageBuckets = _json["coverageBuckets"].map((value) => new CoverageBuck
et.fromJson(value)).toList(); | 4465 coverageBuckets = _json["coverageBuckets"].map((value) => new CoverageBuck
et.fromJson(value)).toList(); |
4466 } | 4466 } |
4467 if (_json.containsKey("nextPageToken")) { | 4467 if (_json.containsKey("nextPageToken")) { |
4468 nextPageToken = _json["nextPageToken"]; | 4468 nextPageToken = _json["nextPageToken"]; |
4469 } | 4469 } |
4470 } | 4470 } |
4471 | 4471 |
4472 core.Map toJson() { | 4472 core.Map<core.String, core.Object> toJson() { |
4473 var _json = new core.Map(); | 4473 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4474 if (bucketWidth != null) { | 4474 if (bucketWidth != null) { |
4475 _json["bucketWidth"] = bucketWidth; | 4475 _json["bucketWidth"] = bucketWidth; |
4476 } | 4476 } |
4477 if (coverageBuckets != null) { | 4477 if (coverageBuckets != null) { |
4478 _json["coverageBuckets"] = coverageBuckets.map((value) => (value).toJson()
).toList(); | 4478 _json["coverageBuckets"] = coverageBuckets.map((value) => (value).toJson()
).toList(); |
4479 } | 4479 } |
4480 if (nextPageToken != null) { | 4480 if (nextPageToken != null) { |
4481 _json["nextPageToken"] = nextPageToken; | 4481 _json["nextPageToken"] = nextPageToken; |
4482 } | 4482 } |
4483 return _json; | 4483 return _json; |
(...skipping 15 matching lines...) Expand all Loading... |
4499 | 4499 |
4500 ListDatasetsResponse.fromJson(core.Map _json) { | 4500 ListDatasetsResponse.fromJson(core.Map _json) { |
4501 if (_json.containsKey("datasets")) { | 4501 if (_json.containsKey("datasets")) { |
4502 datasets = _json["datasets"].map((value) => new Dataset.fromJson(value)).t
oList(); | 4502 datasets = _json["datasets"].map((value) => new Dataset.fromJson(value)).t
oList(); |
4503 } | 4503 } |
4504 if (_json.containsKey("nextPageToken")) { | 4504 if (_json.containsKey("nextPageToken")) { |
4505 nextPageToken = _json["nextPageToken"]; | 4505 nextPageToken = _json["nextPageToken"]; |
4506 } | 4506 } |
4507 } | 4507 } |
4508 | 4508 |
4509 core.Map toJson() { | 4509 core.Map<core.String, core.Object> toJson() { |
4510 var _json = new core.Map(); | 4510 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4511 if (datasets != null) { | 4511 if (datasets != null) { |
4512 _json["datasets"] = datasets.map((value) => (value).toJson()).toList(); | 4512 _json["datasets"] = datasets.map((value) => (value).toJson()).toList(); |
4513 } | 4513 } |
4514 if (nextPageToken != null) { | 4514 if (nextPageToken != null) { |
4515 _json["nextPageToken"] = nextPageToken; | 4515 _json["nextPageToken"] = nextPageToken; |
4516 } | 4516 } |
4517 return _json; | 4517 return _json; |
4518 } | 4518 } |
4519 } | 4519 } |
4520 | 4520 |
4521 /** The response message for Operations.ListOperations. */ | 4521 /** The response message for Operations.ListOperations. */ |
4522 class ListOperationsResponse { | 4522 class ListOperationsResponse { |
4523 /** The standard List next-page token. */ | 4523 /** The standard List next-page token. */ |
4524 core.String nextPageToken; | 4524 core.String nextPageToken; |
4525 /** A list of operations that matches the specified filter in the request. */ | 4525 /** A list of operations that matches the specified filter in the request. */ |
4526 core.List<Operation> operations; | 4526 core.List<Operation> operations; |
4527 | 4527 |
4528 ListOperationsResponse(); | 4528 ListOperationsResponse(); |
4529 | 4529 |
4530 ListOperationsResponse.fromJson(core.Map _json) { | 4530 ListOperationsResponse.fromJson(core.Map _json) { |
4531 if (_json.containsKey("nextPageToken")) { | 4531 if (_json.containsKey("nextPageToken")) { |
4532 nextPageToken = _json["nextPageToken"]; | 4532 nextPageToken = _json["nextPageToken"]; |
4533 } | 4533 } |
4534 if (_json.containsKey("operations")) { | 4534 if (_json.containsKey("operations")) { |
4535 operations = _json["operations"].map((value) => new Operation.fromJson(val
ue)).toList(); | 4535 operations = _json["operations"].map((value) => new Operation.fromJson(val
ue)).toList(); |
4536 } | 4536 } |
4537 } | 4537 } |
4538 | 4538 |
4539 core.Map toJson() { | 4539 core.Map<core.String, core.Object> toJson() { |
4540 var _json = new core.Map(); | 4540 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4541 if (nextPageToken != null) { | 4541 if (nextPageToken != null) { |
4542 _json["nextPageToken"] = nextPageToken; | 4542 _json["nextPageToken"] = nextPageToken; |
4543 } | 4543 } |
4544 if (operations != null) { | 4544 if (operations != null) { |
4545 _json["operations"] = operations.map((value) => (value).toJson()).toList()
; | 4545 _json["operations"] = operations.map((value) => (value).toJson()).toList()
; |
4546 } | 4546 } |
4547 return _json; | 4547 return _json; |
4548 } | 4548 } |
4549 } | 4549 } |
4550 | 4550 |
(...skipping 15 matching lines...) Expand all Loading... |
4566 infoMergeConfig = _json["infoMergeConfig"]; | 4566 infoMergeConfig = _json["infoMergeConfig"]; |
4567 } | 4567 } |
4568 if (_json.containsKey("variantSetId")) { | 4568 if (_json.containsKey("variantSetId")) { |
4569 variantSetId = _json["variantSetId"]; | 4569 variantSetId = _json["variantSetId"]; |
4570 } | 4570 } |
4571 if (_json.containsKey("variants")) { | 4571 if (_json.containsKey("variants")) { |
4572 variants = _json["variants"].map((value) => new Variant.fromJson(value)).t
oList(); | 4572 variants = _json["variants"].map((value) => new Variant.fromJson(value)).t
oList(); |
4573 } | 4573 } |
4574 } | 4574 } |
4575 | 4575 |
4576 core.Map toJson() { | 4576 core.Map<core.String, core.Object> toJson() { |
4577 var _json = new core.Map(); | 4577 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4578 if (infoMergeConfig != null) { | 4578 if (infoMergeConfig != null) { |
4579 _json["infoMergeConfig"] = infoMergeConfig; | 4579 _json["infoMergeConfig"] = infoMergeConfig; |
4580 } | 4580 } |
4581 if (variantSetId != null) { | 4581 if (variantSetId != null) { |
4582 _json["variantSetId"] = variantSetId; | 4582 _json["variantSetId"] = variantSetId; |
4583 } | 4583 } |
4584 if (variants != null) { | 4584 if (variants != null) { |
4585 _json["variants"] = variants.map((value) => (value).toJson()).toList(); | 4585 _json["variants"] = variants.map((value) => (value).toJson()).toList(); |
4586 } | 4586 } |
4587 return _json; | 4587 return _json; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4638 metadata = _json["metadata"]; | 4638 metadata = _json["metadata"]; |
4639 } | 4639 } |
4640 if (_json.containsKey("name")) { | 4640 if (_json.containsKey("name")) { |
4641 name = _json["name"]; | 4641 name = _json["name"]; |
4642 } | 4642 } |
4643 if (_json.containsKey("response")) { | 4643 if (_json.containsKey("response")) { |
4644 response = _json["response"]; | 4644 response = _json["response"]; |
4645 } | 4645 } |
4646 } | 4646 } |
4647 | 4647 |
4648 core.Map toJson() { | 4648 core.Map<core.String, core.Object> toJson() { |
4649 var _json = new core.Map(); | 4649 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4650 if (done != null) { | 4650 if (done != null) { |
4651 _json["done"] = done; | 4651 _json["done"] = done; |
4652 } | 4652 } |
4653 if (error != null) { | 4653 if (error != null) { |
4654 _json["error"] = (error).toJson(); | 4654 _json["error"] = (error).toJson(); |
4655 } | 4655 } |
4656 if (metadata != null) { | 4656 if (metadata != null) { |
4657 _json["metadata"] = metadata; | 4657 _json["metadata"] = metadata; |
4658 } | 4658 } |
4659 if (name != null) { | 4659 if (name != null) { |
(...skipping 25 matching lines...) Expand all Loading... |
4685 description = _json["description"]; | 4685 description = _json["description"]; |
4686 } | 4686 } |
4687 if (_json.containsKey("endTime")) { | 4687 if (_json.containsKey("endTime")) { |
4688 endTime = _json["endTime"]; | 4688 endTime = _json["endTime"]; |
4689 } | 4689 } |
4690 if (_json.containsKey("startTime")) { | 4690 if (_json.containsKey("startTime")) { |
4691 startTime = _json["startTime"]; | 4691 startTime = _json["startTime"]; |
4692 } | 4692 } |
4693 } | 4693 } |
4694 | 4694 |
4695 core.Map toJson() { | 4695 core.Map<core.String, core.Object> toJson() { |
4696 var _json = new core.Map(); | 4696 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4697 if (description != null) { | 4697 if (description != null) { |
4698 _json["description"] = description; | 4698 _json["description"] = description; |
4699 } | 4699 } |
4700 if (endTime != null) { | 4700 if (endTime != null) { |
4701 _json["endTime"] = endTime; | 4701 _json["endTime"] = endTime; |
4702 } | 4702 } |
4703 if (startTime != null) { | 4703 if (startTime != null) { |
4704 _json["startTime"] = startTime; | 4704 _json["startTime"] = startTime; |
4705 } | 4705 } |
4706 return _json; | 4706 return _json; |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4775 request = _json["request"]; | 4775 request = _json["request"]; |
4776 } | 4776 } |
4777 if (_json.containsKey("runtimeMetadata")) { | 4777 if (_json.containsKey("runtimeMetadata")) { |
4778 runtimeMetadata = _json["runtimeMetadata"]; | 4778 runtimeMetadata = _json["runtimeMetadata"]; |
4779 } | 4779 } |
4780 if (_json.containsKey("startTime")) { | 4780 if (_json.containsKey("startTime")) { |
4781 startTime = _json["startTime"]; | 4781 startTime = _json["startTime"]; |
4782 } | 4782 } |
4783 } | 4783 } |
4784 | 4784 |
4785 core.Map toJson() { | 4785 core.Map<core.String, core.Object> toJson() { |
4786 var _json = new core.Map(); | 4786 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4787 if (clientId != null) { | 4787 if (clientId != null) { |
4788 _json["clientId"] = clientId; | 4788 _json["clientId"] = clientId; |
4789 } | 4789 } |
4790 if (createTime != null) { | 4790 if (createTime != null) { |
4791 _json["createTime"] = createTime; | 4791 _json["createTime"] = createTime; |
4792 } | 4792 } |
4793 if (endTime != null) { | 4793 if (endTime != null) { |
4794 _json["endTime"] = endTime; | 4794 _json["endTime"] = endTime; |
4795 } | 4795 } |
4796 if (events != null) { | 4796 if (events != null) { |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4844 * } | 4844 * } |
4845 * ] | 4845 * ] |
4846 * } | 4846 * } |
4847 * | 4847 * |
4848 * For a description of IAM and its features, see the | 4848 * For a description of IAM and its features, see the |
4849 * [IAM developer's guide](https://cloud.google.com/iam). | 4849 * [IAM developer's guide](https://cloud.google.com/iam). |
4850 */ | 4850 */ |
4851 class Policy { | 4851 class Policy { |
4852 /** | 4852 /** |
4853 * Associates a list of `members` to a `role`. | 4853 * Associates a list of `members` to a `role`. |
4854 * Multiple `bindings` must not be specified for the same `role`. | |
4855 * `bindings` with no members will result in an error. | 4854 * `bindings` with no members will result in an error. |
4856 */ | 4855 */ |
4857 core.List<Binding> bindings; | 4856 core.List<Binding> bindings; |
4858 /** | 4857 /** |
4859 * `etag` is used for optimistic concurrency control as a way to help | 4858 * `etag` is used for optimistic concurrency control as a way to help |
4860 * prevent simultaneous updates of a policy from overwriting each other. | 4859 * prevent simultaneous updates of a policy from overwriting each other. |
4861 * It is strongly suggested that systems make use of the `etag` in the | 4860 * It is strongly suggested that systems make use of the `etag` in the |
4862 * read-modify-write cycle to perform policy updates in order to avoid race | 4861 * read-modify-write cycle to perform policy updates in order to avoid race |
4863 * conditions: An `etag` is returned in the response to `getIamPolicy`, and | 4862 * conditions: An `etag` is returned in the response to `getIamPolicy`, and |
4864 * systems are expected to put that etag in the request to `setIamPolicy` to | 4863 * systems are expected to put that etag in the request to `setIamPolicy` to |
(...skipping 20 matching lines...) Expand all Loading... |
4885 bindings = _json["bindings"].map((value) => new Binding.fromJson(value)).t
oList(); | 4884 bindings = _json["bindings"].map((value) => new Binding.fromJson(value)).t
oList(); |
4886 } | 4885 } |
4887 if (_json.containsKey("etag")) { | 4886 if (_json.containsKey("etag")) { |
4888 etag = _json["etag"]; | 4887 etag = _json["etag"]; |
4889 } | 4888 } |
4890 if (_json.containsKey("version")) { | 4889 if (_json.containsKey("version")) { |
4891 version = _json["version"]; | 4890 version = _json["version"]; |
4892 } | 4891 } |
4893 } | 4892 } |
4894 | 4893 |
4895 core.Map toJson() { | 4894 core.Map<core.String, core.Object> toJson() { |
4896 var _json = new core.Map(); | 4895 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4897 if (bindings != null) { | 4896 if (bindings != null) { |
4898 _json["bindings"] = bindings.map((value) => (value).toJson()).toList(); | 4897 _json["bindings"] = bindings.map((value) => (value).toJson()).toList(); |
4899 } | 4898 } |
4900 if (etag != null) { | 4899 if (etag != null) { |
4901 _json["etag"] = etag; | 4900 _json["etag"] = etag; |
4902 } | 4901 } |
4903 if (version != null) { | 4902 if (version != null) { |
4904 _json["version"] = version; | 4903 _json["version"] = version; |
4905 } | 4904 } |
4906 return _json; | 4905 return _json; |
(...skipping 26 matching lines...) Expand all Loading... |
4933 position = _json["position"]; | 4932 position = _json["position"]; |
4934 } | 4933 } |
4935 if (_json.containsKey("referenceName")) { | 4934 if (_json.containsKey("referenceName")) { |
4936 referenceName = _json["referenceName"]; | 4935 referenceName = _json["referenceName"]; |
4937 } | 4936 } |
4938 if (_json.containsKey("reverseStrand")) { | 4937 if (_json.containsKey("reverseStrand")) { |
4939 reverseStrand = _json["reverseStrand"]; | 4938 reverseStrand = _json["reverseStrand"]; |
4940 } | 4939 } |
4941 } | 4940 } |
4942 | 4941 |
4943 core.Map toJson() { | 4942 core.Map<core.String, core.Object> toJson() { |
4944 var _json = new core.Map(); | 4943 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4945 if (position != null) { | 4944 if (position != null) { |
4946 _json["position"] = position; | 4945 _json["position"] = position; |
4947 } | 4946 } |
4948 if (referenceName != null) { | 4947 if (referenceName != null) { |
4949 _json["referenceName"] = referenceName; | 4948 _json["referenceName"] = referenceName; |
4950 } | 4949 } |
4951 if (reverseStrand != null) { | 4950 if (reverseStrand != null) { |
4952 _json["reverseStrand"] = reverseStrand; | 4951 _json["reverseStrand"] = reverseStrand; |
4953 } | 4952 } |
4954 return _json; | 4953 return _json; |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4986 name = _json["name"]; | 4985 name = _json["name"]; |
4987 } | 4986 } |
4988 if (_json.containsKey("prevProgramId")) { | 4987 if (_json.containsKey("prevProgramId")) { |
4989 prevProgramId = _json["prevProgramId"]; | 4988 prevProgramId = _json["prevProgramId"]; |
4990 } | 4989 } |
4991 if (_json.containsKey("version")) { | 4990 if (_json.containsKey("version")) { |
4992 version = _json["version"]; | 4991 version = _json["version"]; |
4993 } | 4992 } |
4994 } | 4993 } |
4995 | 4994 |
4996 core.Map toJson() { | 4995 core.Map<core.String, core.Object> toJson() { |
4997 var _json = new core.Map(); | 4996 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
4998 if (commandLine != null) { | 4997 if (commandLine != null) { |
4999 _json["commandLine"] = commandLine; | 4998 _json["commandLine"] = commandLine; |
5000 } | 4999 } |
5001 if (id != null) { | 5000 if (id != null) { |
5002 _json["id"] = id; | 5001 _json["id"] = id; |
5003 } | 5002 } |
5004 if (name != null) { | 5003 if (name != null) { |
5005 _json["name"] = name; | 5004 _json["name"] = name; |
5006 } | 5005 } |
5007 if (prevProgramId != null) { | 5006 if (prevProgramId != null) { |
(...skipping 25 matching lines...) Expand all Loading... |
5033 end = _json["end"]; | 5032 end = _json["end"]; |
5034 } | 5033 } |
5035 if (_json.containsKey("referenceName")) { | 5034 if (_json.containsKey("referenceName")) { |
5036 referenceName = _json["referenceName"]; | 5035 referenceName = _json["referenceName"]; |
5037 } | 5036 } |
5038 if (_json.containsKey("start")) { | 5037 if (_json.containsKey("start")) { |
5039 start = _json["start"]; | 5038 start = _json["start"]; |
5040 } | 5039 } |
5041 } | 5040 } |
5042 | 5041 |
5043 core.Map toJson() { | 5042 core.Map<core.String, core.Object> toJson() { |
5044 var _json = new core.Map(); | 5043 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
5045 if (end != null) { | 5044 if (end != null) { |
5046 _json["end"] = end; | 5045 _json["end"] = end; |
5047 } | 5046 } |
5048 if (referenceName != null) { | 5047 if (referenceName != null) { |
5049 _json["referenceName"] = referenceName; | 5048 _json["referenceName"] = referenceName; |
5050 } | 5049 } |
5051 if (start != null) { | 5050 if (start != null) { |
5052 _json["start"] = start; | 5051 _json["start"] = start; |
5053 } | 5052 } |
5054 return _json; | 5053 return _json; |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5292 readNumber = _json["readNumber"]; | 5291 readNumber = _json["readNumber"]; |
5293 } | 5292 } |
5294 if (_json.containsKey("secondaryAlignment")) { | 5293 if (_json.containsKey("secondaryAlignment")) { |
5295 secondaryAlignment = _json["secondaryAlignment"]; | 5294 secondaryAlignment = _json["secondaryAlignment"]; |
5296 } | 5295 } |
5297 if (_json.containsKey("supplementaryAlignment")) { | 5296 if (_json.containsKey("supplementaryAlignment")) { |
5298 supplementaryAlignment = _json["supplementaryAlignment"]; | 5297 supplementaryAlignment = _json["supplementaryAlignment"]; |
5299 } | 5298 } |
5300 } | 5299 } |
5301 | 5300 |
5302 core.Map toJson() { | 5301 core.Map<core.String, core.Object> toJson() { |
5303 var _json = new core.Map(); | 5302 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
5304 if (alignedQuality != null) { | 5303 if (alignedQuality != null) { |
5305 _json["alignedQuality"] = alignedQuality; | 5304 _json["alignedQuality"] = alignedQuality; |
5306 } | 5305 } |
5307 if (alignedSequence != null) { | 5306 if (alignedSequence != null) { |
5308 _json["alignedSequence"] = alignedSequence; | 5307 _json["alignedSequence"] = alignedSequence; |
5309 } | 5308 } |
5310 if (alignment != null) { | 5309 if (alignment != null) { |
5311 _json["alignment"] = (alignment).toJson(); | 5310 _json["alignment"] = (alignment).toJson(); |
5312 } | 5311 } |
5313 if (duplicateFragment != null) { | 5312 if (duplicateFragment != null) { |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5429 programs = _json["programs"].map((value) => new Program.fromJson(value)).t
oList(); | 5428 programs = _json["programs"].map((value) => new Program.fromJson(value)).t
oList(); |
5430 } | 5429 } |
5431 if (_json.containsKey("referenceSetId")) { | 5430 if (_json.containsKey("referenceSetId")) { |
5432 referenceSetId = _json["referenceSetId"]; | 5431 referenceSetId = _json["referenceSetId"]; |
5433 } | 5432 } |
5434 if (_json.containsKey("sampleId")) { | 5433 if (_json.containsKey("sampleId")) { |
5435 sampleId = _json["sampleId"]; | 5434 sampleId = _json["sampleId"]; |
5436 } | 5435 } |
5437 } | 5436 } |
5438 | 5437 |
5439 core.Map toJson() { | 5438 core.Map<core.String, core.Object> toJson() { |
5440 var _json = new core.Map(); | 5439 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
5441 if (datasetId != null) { | 5440 if (datasetId != null) { |
5442 _json["datasetId"] = datasetId; | 5441 _json["datasetId"] = datasetId; |
5443 } | 5442 } |
5444 if (description != null) { | 5443 if (description != null) { |
5445 _json["description"] = description; | 5444 _json["description"] = description; |
5446 } | 5445 } |
5447 if (experiment != null) { | 5446 if (experiment != null) { |
5448 _json["experiment"] = (experiment).toJson(); | 5447 _json["experiment"] = (experiment).toJson(); |
5449 } | 5448 } |
5450 if (id != null) { | 5449 if (id != null) { |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5537 name = _json["name"]; | 5536 name = _json["name"]; |
5538 } | 5537 } |
5539 if (_json.containsKey("readGroups")) { | 5538 if (_json.containsKey("readGroups")) { |
5540 readGroups = _json["readGroups"].map((value) => new ReadGroup.fromJson(val
ue)).toList(); | 5539 readGroups = _json["readGroups"].map((value) => new ReadGroup.fromJson(val
ue)).toList(); |
5541 } | 5540 } |
5542 if (_json.containsKey("referenceSetId")) { | 5541 if (_json.containsKey("referenceSetId")) { |
5543 referenceSetId = _json["referenceSetId"]; | 5542 referenceSetId = _json["referenceSetId"]; |
5544 } | 5543 } |
5545 } | 5544 } |
5546 | 5545 |
5547 core.Map toJson() { | 5546 core.Map<core.String, core.Object> toJson() { |
5548 var _json = new core.Map(); | 5547 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
5549 if (datasetId != null) { | 5548 if (datasetId != null) { |
5550 _json["datasetId"] = datasetId; | 5549 _json["datasetId"] = datasetId; |
5551 } | 5550 } |
5552 if (filename != null) { | 5551 if (filename != null) { |
5553 _json["filename"] = filename; | 5552 _json["filename"] = filename; |
5554 } | 5553 } |
5555 if (id != null) { | 5554 if (id != null) { |
5556 _json["id"] = id; | 5555 _json["id"] = id; |
5557 } | 5556 } |
5558 if (info != null) { | 5557 if (info != null) { |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5627 ncbiTaxonId = _json["ncbiTaxonId"]; | 5626 ncbiTaxonId = _json["ncbiTaxonId"]; |
5628 } | 5627 } |
5629 if (_json.containsKey("sourceAccessions")) { | 5628 if (_json.containsKey("sourceAccessions")) { |
5630 sourceAccessions = _json["sourceAccessions"]; | 5629 sourceAccessions = _json["sourceAccessions"]; |
5631 } | 5630 } |
5632 if (_json.containsKey("sourceUri")) { | 5631 if (_json.containsKey("sourceUri")) { |
5633 sourceUri = _json["sourceUri"]; | 5632 sourceUri = _json["sourceUri"]; |
5634 } | 5633 } |
5635 } | 5634 } |
5636 | 5635 |
5637 core.Map toJson() { | 5636 core.Map<core.String, core.Object> toJson() { |
5638 var _json = new core.Map(); | 5637 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
5639 if (id != null) { | 5638 if (id != null) { |
5640 _json["id"] = id; | 5639 _json["id"] = id; |
5641 } | 5640 } |
5642 if (length != null) { | 5641 if (length != null) { |
5643 _json["length"] = length; | 5642 _json["length"] = length; |
5644 } | 5643 } |
5645 if (md5checksum != null) { | 5644 if (md5checksum != null) { |
5646 _json["md5checksum"] = md5checksum; | 5645 _json["md5checksum"] = md5checksum; |
5647 } | 5646 } |
5648 if (name != null) { | 5647 if (name != null) { |
(...skipping 29 matching lines...) Expand all Loading... |
5678 | 5677 |
5679 ReferenceBound.fromJson(core.Map _json) { | 5678 ReferenceBound.fromJson(core.Map _json) { |
5680 if (_json.containsKey("referenceName")) { | 5679 if (_json.containsKey("referenceName")) { |
5681 referenceName = _json["referenceName"]; | 5680 referenceName = _json["referenceName"]; |
5682 } | 5681 } |
5683 if (_json.containsKey("upperBound")) { | 5682 if (_json.containsKey("upperBound")) { |
5684 upperBound = _json["upperBound"]; | 5683 upperBound = _json["upperBound"]; |
5685 } | 5684 } |
5686 } | 5685 } |
5687 | 5686 |
5688 core.Map toJson() { | 5687 core.Map<core.String, core.Object> toJson() { |
5689 var _json = new core.Map(); | 5688 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
5690 if (referenceName != null) { | 5689 if (referenceName != null) { |
5691 _json["referenceName"] = referenceName; | 5690 _json["referenceName"] = referenceName; |
5692 } | 5691 } |
5693 if (upperBound != null) { | 5692 if (upperBound != null) { |
5694 _json["upperBound"] = upperBound; | 5693 _json["upperBound"] = upperBound; |
5695 } | 5694 } |
5696 return _json; | 5695 return _json; |
5697 } | 5696 } |
5698 } | 5697 } |
5699 | 5698 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5767 referenceIds = _json["referenceIds"]; | 5766 referenceIds = _json["referenceIds"]; |
5768 } | 5767 } |
5769 if (_json.containsKey("sourceAccessions")) { | 5768 if (_json.containsKey("sourceAccessions")) { |
5770 sourceAccessions = _json["sourceAccessions"]; | 5769 sourceAccessions = _json["sourceAccessions"]; |
5771 } | 5770 } |
5772 if (_json.containsKey("sourceUri")) { | 5771 if (_json.containsKey("sourceUri")) { |
5773 sourceUri = _json["sourceUri"]; | 5772 sourceUri = _json["sourceUri"]; |
5774 } | 5773 } |
5775 } | 5774 } |
5776 | 5775 |
5777 core.Map toJson() { | 5776 core.Map<core.String, core.Object> toJson() { |
5778 var _json = new core.Map(); | 5777 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
5779 if (assemblyId != null) { | 5778 if (assemblyId != null) { |
5780 _json["assemblyId"] = assemblyId; | 5779 _json["assemblyId"] = assemblyId; |
5781 } | 5780 } |
5782 if (description != null) { | 5781 if (description != null) { |
5783 _json["description"] = description; | 5782 _json["description"] = description; |
5784 } | 5783 } |
5785 if (id != null) { | 5784 if (id != null) { |
5786 _json["id"] = id; | 5785 _json["id"] = id; |
5787 } | 5786 } |
5788 if (md5checksum != null) { | 5787 if (md5checksum != null) { |
(...skipping 25 matching lines...) Expand all Loading... |
5814 ComputeEngine computeEngine; | 5813 ComputeEngine computeEngine; |
5815 | 5814 |
5816 RuntimeMetadata(); | 5815 RuntimeMetadata(); |
5817 | 5816 |
5818 RuntimeMetadata.fromJson(core.Map _json) { | 5817 RuntimeMetadata.fromJson(core.Map _json) { |
5819 if (_json.containsKey("computeEngine")) { | 5818 if (_json.containsKey("computeEngine")) { |
5820 computeEngine = new ComputeEngine.fromJson(_json["computeEngine"]); | 5819 computeEngine = new ComputeEngine.fromJson(_json["computeEngine"]); |
5821 } | 5820 } |
5822 } | 5821 } |
5823 | 5822 |
5824 core.Map toJson() { | 5823 core.Map<core.String, core.Object> toJson() { |
5825 var _json = new core.Map(); | 5824 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
5826 if (computeEngine != null) { | 5825 if (computeEngine != null) { |
5827 _json["computeEngine"] = (computeEngine).toJson(); | 5826 _json["computeEngine"] = (computeEngine).toJson(); |
5828 } | 5827 } |
5829 return _json; | 5828 return _json; |
5830 } | 5829 } |
5831 } | 5830 } |
5832 | 5831 |
5833 class SearchAnnotationSetsRequest { | 5832 class SearchAnnotationSetsRequest { |
5834 /** | 5833 /** |
5835 * Required. The dataset IDs to search within. Caller must have `READ` access | 5834 * Required. The dataset IDs to search within. Caller must have `READ` access |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5879 pageToken = _json["pageToken"]; | 5878 pageToken = _json["pageToken"]; |
5880 } | 5879 } |
5881 if (_json.containsKey("referenceSetId")) { | 5880 if (_json.containsKey("referenceSetId")) { |
5882 referenceSetId = _json["referenceSetId"]; | 5881 referenceSetId = _json["referenceSetId"]; |
5883 } | 5882 } |
5884 if (_json.containsKey("types")) { | 5883 if (_json.containsKey("types")) { |
5885 types = _json["types"]; | 5884 types = _json["types"]; |
5886 } | 5885 } |
5887 } | 5886 } |
5888 | 5887 |
5889 core.Map toJson() { | 5888 core.Map<core.String, core.Object> toJson() { |
5890 var _json = new core.Map(); | 5889 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
5891 if (datasetIds != null) { | 5890 if (datasetIds != null) { |
5892 _json["datasetIds"] = datasetIds; | 5891 _json["datasetIds"] = datasetIds; |
5893 } | 5892 } |
5894 if (name != null) { | 5893 if (name != null) { |
5895 _json["name"] = name; | 5894 _json["name"] = name; |
5896 } | 5895 } |
5897 if (pageSize != null) { | 5896 if (pageSize != null) { |
5898 _json["pageSize"] = pageSize; | 5897 _json["pageSize"] = pageSize; |
5899 } | 5898 } |
5900 if (pageToken != null) { | 5899 if (pageToken != null) { |
(...skipping 23 matching lines...) Expand all Loading... |
5924 | 5923 |
5925 SearchAnnotationSetsResponse.fromJson(core.Map _json) { | 5924 SearchAnnotationSetsResponse.fromJson(core.Map _json) { |
5926 if (_json.containsKey("annotationSets")) { | 5925 if (_json.containsKey("annotationSets")) { |
5927 annotationSets = _json["annotationSets"].map((value) => new AnnotationSet.
fromJson(value)).toList(); | 5926 annotationSets = _json["annotationSets"].map((value) => new AnnotationSet.
fromJson(value)).toList(); |
5928 } | 5927 } |
5929 if (_json.containsKey("nextPageToken")) { | 5928 if (_json.containsKey("nextPageToken")) { |
5930 nextPageToken = _json["nextPageToken"]; | 5929 nextPageToken = _json["nextPageToken"]; |
5931 } | 5930 } |
5932 } | 5931 } |
5933 | 5932 |
5934 core.Map toJson() { | 5933 core.Map<core.String, core.Object> toJson() { |
5935 var _json = new core.Map(); | 5934 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
5936 if (annotationSets != null) { | 5935 if (annotationSets != null) { |
5937 _json["annotationSets"] = annotationSets.map((value) => (value).toJson()).
toList(); | 5936 _json["annotationSets"] = annotationSets.map((value) => (value).toJson()).
toList(); |
5938 } | 5937 } |
5939 if (nextPageToken != null) { | 5938 if (nextPageToken != null) { |
5940 _json["nextPageToken"] = nextPageToken; | 5939 _json["nextPageToken"] = nextPageToken; |
5941 } | 5940 } |
5942 return _json; | 5941 return _json; |
5943 } | 5942 } |
5944 } | 5943 } |
5945 | 5944 |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6003 referenceId = _json["referenceId"]; | 6002 referenceId = _json["referenceId"]; |
6004 } | 6003 } |
6005 if (_json.containsKey("referenceName")) { | 6004 if (_json.containsKey("referenceName")) { |
6006 referenceName = _json["referenceName"]; | 6005 referenceName = _json["referenceName"]; |
6007 } | 6006 } |
6008 if (_json.containsKey("start")) { | 6007 if (_json.containsKey("start")) { |
6009 start = _json["start"]; | 6008 start = _json["start"]; |
6010 } | 6009 } |
6011 } | 6010 } |
6012 | 6011 |
6013 core.Map toJson() { | 6012 core.Map<core.String, core.Object> toJson() { |
6014 var _json = new core.Map(); | 6013 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6015 if (annotationSetIds != null) { | 6014 if (annotationSetIds != null) { |
6016 _json["annotationSetIds"] = annotationSetIds; | 6015 _json["annotationSetIds"] = annotationSetIds; |
6017 } | 6016 } |
6018 if (end != null) { | 6017 if (end != null) { |
6019 _json["end"] = end; | 6018 _json["end"] = end; |
6020 } | 6019 } |
6021 if (pageSize != null) { | 6020 if (pageSize != null) { |
6022 _json["pageSize"] = pageSize; | 6021 _json["pageSize"] = pageSize; |
6023 } | 6022 } |
6024 if (pageToken != null) { | 6023 if (pageToken != null) { |
(...skipping 26 matching lines...) Expand all Loading... |
6051 | 6050 |
6052 SearchAnnotationsResponse.fromJson(core.Map _json) { | 6051 SearchAnnotationsResponse.fromJson(core.Map _json) { |
6053 if (_json.containsKey("annotations")) { | 6052 if (_json.containsKey("annotations")) { |
6054 annotations = _json["annotations"].map((value) => new Annotation.fromJson(
value)).toList(); | 6053 annotations = _json["annotations"].map((value) => new Annotation.fromJson(
value)).toList(); |
6055 } | 6054 } |
6056 if (_json.containsKey("nextPageToken")) { | 6055 if (_json.containsKey("nextPageToken")) { |
6057 nextPageToken = _json["nextPageToken"]; | 6056 nextPageToken = _json["nextPageToken"]; |
6058 } | 6057 } |
6059 } | 6058 } |
6060 | 6059 |
6061 core.Map toJson() { | 6060 core.Map<core.String, core.Object> toJson() { |
6062 var _json = new core.Map(); | 6061 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6063 if (annotations != null) { | 6062 if (annotations != null) { |
6064 _json["annotations"] = annotations.map((value) => (value).toJson()).toList
(); | 6063 _json["annotations"] = annotations.map((value) => (value).toJson()).toList
(); |
6065 } | 6064 } |
6066 if (nextPageToken != null) { | 6065 if (nextPageToken != null) { |
6067 _json["nextPageToken"] = nextPageToken; | 6066 _json["nextPageToken"] = nextPageToken; |
6068 } | 6067 } |
6069 return _json; | 6068 return _json; |
6070 } | 6069 } |
6071 } | 6070 } |
6072 | 6071 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6104 pageSize = _json["pageSize"]; | 6103 pageSize = _json["pageSize"]; |
6105 } | 6104 } |
6106 if (_json.containsKey("pageToken")) { | 6105 if (_json.containsKey("pageToken")) { |
6107 pageToken = _json["pageToken"]; | 6106 pageToken = _json["pageToken"]; |
6108 } | 6107 } |
6109 if (_json.containsKey("variantSetIds")) { | 6108 if (_json.containsKey("variantSetIds")) { |
6110 variantSetIds = _json["variantSetIds"]; | 6109 variantSetIds = _json["variantSetIds"]; |
6111 } | 6110 } |
6112 } | 6111 } |
6113 | 6112 |
6114 core.Map toJson() { | 6113 core.Map<core.String, core.Object> toJson() { |
6115 var _json = new core.Map(); | 6114 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6116 if (name != null) { | 6115 if (name != null) { |
6117 _json["name"] = name; | 6116 _json["name"] = name; |
6118 } | 6117 } |
6119 if (pageSize != null) { | 6118 if (pageSize != null) { |
6120 _json["pageSize"] = pageSize; | 6119 _json["pageSize"] = pageSize; |
6121 } | 6120 } |
6122 if (pageToken != null) { | 6121 if (pageToken != null) { |
6123 _json["pageToken"] = pageToken; | 6122 _json["pageToken"] = pageToken; |
6124 } | 6123 } |
6125 if (variantSetIds != null) { | 6124 if (variantSetIds != null) { |
(...skipping 18 matching lines...) Expand all Loading... |
6144 | 6143 |
6145 SearchCallSetsResponse.fromJson(core.Map _json) { | 6144 SearchCallSetsResponse.fromJson(core.Map _json) { |
6146 if (_json.containsKey("callSets")) { | 6145 if (_json.containsKey("callSets")) { |
6147 callSets = _json["callSets"].map((value) => new CallSet.fromJson(value)).t
oList(); | 6146 callSets = _json["callSets"].map((value) => new CallSet.fromJson(value)).t
oList(); |
6148 } | 6147 } |
6149 if (_json.containsKey("nextPageToken")) { | 6148 if (_json.containsKey("nextPageToken")) { |
6150 nextPageToken = _json["nextPageToken"]; | 6149 nextPageToken = _json["nextPageToken"]; |
6151 } | 6150 } |
6152 } | 6151 } |
6153 | 6152 |
6154 core.Map toJson() { | 6153 core.Map<core.String, core.Object> toJson() { |
6155 var _json = new core.Map(); | 6154 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6156 if (callSets != null) { | 6155 if (callSets != null) { |
6157 _json["callSets"] = callSets.map((value) => (value).toJson()).toList(); | 6156 _json["callSets"] = callSets.map((value) => (value).toJson()).toList(); |
6158 } | 6157 } |
6159 if (nextPageToken != null) { | 6158 if (nextPageToken != null) { |
6160 _json["nextPageToken"] = nextPageToken; | 6159 _json["nextPageToken"] = nextPageToken; |
6161 } | 6160 } |
6162 return _json; | 6161 return _json; |
6163 } | 6162 } |
6164 } | 6163 } |
6165 | 6164 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6197 name = _json["name"]; | 6196 name = _json["name"]; |
6198 } | 6197 } |
6199 if (_json.containsKey("pageSize")) { | 6198 if (_json.containsKey("pageSize")) { |
6200 pageSize = _json["pageSize"]; | 6199 pageSize = _json["pageSize"]; |
6201 } | 6200 } |
6202 if (_json.containsKey("pageToken")) { | 6201 if (_json.containsKey("pageToken")) { |
6203 pageToken = _json["pageToken"]; | 6202 pageToken = _json["pageToken"]; |
6204 } | 6203 } |
6205 } | 6204 } |
6206 | 6205 |
6207 core.Map toJson() { | 6206 core.Map<core.String, core.Object> toJson() { |
6208 var _json = new core.Map(); | 6207 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6209 if (datasetIds != null) { | 6208 if (datasetIds != null) { |
6210 _json["datasetIds"] = datasetIds; | 6209 _json["datasetIds"] = datasetIds; |
6211 } | 6210 } |
6212 if (name != null) { | 6211 if (name != null) { |
6213 _json["name"] = name; | 6212 _json["name"] = name; |
6214 } | 6213 } |
6215 if (pageSize != null) { | 6214 if (pageSize != null) { |
6216 _json["pageSize"] = pageSize; | 6215 _json["pageSize"] = pageSize; |
6217 } | 6216 } |
6218 if (pageToken != null) { | 6217 if (pageToken != null) { |
(...skipping 18 matching lines...) Expand all Loading... |
6237 | 6236 |
6238 SearchReadGroupSetsResponse.fromJson(core.Map _json) { | 6237 SearchReadGroupSetsResponse.fromJson(core.Map _json) { |
6239 if (_json.containsKey("nextPageToken")) { | 6238 if (_json.containsKey("nextPageToken")) { |
6240 nextPageToken = _json["nextPageToken"]; | 6239 nextPageToken = _json["nextPageToken"]; |
6241 } | 6240 } |
6242 if (_json.containsKey("readGroupSets")) { | 6241 if (_json.containsKey("readGroupSets")) { |
6243 readGroupSets = _json["readGroupSets"].map((value) => new ReadGroupSet.fro
mJson(value)).toList(); | 6242 readGroupSets = _json["readGroupSets"].map((value) => new ReadGroupSet.fro
mJson(value)).toList(); |
6244 } | 6243 } |
6245 } | 6244 } |
6246 | 6245 |
6247 core.Map toJson() { | 6246 core.Map<core.String, core.Object> toJson() { |
6248 var _json = new core.Map(); | 6247 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6249 if (nextPageToken != null) { | 6248 if (nextPageToken != null) { |
6250 _json["nextPageToken"] = nextPageToken; | 6249 _json["nextPageToken"] = nextPageToken; |
6251 } | 6250 } |
6252 if (readGroupSets != null) { | 6251 if (readGroupSets != null) { |
6253 _json["readGroupSets"] = readGroupSets.map((value) => (value).toJson()).to
List(); | 6252 _json["readGroupSets"] = readGroupSets.map((value) => (value).toJson()).to
List(); |
6254 } | 6253 } |
6255 return _json; | 6254 return _json; |
6256 } | 6255 } |
6257 } | 6256 } |
6258 | 6257 |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6318 readGroupSetIds = _json["readGroupSetIds"]; | 6317 readGroupSetIds = _json["readGroupSetIds"]; |
6319 } | 6318 } |
6320 if (_json.containsKey("referenceName")) { | 6319 if (_json.containsKey("referenceName")) { |
6321 referenceName = _json["referenceName"]; | 6320 referenceName = _json["referenceName"]; |
6322 } | 6321 } |
6323 if (_json.containsKey("start")) { | 6322 if (_json.containsKey("start")) { |
6324 start = _json["start"]; | 6323 start = _json["start"]; |
6325 } | 6324 } |
6326 } | 6325 } |
6327 | 6326 |
6328 core.Map toJson() { | 6327 core.Map<core.String, core.Object> toJson() { |
6329 var _json = new core.Map(); | 6328 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6330 if (end != null) { | 6329 if (end != null) { |
6331 _json["end"] = end; | 6330 _json["end"] = end; |
6332 } | 6331 } |
6333 if (pageSize != null) { | 6332 if (pageSize != null) { |
6334 _json["pageSize"] = pageSize; | 6333 _json["pageSize"] = pageSize; |
6335 } | 6334 } |
6336 if (pageToken != null) { | 6335 if (pageToken != null) { |
6337 _json["pageToken"] = pageToken; | 6336 _json["pageToken"] = pageToken; |
6338 } | 6337 } |
6339 if (readGroupIds != null) { | 6338 if (readGroupIds != null) { |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6372 | 6371 |
6373 SearchReadsResponse.fromJson(core.Map _json) { | 6372 SearchReadsResponse.fromJson(core.Map _json) { |
6374 if (_json.containsKey("alignments")) { | 6373 if (_json.containsKey("alignments")) { |
6375 alignments = _json["alignments"].map((value) => new Read.fromJson(value)).
toList(); | 6374 alignments = _json["alignments"].map((value) => new Read.fromJson(value)).
toList(); |
6376 } | 6375 } |
6377 if (_json.containsKey("nextPageToken")) { | 6376 if (_json.containsKey("nextPageToken")) { |
6378 nextPageToken = _json["nextPageToken"]; | 6377 nextPageToken = _json["nextPageToken"]; |
6379 } | 6378 } |
6380 } | 6379 } |
6381 | 6380 |
6382 core.Map toJson() { | 6381 core.Map<core.String, core.Object> toJson() { |
6383 var _json = new core.Map(); | 6382 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6384 if (alignments != null) { | 6383 if (alignments != null) { |
6385 _json["alignments"] = alignments.map((value) => (value).toJson()).toList()
; | 6384 _json["alignments"] = alignments.map((value) => (value).toJson()).toList()
; |
6386 } | 6385 } |
6387 if (nextPageToken != null) { | 6386 if (nextPageToken != null) { |
6388 _json["nextPageToken"] = nextPageToken; | 6387 _json["nextPageToken"] = nextPageToken; |
6389 } | 6388 } |
6390 return _json; | 6389 return _json; |
6391 } | 6390 } |
6392 } | 6391 } |
6393 | 6392 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6434 md5checksums = _json["md5checksums"]; | 6433 md5checksums = _json["md5checksums"]; |
6435 } | 6434 } |
6436 if (_json.containsKey("pageSize")) { | 6435 if (_json.containsKey("pageSize")) { |
6437 pageSize = _json["pageSize"]; | 6436 pageSize = _json["pageSize"]; |
6438 } | 6437 } |
6439 if (_json.containsKey("pageToken")) { | 6438 if (_json.containsKey("pageToken")) { |
6440 pageToken = _json["pageToken"]; | 6439 pageToken = _json["pageToken"]; |
6441 } | 6440 } |
6442 } | 6441 } |
6443 | 6442 |
6444 core.Map toJson() { | 6443 core.Map<core.String, core.Object> toJson() { |
6445 var _json = new core.Map(); | 6444 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6446 if (accessions != null) { | 6445 if (accessions != null) { |
6447 _json["accessions"] = accessions; | 6446 _json["accessions"] = accessions; |
6448 } | 6447 } |
6449 if (assemblyId != null) { | 6448 if (assemblyId != null) { |
6450 _json["assemblyId"] = assemblyId; | 6449 _json["assemblyId"] = assemblyId; |
6451 } | 6450 } |
6452 if (md5checksums != null) { | 6451 if (md5checksums != null) { |
6453 _json["md5checksums"] = md5checksums; | 6452 _json["md5checksums"] = md5checksums; |
6454 } | 6453 } |
6455 if (pageSize != null) { | 6454 if (pageSize != null) { |
(...skipping 20 matching lines...) Expand all Loading... |
6476 | 6475 |
6477 SearchReferenceSetsResponse.fromJson(core.Map _json) { | 6476 SearchReferenceSetsResponse.fromJson(core.Map _json) { |
6478 if (_json.containsKey("nextPageToken")) { | 6477 if (_json.containsKey("nextPageToken")) { |
6479 nextPageToken = _json["nextPageToken"]; | 6478 nextPageToken = _json["nextPageToken"]; |
6480 } | 6479 } |
6481 if (_json.containsKey("referenceSets")) { | 6480 if (_json.containsKey("referenceSets")) { |
6482 referenceSets = _json["referenceSets"].map((value) => new ReferenceSet.fro
mJson(value)).toList(); | 6481 referenceSets = _json["referenceSets"].map((value) => new ReferenceSet.fro
mJson(value)).toList(); |
6483 } | 6482 } |
6484 } | 6483 } |
6485 | 6484 |
6486 core.Map toJson() { | 6485 core.Map<core.String, core.Object> toJson() { |
6487 var _json = new core.Map(); | 6486 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6488 if (nextPageToken != null) { | 6487 if (nextPageToken != null) { |
6489 _json["nextPageToken"] = nextPageToken; | 6488 _json["nextPageToken"] = nextPageToken; |
6490 } | 6489 } |
6491 if (referenceSets != null) { | 6490 if (referenceSets != null) { |
6492 _json["referenceSets"] = referenceSets.map((value) => (value).toJson()).to
List(); | 6491 _json["referenceSets"] = referenceSets.map((value) => (value).toJson()).to
List(); |
6493 } | 6492 } |
6494 return _json; | 6493 return _json; |
6495 } | 6494 } |
6496 } | 6495 } |
6497 | 6496 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6535 pageSize = _json["pageSize"]; | 6534 pageSize = _json["pageSize"]; |
6536 } | 6535 } |
6537 if (_json.containsKey("pageToken")) { | 6536 if (_json.containsKey("pageToken")) { |
6538 pageToken = _json["pageToken"]; | 6537 pageToken = _json["pageToken"]; |
6539 } | 6538 } |
6540 if (_json.containsKey("referenceSetId")) { | 6539 if (_json.containsKey("referenceSetId")) { |
6541 referenceSetId = _json["referenceSetId"]; | 6540 referenceSetId = _json["referenceSetId"]; |
6542 } | 6541 } |
6543 } | 6542 } |
6544 | 6543 |
6545 core.Map toJson() { | 6544 core.Map<core.String, core.Object> toJson() { |
6546 var _json = new core.Map(); | 6545 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6547 if (accessions != null) { | 6546 if (accessions != null) { |
6548 _json["accessions"] = accessions; | 6547 _json["accessions"] = accessions; |
6549 } | 6548 } |
6550 if (md5checksums != null) { | 6549 if (md5checksums != null) { |
6551 _json["md5checksums"] = md5checksums; | 6550 _json["md5checksums"] = md5checksums; |
6552 } | 6551 } |
6553 if (pageSize != null) { | 6552 if (pageSize != null) { |
6554 _json["pageSize"] = pageSize; | 6553 _json["pageSize"] = pageSize; |
6555 } | 6554 } |
6556 if (pageToken != null) { | 6555 if (pageToken != null) { |
(...skipping 20 matching lines...) Expand all Loading... |
6577 | 6576 |
6578 SearchReferencesResponse.fromJson(core.Map _json) { | 6577 SearchReferencesResponse.fromJson(core.Map _json) { |
6579 if (_json.containsKey("nextPageToken")) { | 6578 if (_json.containsKey("nextPageToken")) { |
6580 nextPageToken = _json["nextPageToken"]; | 6579 nextPageToken = _json["nextPageToken"]; |
6581 } | 6580 } |
6582 if (_json.containsKey("references")) { | 6581 if (_json.containsKey("references")) { |
6583 references = _json["references"].map((value) => new Reference.fromJson(val
ue)).toList(); | 6582 references = _json["references"].map((value) => new Reference.fromJson(val
ue)).toList(); |
6584 } | 6583 } |
6585 } | 6584 } |
6586 | 6585 |
6587 core.Map toJson() { | 6586 core.Map<core.String, core.Object> toJson() { |
6588 var _json = new core.Map(); | 6587 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6589 if (nextPageToken != null) { | 6588 if (nextPageToken != null) { |
6590 _json["nextPageToken"] = nextPageToken; | 6589 _json["nextPageToken"] = nextPageToken; |
6591 } | 6590 } |
6592 if (references != null) { | 6591 if (references != null) { |
6593 _json["references"] = references.map((value) => (value).toJson()).toList()
; | 6592 _json["references"] = references.map((value) => (value).toJson()).toList()
; |
6594 } | 6593 } |
6595 return _json; | 6594 return _json; |
6596 } | 6595 } |
6597 } | 6596 } |
6598 | 6597 |
(...skipping 23 matching lines...) Expand all Loading... |
6622 datasetIds = _json["datasetIds"]; | 6621 datasetIds = _json["datasetIds"]; |
6623 } | 6622 } |
6624 if (_json.containsKey("pageSize")) { | 6623 if (_json.containsKey("pageSize")) { |
6625 pageSize = _json["pageSize"]; | 6624 pageSize = _json["pageSize"]; |
6626 } | 6625 } |
6627 if (_json.containsKey("pageToken")) { | 6626 if (_json.containsKey("pageToken")) { |
6628 pageToken = _json["pageToken"]; | 6627 pageToken = _json["pageToken"]; |
6629 } | 6628 } |
6630 } | 6629 } |
6631 | 6630 |
6632 core.Map toJson() { | 6631 core.Map<core.String, core.Object> toJson() { |
6633 var _json = new core.Map(); | 6632 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6634 if (datasetIds != null) { | 6633 if (datasetIds != null) { |
6635 _json["datasetIds"] = datasetIds; | 6634 _json["datasetIds"] = datasetIds; |
6636 } | 6635 } |
6637 if (pageSize != null) { | 6636 if (pageSize != null) { |
6638 _json["pageSize"] = pageSize; | 6637 _json["pageSize"] = pageSize; |
6639 } | 6638 } |
6640 if (pageToken != null) { | 6639 if (pageToken != null) { |
6641 _json["pageToken"] = pageToken; | 6640 _json["pageToken"] = pageToken; |
6642 } | 6641 } |
6643 return _json; | 6642 return _json; |
(...skipping 15 matching lines...) Expand all Loading... |
6659 | 6658 |
6660 SearchVariantSetsResponse.fromJson(core.Map _json) { | 6659 SearchVariantSetsResponse.fromJson(core.Map _json) { |
6661 if (_json.containsKey("nextPageToken")) { | 6660 if (_json.containsKey("nextPageToken")) { |
6662 nextPageToken = _json["nextPageToken"]; | 6661 nextPageToken = _json["nextPageToken"]; |
6663 } | 6662 } |
6664 if (_json.containsKey("variantSets")) { | 6663 if (_json.containsKey("variantSets")) { |
6665 variantSets = _json["variantSets"].map((value) => new VariantSet.fromJson(
value)).toList(); | 6664 variantSets = _json["variantSets"].map((value) => new VariantSet.fromJson(
value)).toList(); |
6666 } | 6665 } |
6667 } | 6666 } |
6668 | 6667 |
6669 core.Map toJson() { | 6668 core.Map<core.String, core.Object> toJson() { |
6670 var _json = new core.Map(); | 6669 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6671 if (nextPageToken != null) { | 6670 if (nextPageToken != null) { |
6672 _json["nextPageToken"] = nextPageToken; | 6671 _json["nextPageToken"] = nextPageToken; |
6673 } | 6672 } |
6674 if (variantSets != null) { | 6673 if (variantSets != null) { |
6675 _json["variantSets"] = variantSets.map((value) => (value).toJson()).toList
(); | 6674 _json["variantSets"] = variantSets.map((value) => (value).toJson()).toList
(); |
6676 } | 6675 } |
6677 return _json; | 6676 return _json; |
6678 } | 6677 } |
6679 } | 6678 } |
6680 | 6679 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6750 start = _json["start"]; | 6749 start = _json["start"]; |
6751 } | 6750 } |
6752 if (_json.containsKey("variantName")) { | 6751 if (_json.containsKey("variantName")) { |
6753 variantName = _json["variantName"]; | 6752 variantName = _json["variantName"]; |
6754 } | 6753 } |
6755 if (_json.containsKey("variantSetIds")) { | 6754 if (_json.containsKey("variantSetIds")) { |
6756 variantSetIds = _json["variantSetIds"]; | 6755 variantSetIds = _json["variantSetIds"]; |
6757 } | 6756 } |
6758 } | 6757 } |
6759 | 6758 |
6760 core.Map toJson() { | 6759 core.Map<core.String, core.Object> toJson() { |
6761 var _json = new core.Map(); | 6760 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6762 if (callSetIds != null) { | 6761 if (callSetIds != null) { |
6763 _json["callSetIds"] = callSetIds; | 6762 _json["callSetIds"] = callSetIds; |
6764 } | 6763 } |
6765 if (end != null) { | 6764 if (end != null) { |
6766 _json["end"] = end; | 6765 _json["end"] = end; |
6767 } | 6766 } |
6768 if (maxCalls != null) { | 6767 if (maxCalls != null) { |
6769 _json["maxCalls"] = maxCalls; | 6768 _json["maxCalls"] = maxCalls; |
6770 } | 6769 } |
6771 if (pageSize != null) { | 6770 if (pageSize != null) { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6805 | 6804 |
6806 SearchVariantsResponse.fromJson(core.Map _json) { | 6805 SearchVariantsResponse.fromJson(core.Map _json) { |
6807 if (_json.containsKey("nextPageToken")) { | 6806 if (_json.containsKey("nextPageToken")) { |
6808 nextPageToken = _json["nextPageToken"]; | 6807 nextPageToken = _json["nextPageToken"]; |
6809 } | 6808 } |
6810 if (_json.containsKey("variants")) { | 6809 if (_json.containsKey("variants")) { |
6811 variants = _json["variants"].map((value) => new Variant.fromJson(value)).t
oList(); | 6810 variants = _json["variants"].map((value) => new Variant.fromJson(value)).t
oList(); |
6812 } | 6811 } |
6813 } | 6812 } |
6814 | 6813 |
6815 core.Map toJson() { | 6814 core.Map<core.String, core.Object> toJson() { |
6816 var _json = new core.Map(); | 6815 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6817 if (nextPageToken != null) { | 6816 if (nextPageToken != null) { |
6818 _json["nextPageToken"] = nextPageToken; | 6817 _json["nextPageToken"] = nextPageToken; |
6819 } | 6818 } |
6820 if (variants != null) { | 6819 if (variants != null) { |
6821 _json["variants"] = variants.map((value) => (value).toJson()).toList(); | 6820 _json["variants"] = variants.map((value) => (value).toJson()).toList(); |
6822 } | 6821 } |
6823 return _json; | 6822 return _json; |
6824 } | 6823 } |
6825 } | 6824 } |
6826 | 6825 |
6827 /** Request message for `SetIamPolicy` method. */ | 6826 /** Request message for `SetIamPolicy` method. */ |
6828 class SetIamPolicyRequest { | 6827 class SetIamPolicyRequest { |
6829 /** | 6828 /** |
6830 * REQUIRED: The complete policy to be applied to the `resource`. The size of | 6829 * REQUIRED: The complete policy to be applied to the `resource`. The size of |
6831 * the policy is limited to a few 10s of KB. An empty policy is a | 6830 * the policy is limited to a few 10s of KB. An empty policy is a |
6832 * valid policy but certain Cloud Platform services (such as Projects) | 6831 * valid policy but certain Cloud Platform services (such as Projects) |
6833 * might reject them. | 6832 * might reject them. |
6834 */ | 6833 */ |
6835 Policy policy; | 6834 Policy policy; |
6836 | 6835 |
6837 SetIamPolicyRequest(); | 6836 SetIamPolicyRequest(); |
6838 | 6837 |
6839 SetIamPolicyRequest.fromJson(core.Map _json) { | 6838 SetIamPolicyRequest.fromJson(core.Map _json) { |
6840 if (_json.containsKey("policy")) { | 6839 if (_json.containsKey("policy")) { |
6841 policy = new Policy.fromJson(_json["policy"]); | 6840 policy = new Policy.fromJson(_json["policy"]); |
6842 } | 6841 } |
6843 } | 6842 } |
6844 | 6843 |
6845 core.Map toJson() { | 6844 core.Map<core.String, core.Object> toJson() { |
6846 var _json = new core.Map(); | 6845 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6847 if (policy != null) { | 6846 if (policy != null) { |
6848 _json["policy"] = (policy).toJson(); | 6847 _json["policy"] = (policy).toJson(); |
6849 } | 6848 } |
6850 return _json; | 6849 return _json; |
6851 } | 6850 } |
6852 } | 6851 } |
6853 | 6852 |
6854 /** | 6853 /** |
6855 * The `Status` type defines a logical error model that is suitable for | 6854 * The `Status` type defines a logical error model that is suitable for |
6856 * different | 6855 * different |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6932 code = _json["code"]; | 6931 code = _json["code"]; |
6933 } | 6932 } |
6934 if (_json.containsKey("details")) { | 6933 if (_json.containsKey("details")) { |
6935 details = _json["details"]; | 6934 details = _json["details"]; |
6936 } | 6935 } |
6937 if (_json.containsKey("message")) { | 6936 if (_json.containsKey("message")) { |
6938 message = _json["message"]; | 6937 message = _json["message"]; |
6939 } | 6938 } |
6940 } | 6939 } |
6941 | 6940 |
6942 core.Map toJson() { | 6941 core.Map<core.String, core.Object> toJson() { |
6943 var _json = new core.Map(); | 6942 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6944 if (code != null) { | 6943 if (code != null) { |
6945 _json["code"] = code; | 6944 _json["code"] = code; |
6946 } | 6945 } |
6947 if (details != null) { | 6946 if (details != null) { |
6948 _json["details"] = details; | 6947 _json["details"] = details; |
6949 } | 6948 } |
6950 if (message != null) { | 6949 if (message != null) { |
6951 _json["message"] = message; | 6950 _json["message"] = message; |
6952 } | 6951 } |
6953 return _json; | 6952 return _json; |
(...skipping 18 matching lines...) Expand all Loading... |
6972 core.List<core.String> permissions; | 6971 core.List<core.String> permissions; |
6973 | 6972 |
6974 TestIamPermissionsRequest(); | 6973 TestIamPermissionsRequest(); |
6975 | 6974 |
6976 TestIamPermissionsRequest.fromJson(core.Map _json) { | 6975 TestIamPermissionsRequest.fromJson(core.Map _json) { |
6977 if (_json.containsKey("permissions")) { | 6976 if (_json.containsKey("permissions")) { |
6978 permissions = _json["permissions"]; | 6977 permissions = _json["permissions"]; |
6979 } | 6978 } |
6980 } | 6979 } |
6981 | 6980 |
6982 core.Map toJson() { | 6981 core.Map<core.String, core.Object> toJson() { |
6983 var _json = new core.Map(); | 6982 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
6984 if (permissions != null) { | 6983 if (permissions != null) { |
6985 _json["permissions"] = permissions; | 6984 _json["permissions"] = permissions; |
6986 } | 6985 } |
6987 return _json; | 6986 return _json; |
6988 } | 6987 } |
6989 } | 6988 } |
6990 | 6989 |
6991 /** Response message for `TestIamPermissions` method. */ | 6990 /** Response message for `TestIamPermissions` method. */ |
6992 class TestIamPermissionsResponse { | 6991 class TestIamPermissionsResponse { |
6993 /** | 6992 /** |
6994 * A subset of `TestPermissionsRequest.permissions` that the caller is | 6993 * A subset of `TestPermissionsRequest.permissions` that the caller is |
6995 * allowed. | 6994 * allowed. |
6996 */ | 6995 */ |
6997 core.List<core.String> permissions; | 6996 core.List<core.String> permissions; |
6998 | 6997 |
6999 TestIamPermissionsResponse(); | 6998 TestIamPermissionsResponse(); |
7000 | 6999 |
7001 TestIamPermissionsResponse.fromJson(core.Map _json) { | 7000 TestIamPermissionsResponse.fromJson(core.Map _json) { |
7002 if (_json.containsKey("permissions")) { | 7001 if (_json.containsKey("permissions")) { |
7003 permissions = _json["permissions"]; | 7002 permissions = _json["permissions"]; |
7004 } | 7003 } |
7005 } | 7004 } |
7006 | 7005 |
7007 core.Map toJson() { | 7006 core.Map<core.String, core.Object> toJson() { |
7008 var _json = new core.Map(); | 7007 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
7009 if (permissions != null) { | 7008 if (permissions != null) { |
7010 _json["permissions"] = permissions; | 7009 _json["permissions"] = permissions; |
7011 } | 7010 } |
7012 return _json; | 7011 return _json; |
7013 } | 7012 } |
7014 } | 7013 } |
7015 | 7014 |
7016 /** | 7015 /** |
7017 * A transcript represents the assertion that a particular region of the | 7016 * A transcript represents the assertion that a particular region of the |
7018 * reference genome may be transcribed as RNA. | 7017 * reference genome may be transcribed as RNA. |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7063 codingSequence = new CodingSequence.fromJson(_json["codingSequence"]); | 7062 codingSequence = new CodingSequence.fromJson(_json["codingSequence"]); |
7064 } | 7063 } |
7065 if (_json.containsKey("exons")) { | 7064 if (_json.containsKey("exons")) { |
7066 exons = _json["exons"].map((value) => new Exon.fromJson(value)).toList(); | 7065 exons = _json["exons"].map((value) => new Exon.fromJson(value)).toList(); |
7067 } | 7066 } |
7068 if (_json.containsKey("geneId")) { | 7067 if (_json.containsKey("geneId")) { |
7069 geneId = _json["geneId"]; | 7068 geneId = _json["geneId"]; |
7070 } | 7069 } |
7071 } | 7070 } |
7072 | 7071 |
7073 core.Map toJson() { | 7072 core.Map<core.String, core.Object> toJson() { |
7074 var _json = new core.Map(); | 7073 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
7075 if (codingSequence != null) { | 7074 if (codingSequence != null) { |
7076 _json["codingSequence"] = (codingSequence).toJson(); | 7075 _json["codingSequence"] = (codingSequence).toJson(); |
7077 } | 7076 } |
7078 if (exons != null) { | 7077 if (exons != null) { |
7079 _json["exons"] = exons.map((value) => (value).toJson()).toList(); | 7078 _json["exons"] = exons.map((value) => (value).toJson()).toList(); |
7080 } | 7079 } |
7081 if (geneId != null) { | 7080 if (geneId != null) { |
7082 _json["geneId"] = geneId; | 7081 _json["geneId"] = geneId; |
7083 } | 7082 } |
7084 return _json; | 7083 return _json; |
7085 } | 7084 } |
7086 } | 7085 } |
7087 | 7086 |
7088 class UndeleteDatasetRequest { | 7087 class UndeleteDatasetRequest { |
7089 | 7088 |
7090 UndeleteDatasetRequest(); | 7089 UndeleteDatasetRequest(); |
7091 | 7090 |
7092 UndeleteDatasetRequest.fromJson(core.Map _json) { | 7091 UndeleteDatasetRequest.fromJson(core.Map _json) { |
7093 } | 7092 } |
7094 | 7093 |
7095 core.Map toJson() { | 7094 core.Map<core.String, core.Object> toJson() { |
7096 var _json = new core.Map(); | 7095 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
7097 return _json; | 7096 return _json; |
7098 } | 7097 } |
7099 } | 7098 } |
7100 | 7099 |
7101 /** | 7100 /** |
7102 * A variant represents a change in DNA sequence relative to a reference | 7101 * A variant represents a change in DNA sequence relative to a reference |
7103 * sequence. For example, a variant could represent a SNP or an insertion. | 7102 * sequence. For example, a variant could represent a SNP or an insertion. |
7104 * Variants belong to a variant set. | 7103 * Variants belong to a variant set. |
7105 * | 7104 * |
7106 * For more genomics resource definitions, see [Fundamentals of Google | 7105 * For more genomics resource definitions, see [Fundamentals of Google |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7206 referenceName = _json["referenceName"]; | 7205 referenceName = _json["referenceName"]; |
7207 } | 7206 } |
7208 if (_json.containsKey("start")) { | 7207 if (_json.containsKey("start")) { |
7209 start = _json["start"]; | 7208 start = _json["start"]; |
7210 } | 7209 } |
7211 if (_json.containsKey("variantSetId")) { | 7210 if (_json.containsKey("variantSetId")) { |
7212 variantSetId = _json["variantSetId"]; | 7211 variantSetId = _json["variantSetId"]; |
7213 } | 7212 } |
7214 } | 7213 } |
7215 | 7214 |
7216 core.Map toJson() { | 7215 core.Map<core.String, core.Object> toJson() { |
7217 var _json = new core.Map(); | 7216 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
7218 if (alternateBases != null) { | 7217 if (alternateBases != null) { |
7219 _json["alternateBases"] = alternateBases; | 7218 _json["alternateBases"] = alternateBases; |
7220 } | 7219 } |
7221 if (calls != null) { | 7220 if (calls != null) { |
7222 _json["calls"] = calls.map((value) => (value).toJson()).toList(); | 7221 _json["calls"] = calls.map((value) => (value).toJson()).toList(); |
7223 } | 7222 } |
7224 if (created != null) { | 7223 if (created != null) { |
7225 _json["created"] = created; | 7224 _json["created"] = created; |
7226 } | 7225 } |
7227 if (end != null) { | 7226 if (end != null) { |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7374 geneId = _json["geneId"]; | 7373 geneId = _json["geneId"]; |
7375 } | 7374 } |
7376 if (_json.containsKey("transcriptIds")) { | 7375 if (_json.containsKey("transcriptIds")) { |
7377 transcriptIds = _json["transcriptIds"]; | 7376 transcriptIds = _json["transcriptIds"]; |
7378 } | 7377 } |
7379 if (_json.containsKey("type")) { | 7378 if (_json.containsKey("type")) { |
7380 type = _json["type"]; | 7379 type = _json["type"]; |
7381 } | 7380 } |
7382 } | 7381 } |
7383 | 7382 |
7384 core.Map toJson() { | 7383 core.Map<core.String, core.Object> toJson() { |
7385 var _json = new core.Map(); | 7384 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
7386 if (alternateBases != null) { | 7385 if (alternateBases != null) { |
7387 _json["alternateBases"] = alternateBases; | 7386 _json["alternateBases"] = alternateBases; |
7388 } | 7387 } |
7389 if (clinicalSignificance != null) { | 7388 if (clinicalSignificance != null) { |
7390 _json["clinicalSignificance"] = clinicalSignificance; | 7389 _json["clinicalSignificance"] = clinicalSignificance; |
7391 } | 7390 } |
7392 if (conditions != null) { | 7391 if (conditions != null) { |
7393 _json["conditions"] = conditions.map((value) => (value).toJson()).toList()
; | 7392 _json["conditions"] = conditions.map((value) => (value).toJson()).toList()
; |
7394 } | 7393 } |
7395 if (effect != null) { | 7394 if (effect != null) { |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7476 genotypeLikelihood = _json["genotypeLikelihood"]; | 7475 genotypeLikelihood = _json["genotypeLikelihood"]; |
7477 } | 7476 } |
7478 if (_json.containsKey("info")) { | 7477 if (_json.containsKey("info")) { |
7479 info = _json["info"]; | 7478 info = _json["info"]; |
7480 } | 7479 } |
7481 if (_json.containsKey("phaseset")) { | 7480 if (_json.containsKey("phaseset")) { |
7482 phaseset = _json["phaseset"]; | 7481 phaseset = _json["phaseset"]; |
7483 } | 7482 } |
7484 } | 7483 } |
7485 | 7484 |
7486 core.Map toJson() { | 7485 core.Map<core.String, core.Object> toJson() { |
7487 var _json = new core.Map(); | 7486 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
7488 if (callSetId != null) { | 7487 if (callSetId != null) { |
7489 _json["callSetId"] = callSetId; | 7488 _json["callSetId"] = callSetId; |
7490 } | 7489 } |
7491 if (callSetName != null) { | 7490 if (callSetName != null) { |
7492 _json["callSetName"] = callSetName; | 7491 _json["callSetName"] = callSetName; |
7493 } | 7492 } |
7494 if (genotype != null) { | 7493 if (genotype != null) { |
7495 _json["genotype"] = genotype; | 7494 _json["genotype"] = genotype; |
7496 } | 7495 } |
7497 if (genotypeLikelihood != null) { | 7496 if (genotypeLikelihood != null) { |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7563 name = _json["name"]; | 7562 name = _json["name"]; |
7564 } | 7563 } |
7565 if (_json.containsKey("referenceBounds")) { | 7564 if (_json.containsKey("referenceBounds")) { |
7566 referenceBounds = _json["referenceBounds"].map((value) => new ReferenceBou
nd.fromJson(value)).toList(); | 7565 referenceBounds = _json["referenceBounds"].map((value) => new ReferenceBou
nd.fromJson(value)).toList(); |
7567 } | 7566 } |
7568 if (_json.containsKey("referenceSetId")) { | 7567 if (_json.containsKey("referenceSetId")) { |
7569 referenceSetId = _json["referenceSetId"]; | 7568 referenceSetId = _json["referenceSetId"]; |
7570 } | 7569 } |
7571 } | 7570 } |
7572 | 7571 |
7573 core.Map toJson() { | 7572 core.Map<core.String, core.Object> toJson() { |
7574 var _json = new core.Map(); | 7573 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
7575 if (datasetId != null) { | 7574 if (datasetId != null) { |
7576 _json["datasetId"] = datasetId; | 7575 _json["datasetId"] = datasetId; |
7577 } | 7576 } |
7578 if (description != null) { | 7577 if (description != null) { |
7579 _json["description"] = description; | 7578 _json["description"] = description; |
7580 } | 7579 } |
7581 if (id != null) { | 7580 if (id != null) { |
7582 _json["id"] = id; | 7581 _json["id"] = id; |
7583 } | 7582 } |
7584 if (metadata != null) { | 7583 if (metadata != null) { |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7661 number = _json["number"]; | 7660 number = _json["number"]; |
7662 } | 7661 } |
7663 if (_json.containsKey("type")) { | 7662 if (_json.containsKey("type")) { |
7664 type = _json["type"]; | 7663 type = _json["type"]; |
7665 } | 7664 } |
7666 if (_json.containsKey("value")) { | 7665 if (_json.containsKey("value")) { |
7667 value = _json["value"]; | 7666 value = _json["value"]; |
7668 } | 7667 } |
7669 } | 7668 } |
7670 | 7669 |
7671 core.Map toJson() { | 7670 core.Map<core.String, core.Object> toJson() { |
7672 var _json = new core.Map(); | 7671 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c
ore.Object>(); |
7673 if (description != null) { | 7672 if (description != null) { |
7674 _json["description"] = description; | 7673 _json["description"] = description; |
7675 } | 7674 } |
7676 if (id != null) { | 7675 if (id != null) { |
7677 _json["id"] = id; | 7676 _json["id"] = id; |
7678 } | 7677 } |
7679 if (info != null) { | 7678 if (info != null) { |
7680 _json["info"] = info; | 7679 _json["info"] = info; |
7681 } | 7680 } |
7682 if (key != null) { | 7681 if (key != null) { |
7683 _json["key"] = key; | 7682 _json["key"] = key; |
7684 } | 7683 } |
7685 if (number != null) { | 7684 if (number != null) { |
7686 _json["number"] = number; | 7685 _json["number"] = number; |
7687 } | 7686 } |
7688 if (type != null) { | 7687 if (type != null) { |
7689 _json["type"] = type; | 7688 _json["type"] = type; |
7690 } | 7689 } |
7691 if (value != null) { | 7690 if (value != null) { |
7692 _json["value"] = value; | 7691 _json["value"] = value; |
7693 } | 7692 } |
7694 return _json; | 7693 return _json; |
7695 } | 7694 } |
7696 } | 7695 } |
OLD | NEW |