OLD | NEW |
1 library googleapis_beta.genomics.v1beta; | 1 library googleapis_beta.genomics.v1beta; |
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 1868 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1879 * represented the heterozygous value CA for this variant. If the genotype was | 1879 * represented the heterozygous value CA for this variant. If the genotype was |
1880 * instead [0, 1], the represented value would be TA. Ordering of the genotype | 1880 * instead [0, 1], the represented value would be TA. Ordering of the genotype |
1881 * values is important if the phaseset is present. If a genotype is not called | 1881 * values is important if the phaseset is present. If a genotype is not called |
1882 * (that is, a . is present in the GT string) -1 is returned. | 1882 * (that is, a . is present in the GT string) -1 is returned. |
1883 */ | 1883 */ |
1884 core.List<core.int> genotype; | 1884 core.List<core.int> genotype; |
1885 | 1885 |
1886 /** | 1886 /** |
1887 * The genotype likelihoods for this variant call. Each array entry represents | 1887 * The genotype likelihoods for this variant call. Each array entry represents |
1888 * how likely a specific genotype is for this call. The value ordering is | 1888 * how likely a specific genotype is for this call. The value ordering is |
1889 * defined by the GL tag in the VCF spec. | 1889 * defined by the GL tag in the VCF spec. If Phred-scaled genotype likelihood |
| 1890 * scores (PL) are available and log10(P) genotype likelihood scores (GL) are |
| 1891 * not, PL scores are converted to GL scores. If both are available, PL scores |
| 1892 * are stored in info. |
1890 */ | 1893 */ |
1891 core.List<core.double> genotypeLikelihood; | 1894 core.List<core.double> genotypeLikelihood; |
1892 | 1895 |
1893 /** A map of additional variant call information. */ | 1896 /** A map of additional variant call information. */ |
1894 core.Map<core.String, core.List<core.String>> info; | 1897 core.Map<core.String, core.List<core.String>> info; |
1895 | 1898 |
1896 /** | 1899 /** |
1897 * If this field is present, this variant call's genotype ordering implies the | 1900 * If this field is present, this variant call's genotype ordering implies the |
1898 * phase of the bases and is consistent with any other variant calls in the | 1901 * phase of the bases and is consistent with any other variant calls in the |
1899 * same reference sequence which have the same phaseset value. When importing | 1902 * same reference sequence which have the same phaseset value. When importing |
(...skipping 2652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4552 _json["metadata"] = metadata.map((value) => (value).toJson()).toList(); | 4555 _json["metadata"] = metadata.map((value) => (value).toJson()).toList(); |
4553 } | 4556 } |
4554 if (referenceBounds != null) { | 4557 if (referenceBounds != null) { |
4555 _json["referenceBounds"] = referenceBounds.map((value) => (value).toJson()
).toList(); | 4558 _json["referenceBounds"] = referenceBounds.map((value) => (value).toJson()
).toList(); |
4556 } | 4559 } |
4557 return _json; | 4560 return _json; |
4558 } | 4561 } |
4559 } | 4562 } |
4560 | 4563 |
4561 | 4564 |
OLD | NEW |