OLD | NEW |
1 library googleapis_beta.genomics.v1beta2; | 1 library googleapis_beta.genomics.v1beta2; |
2 | 2 |
3 import "dart:core" as core; | 3 import "dart:core" as core; |
4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
5 import "dart:async" as async; | 5 import "dart:async" as async; |
6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
7 | 7 |
8 import "package:crypto/crypto.dart" as crypto; | 8 import "package:crypto/crypto.dart" as crypto; |
9 import 'package:http/http.dart' as http; | 9 import 'package:http/http.dart' as http; |
10 import '../src/common_internal.dart' as common_internal; | 10 import '../src/common_internal.dart' as common_internal; |
(...skipping 2357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2368 * represented the heterozygous value CA for this variant. If the genotype was | 2368 * represented the heterozygous value CA for this variant. If the genotype was |
2369 * instead [0, 1], the represented value would be TA. Ordering of the genotype | 2369 * instead [0, 1], the represented value would be TA. Ordering of the genotype |
2370 * values is important if the phaseset is present. If a genotype is not called | 2370 * values is important if the phaseset is present. If a genotype is not called |
2371 * (that is, a . is present in the GT string) -1 is returned. | 2371 * (that is, a . is present in the GT string) -1 is returned. |
2372 */ | 2372 */ |
2373 core.List<core.int> genotype; | 2373 core.List<core.int> genotype; |
2374 | 2374 |
2375 /** | 2375 /** |
2376 * The genotype likelihoods for this variant call. Each array entry represents | 2376 * The genotype likelihoods for this variant call. Each array entry represents |
2377 * how likely a specific genotype is for this call. The value ordering is | 2377 * how likely a specific genotype is for this call. The value ordering is |
2378 * defined by the GL tag in the VCF spec. | 2378 * defined by the GL tag in the VCF spec. If Phred-scaled genotype likelihood |
| 2379 * scores (PL) are available and log10(P) genotype likelihood scores (GL) are |
| 2380 * not, PL scores are converted to GL scores. If both are available, PL scores |
| 2381 * are stored in info. |
2379 */ | 2382 */ |
2380 core.List<core.double> genotypeLikelihood; | 2383 core.List<core.double> genotypeLikelihood; |
2381 | 2384 |
2382 /** A map of additional variant call information. */ | 2385 /** A map of additional variant call information. */ |
2383 core.Map<core.String, core.List<core.String>> info; | 2386 core.Map<core.String, core.List<core.String>> info; |
2384 | 2387 |
2385 /** | 2388 /** |
2386 * If this field is present, this variant call's genotype ordering implies the | 2389 * If this field is present, this variant call's genotype ordering implies the |
2387 * phase of the bases and is consistent with any other variant calls in the | 2390 * phase of the bases and is consistent with any other variant calls in the |
2388 * same reference sequence which have the same phaseset value. When importing | 2391 * same reference sequence which have the same phaseset value. When importing |
(...skipping 1602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3991 * The mapping of the primary alignment of the (readNumber+1)%numberReads read | 3994 * The mapping of the primary alignment of the (readNumber+1)%numberReads read |
3992 * in the fragment. It replaces mate position and mate strand in SAM. | 3995 * in the fragment. It replaces mate position and mate strand in SAM. |
3993 */ | 3996 */ |
3994 Position nextMatePosition; | 3997 Position nextMatePosition; |
3995 | 3998 |
3996 /** The number of reads in the fragment (extension to SAM flag 0x1). */ | 3999 /** The number of reads in the fragment (extension to SAM flag 0x1). */ |
3997 core.int numberReads; | 4000 core.int numberReads; |
3998 | 4001 |
3999 /** | 4002 /** |
4000 * The orientation and the distance between reads from the fragment are | 4003 * The orientation and the distance between reads from the fragment are |
4001 * consistent with the sequencing protocol (extension to SAM flag 0x2) | 4004 * consistent with the sequencing protocol (SAM flag 0x2) |
4002 */ | 4005 */ |
4003 core.bool properPlacement; | 4006 core.bool properPlacement; |
4004 | 4007 |
4005 /** | 4008 /** |
4006 * The ID of the read group this read belongs to. (Every read must belong to | 4009 * The ID of the read group this read belongs to. (Every read must belong to |
4007 * exactly one read group.) | 4010 * exactly one read group.) |
4008 */ | 4011 */ |
4009 core.String readGroupId; | 4012 core.String readGroupId; |
4010 | 4013 |
4011 /** | 4014 /** |
(...skipping 1851 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5863 _json["metadata"] = metadata.map((value) => (value).toJson()).toList(); | 5866 _json["metadata"] = metadata.map((value) => (value).toJson()).toList(); |
5864 } | 5867 } |
5865 if (referenceBounds != null) { | 5868 if (referenceBounds != null) { |
5866 _json["referenceBounds"] = referenceBounds.map((value) => (value).toJson()
).toList(); | 5869 _json["referenceBounds"] = referenceBounds.map((value) => (value).toJson()
).toList(); |
5867 } | 5870 } |
5868 return _json; | 5871 return _json; |
5869 } | 5872 } |
5870 } | 5873 } |
5871 | 5874 |
5872 | 5875 |
OLD | NEW |