1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232
|
// Code generated by protoc-gen-go.
// source: google.golang.org/genproto/googleapis/genomics/v1/annotations.proto
// DO NOT EDIT!
/*
Package google_genomics_v1 is a generated protocol buffer package.
It is generated from these files:
google.golang.org/genproto/googleapis/genomics/v1/annotations.proto
google.golang.org/genproto/googleapis/genomics/v1/cigar.proto
google.golang.org/genproto/googleapis/genomics/v1/datasets.proto
google.golang.org/genproto/googleapis/genomics/v1/operations.proto
google.golang.org/genproto/googleapis/genomics/v1/position.proto
google.golang.org/genproto/googleapis/genomics/v1/range.proto
google.golang.org/genproto/googleapis/genomics/v1/readalignment.proto
google.golang.org/genproto/googleapis/genomics/v1/readgroup.proto
google.golang.org/genproto/googleapis/genomics/v1/readgroupset.proto
google.golang.org/genproto/googleapis/genomics/v1/reads.proto
google.golang.org/genproto/googleapis/genomics/v1/references.proto
google.golang.org/genproto/googleapis/genomics/v1/variants.proto
It has these top-level messages:
AnnotationSet
Annotation
VariantAnnotation
Transcript
ExternalId
CreateAnnotationSetRequest
GetAnnotationSetRequest
UpdateAnnotationSetRequest
DeleteAnnotationSetRequest
SearchAnnotationSetsRequest
SearchAnnotationSetsResponse
CreateAnnotationRequest
BatchCreateAnnotationsRequest
BatchCreateAnnotationsResponse
GetAnnotationRequest
UpdateAnnotationRequest
DeleteAnnotationRequest
SearchAnnotationsRequest
SearchAnnotationsResponse
CigarUnit
Dataset
ListDatasetsRequest
ListDatasetsResponse
CreateDatasetRequest
UpdateDatasetRequest
DeleteDatasetRequest
UndeleteDatasetRequest
GetDatasetRequest
OperationMetadata
OperationEvent
Position
Range
LinearAlignment
Read
ReadGroup
ReadGroupSet
SearchReadGroupSetsRequest
SearchReadGroupSetsResponse
ImportReadGroupSetsRequest
ImportReadGroupSetsResponse
ExportReadGroupSetRequest
UpdateReadGroupSetRequest
DeleteReadGroupSetRequest
GetReadGroupSetRequest
ListCoverageBucketsRequest
CoverageBucket
ListCoverageBucketsResponse
SearchReadsRequest
SearchReadsResponse
StreamReadsRequest
StreamReadsResponse
Reference
ReferenceSet
SearchReferenceSetsRequest
SearchReferenceSetsResponse
GetReferenceSetRequest
SearchReferencesRequest
SearchReferencesResponse
GetReferenceRequest
ListBasesRequest
ListBasesResponse
VariantSetMetadata
VariantSet
Variant
VariantCall
CallSet
ReferenceBound
ImportVariantsRequest
ImportVariantsResponse
CreateVariantSetRequest
ExportVariantSetRequest
GetVariantSetRequest
SearchVariantSetsRequest
SearchVariantSetsResponse
DeleteVariantSetRequest
UpdateVariantSetRequest
SearchVariantsRequest
SearchVariantsResponse
CreateVariantRequest
UpdateVariantRequest
DeleteVariantRequest
GetVariantRequest
MergeVariantsRequest
SearchCallSetsRequest
SearchCallSetsResponse
CreateCallSetRequest
UpdateCallSetRequest
DeleteCallSetRequest
GetCallSetRequest
StreamVariantsRequest
StreamVariantsResponse
*/
package google_genomics_v1
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import _ "google.golang.org/genproto/googleapis/api/serviceconfig"
import google_protobuf1 "github.com/golang/protobuf/ptypes/empty"
import google_protobuf2 "google.golang.org/genproto/protobuf"
import google_protobuf3 "github.com/golang/protobuf/ptypes/struct"
import google_protobuf4 "github.com/golang/protobuf/ptypes/wrappers"
import google_rpc "google.golang.org/genproto/googleapis/rpc/status"
import (
context "golang.org/x/net/context"
grpc "google.golang.org/grpc"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
// When an [Annotation][google.genomics.v1.Annotation] or
// [AnnotationSet][google.genomics.v1.AnnotationSet] is created, if `type` is
// not specified it will be set to `GENERIC`.
type AnnotationType int32
const (
AnnotationType_ANNOTATION_TYPE_UNSPECIFIED AnnotationType = 0
// A `GENERIC` annotation type should be used when no other annotation
// type will suffice. This represents an untyped annotation of the reference
// genome.
AnnotationType_GENERIC AnnotationType = 1
// A `VARIANT` annotation type.
AnnotationType_VARIANT AnnotationType = 2
// A `GENE` annotation type represents the existence of a gene at the
// associated reference coordinates. The start coordinate is typically the
// gene's transcription start site and the end is typically the end of the
// gene's last exon.
AnnotationType_GENE AnnotationType = 3
// A `TRANSCRIPT` annotation type represents the assertion that a
// particular region of the reference genome may be transcribed as RNA.
AnnotationType_TRANSCRIPT AnnotationType = 4
)
var AnnotationType_name = map[int32]string{
0: "ANNOTATION_TYPE_UNSPECIFIED",
1: "GENERIC",
2: "VARIANT",
3: "GENE",
4: "TRANSCRIPT",
}
var AnnotationType_value = map[string]int32{
"ANNOTATION_TYPE_UNSPECIFIED": 0,
"GENERIC": 1,
"VARIANT": 2,
"GENE": 3,
"TRANSCRIPT": 4,
}
func (x AnnotationType) String() string {
return proto.EnumName(AnnotationType_name, int32(x))
}
func (AnnotationType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
type VariantAnnotation_Type int32
const (
VariantAnnotation_TYPE_UNSPECIFIED VariantAnnotation_Type = 0
// `TYPE_OTHER` should be used when no other Type will suffice.
// Further explanation of the variant type may be included in the
// [info][google.genomics.v1.Annotation.info] field.
VariantAnnotation_TYPE_OTHER VariantAnnotation_Type = 1
// `INSERTION` indicates an insertion.
VariantAnnotation_INSERTION VariantAnnotation_Type = 2
// `DELETION` indicates a deletion.
VariantAnnotation_DELETION VariantAnnotation_Type = 3
// `SUBSTITUTION` indicates a block substitution of
// two or more nucleotides.
VariantAnnotation_SUBSTITUTION VariantAnnotation_Type = 4
// `SNP` indicates a single nucleotide polymorphism.
VariantAnnotation_SNP VariantAnnotation_Type = 5
// `STRUCTURAL` indicates a large structural variant,
// including chromosomal fusions, inversions, etc.
VariantAnnotation_STRUCTURAL VariantAnnotation_Type = 6
// `CNV` indicates a variation in copy number.
VariantAnnotation_CNV VariantAnnotation_Type = 7
)
var VariantAnnotation_Type_name = map[int32]string{
0: "TYPE_UNSPECIFIED",
1: "TYPE_OTHER",
2: "INSERTION",
3: "DELETION",
4: "SUBSTITUTION",
5: "SNP",
6: "STRUCTURAL",
7: "CNV",
}
var VariantAnnotation_Type_value = map[string]int32{
"TYPE_UNSPECIFIED": 0,
"TYPE_OTHER": 1,
"INSERTION": 2,
"DELETION": 3,
"SUBSTITUTION": 4,
"SNP": 5,
"STRUCTURAL": 6,
"CNV": 7,
}
func (x VariantAnnotation_Type) String() string {
return proto.EnumName(VariantAnnotation_Type_name, int32(x))
}
func (VariantAnnotation_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{2, 0} }
type VariantAnnotation_Effect int32
const (
VariantAnnotation_EFFECT_UNSPECIFIED VariantAnnotation_Effect = 0
// `EFFECT_OTHER` should be used when no other Effect
// will suffice.
VariantAnnotation_EFFECT_OTHER VariantAnnotation_Effect = 1
// `FRAMESHIFT` indicates a mutation in which the insertion or
// deletion of nucleotides resulted in a frameshift change.
VariantAnnotation_FRAMESHIFT VariantAnnotation_Effect = 2
// `FRAME_PRESERVING_INDEL` indicates a mutation in which a
// multiple of three nucleotides has been inserted or deleted, resulting
// in no change to the reading frame of the coding sequence.
VariantAnnotation_FRAME_PRESERVING_INDEL VariantAnnotation_Effect = 3
// `SYNONYMOUS_SNP` indicates a single nucleotide polymorphism
// mutation that results in no amino acid change.
VariantAnnotation_SYNONYMOUS_SNP VariantAnnotation_Effect = 4
// `NONSYNONYMOUS_SNP` indicates a single nucleotide
// polymorphism mutation that results in an amino acid change.
VariantAnnotation_NONSYNONYMOUS_SNP VariantAnnotation_Effect = 5
// `STOP_GAIN` indicates a mutation that leads to the creation
// of a stop codon at the variant site. Frameshift mutations creating
// downstream stop codons do not count as `STOP_GAIN`.
VariantAnnotation_STOP_GAIN VariantAnnotation_Effect = 6
// `STOP_LOSS` indicates a mutation that eliminates a
// stop codon at the variant site.
VariantAnnotation_STOP_LOSS VariantAnnotation_Effect = 7
// `SPLICE_SITE_DISRUPTION` indicates that this variant is
// found in a splice site for the associated transcript, and alters the
// normal splicing pattern.
VariantAnnotation_SPLICE_SITE_DISRUPTION VariantAnnotation_Effect = 8
)
var VariantAnnotation_Effect_name = map[int32]string{
0: "EFFECT_UNSPECIFIED",
1: "EFFECT_OTHER",
2: "FRAMESHIFT",
3: "FRAME_PRESERVING_INDEL",
4: "SYNONYMOUS_SNP",
5: "NONSYNONYMOUS_SNP",
6: "STOP_GAIN",
7: "STOP_LOSS",
8: "SPLICE_SITE_DISRUPTION",
}
var VariantAnnotation_Effect_value = map[string]int32{
"EFFECT_UNSPECIFIED": 0,
"EFFECT_OTHER": 1,
"FRAMESHIFT": 2,
"FRAME_PRESERVING_INDEL": 3,
"SYNONYMOUS_SNP": 4,
"NONSYNONYMOUS_SNP": 5,
"STOP_GAIN": 6,
"STOP_LOSS": 7,
"SPLICE_SITE_DISRUPTION": 8,
}
func (x VariantAnnotation_Effect) String() string {
return proto.EnumName(VariantAnnotation_Effect_name, int32(x))
}
func (VariantAnnotation_Effect) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{2, 1} }
type VariantAnnotation_ClinicalSignificance int32
const (
VariantAnnotation_CLINICAL_SIGNIFICANCE_UNSPECIFIED VariantAnnotation_ClinicalSignificance = 0
// `OTHER` should be used when no other clinical significance
// value will suffice.
VariantAnnotation_CLINICAL_SIGNIFICANCE_OTHER VariantAnnotation_ClinicalSignificance = 1
VariantAnnotation_UNCERTAIN VariantAnnotation_ClinicalSignificance = 2
VariantAnnotation_BENIGN VariantAnnotation_ClinicalSignificance = 3
VariantAnnotation_LIKELY_BENIGN VariantAnnotation_ClinicalSignificance = 4
VariantAnnotation_LIKELY_PATHOGENIC VariantAnnotation_ClinicalSignificance = 5
VariantAnnotation_PATHOGENIC VariantAnnotation_ClinicalSignificance = 6
VariantAnnotation_DRUG_RESPONSE VariantAnnotation_ClinicalSignificance = 7
VariantAnnotation_HISTOCOMPATIBILITY VariantAnnotation_ClinicalSignificance = 8
VariantAnnotation_CONFERS_SENSITIVITY VariantAnnotation_ClinicalSignificance = 9
VariantAnnotation_RISK_FACTOR VariantAnnotation_ClinicalSignificance = 10
VariantAnnotation_ASSOCIATION VariantAnnotation_ClinicalSignificance = 11
VariantAnnotation_PROTECTIVE VariantAnnotation_ClinicalSignificance = 12
// `MULTIPLE_REPORTED` should be used when multiple clinical
// signficances are reported for a variant. The original clinical
// significance values may be provided in the `info` field.
VariantAnnotation_MULTIPLE_REPORTED VariantAnnotation_ClinicalSignificance = 13
)
var VariantAnnotation_ClinicalSignificance_name = map[int32]string{
0: "CLINICAL_SIGNIFICANCE_UNSPECIFIED",
1: "CLINICAL_SIGNIFICANCE_OTHER",
2: "UNCERTAIN",
3: "BENIGN",
4: "LIKELY_BENIGN",
5: "LIKELY_PATHOGENIC",
6: "PATHOGENIC",
7: "DRUG_RESPONSE",
8: "HISTOCOMPATIBILITY",
9: "CONFERS_SENSITIVITY",
10: "RISK_FACTOR",
11: "ASSOCIATION",
12: "PROTECTIVE",
13: "MULTIPLE_REPORTED",
}
var VariantAnnotation_ClinicalSignificance_value = map[string]int32{
"CLINICAL_SIGNIFICANCE_UNSPECIFIED": 0,
"CLINICAL_SIGNIFICANCE_OTHER": 1,
"UNCERTAIN": 2,
"BENIGN": 3,
"LIKELY_BENIGN": 4,
"LIKELY_PATHOGENIC": 5,
"PATHOGENIC": 6,
"DRUG_RESPONSE": 7,
"HISTOCOMPATIBILITY": 8,
"CONFERS_SENSITIVITY": 9,
"RISK_FACTOR": 10,
"ASSOCIATION": 11,
"PROTECTIVE": 12,
"MULTIPLE_REPORTED": 13,
}
func (x VariantAnnotation_ClinicalSignificance) String() string {
return proto.EnumName(VariantAnnotation_ClinicalSignificance_name, int32(x))
}
func (VariantAnnotation_ClinicalSignificance) EnumDescriptor() ([]byte, []int) {
return fileDescriptor0, []int{2, 2}
}
// An annotation set is a logical grouping of annotations that share consistent
// type information and provenance. Examples of annotation sets include 'all
// genes from refseq', and 'all variant annotations from ClinVar'.
type AnnotationSet struct {
// The server-generated annotation set ID, unique across all annotation sets.
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
// The dataset to which this annotation set belongs.
DatasetId string `protobuf:"bytes,2,opt,name=dataset_id,json=datasetId" json:"dataset_id,omitempty"`
// The ID of the reference set that defines the coordinate space for this
// set's annotations.
ReferenceSetId string `protobuf:"bytes,3,opt,name=reference_set_id,json=referenceSetId" json:"reference_set_id,omitempty"`
// The display name for this annotation set.
Name string `protobuf:"bytes,4,opt,name=name" json:"name,omitempty"`
// The source URI describing the file from which this annotation set was
// generated, if any.
SourceUri string `protobuf:"bytes,5,opt,name=source_uri,json=sourceUri" json:"source_uri,omitempty"`
// The type of annotations contained within this set.
Type AnnotationType `protobuf:"varint,6,opt,name=type,enum=google.genomics.v1.AnnotationType" json:"type,omitempty"`
// A map of additional read alignment information. This must be of the form
// map<string, string[]> (string key mapping to a list of string values).
Info map[string]*google_protobuf3.ListValue `protobuf:"bytes,17,rep,name=info" json:"info,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
}
func (m *AnnotationSet) Reset() { *m = AnnotationSet{} }
func (m *AnnotationSet) String() string { return proto.CompactTextString(m) }
func (*AnnotationSet) ProtoMessage() {}
func (*AnnotationSet) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
func (m *AnnotationSet) GetId() string {
if m != nil {
return m.Id
}
return ""
}
func (m *AnnotationSet) GetDatasetId() string {
if m != nil {
return m.DatasetId
}
return ""
}
func (m *AnnotationSet) GetReferenceSetId() string {
if m != nil {
return m.ReferenceSetId
}
return ""
}
func (m *AnnotationSet) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *AnnotationSet) GetSourceUri() string {
if m != nil {
return m.SourceUri
}
return ""
}
func (m *AnnotationSet) GetType() AnnotationType {
if m != nil {
return m.Type
}
return AnnotationType_ANNOTATION_TYPE_UNSPECIFIED
}
func (m *AnnotationSet) GetInfo() map[string]*google_protobuf3.ListValue {
if m != nil {
return m.Info
}
return nil
}
// An annotation describes a region of reference genome. The value of an
// annotation may be one of several canonical types, supplemented by arbitrary
// info tags. An annotation is not inherently associated with a specific
// sample or individual (though a client could choose to use annotations in
// this way). Example canonical annotation types are `GENE` and
// `VARIANT`.
type Annotation struct {
// The server-generated annotation ID, unique across all annotations.
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
// The annotation set to which this annotation belongs.
AnnotationSetId string `protobuf:"bytes,2,opt,name=annotation_set_id,json=annotationSetId" json:"annotation_set_id,omitempty"`
// The display name of this annotation.
Name string `protobuf:"bytes,3,opt,name=name" json:"name,omitempty"`
// The ID of the Google Genomics reference associated with this range.
ReferenceId string `protobuf:"bytes,4,opt,name=reference_id,json=referenceId" json:"reference_id,omitempty"`
// The display name corresponding to the reference specified by
// `referenceId`, for example `chr1`, `1`, or `chrX`.
ReferenceName string `protobuf:"bytes,5,opt,name=reference_name,json=referenceName" json:"reference_name,omitempty"`
// The start position of the range on the reference, 0-based inclusive.
Start int64 `protobuf:"varint,6,opt,name=start" json:"start,omitempty"`
// The end position of the range on the reference, 0-based exclusive.
End int64 `protobuf:"varint,7,opt,name=end" json:"end,omitempty"`
// Whether this range refers to the reverse strand, as opposed to the forward
// strand. Note that regardless of this field, the start/end position of the
// range always refer to the forward strand.
ReverseStrand bool `protobuf:"varint,8,opt,name=reverse_strand,json=reverseStrand" json:"reverse_strand,omitempty"`
// The data type for this annotation. Must match the containing annotation
// set's type.
Type AnnotationType `protobuf:"varint,9,opt,name=type,enum=google.genomics.v1.AnnotationType" json:"type,omitempty"`
// Types that are valid to be assigned to Value:
// *Annotation_Variant
// *Annotation_Transcript
Value isAnnotation_Value `protobuf_oneof:"value"`
// A map of additional read alignment information. This must be of the form
// map<string, string[]> (string key mapping to a list of string values).
Info map[string]*google_protobuf3.ListValue `protobuf:"bytes,12,rep,name=info" json:"info,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
}
func (m *Annotation) Reset() { *m = Annotation{} }
func (m *Annotation) String() string { return proto.CompactTextString(m) }
func (*Annotation) ProtoMessage() {}
func (*Annotation) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
type isAnnotation_Value interface {
isAnnotation_Value()
}
type Annotation_Variant struct {
Variant *VariantAnnotation `protobuf:"bytes,10,opt,name=variant,oneof"`
}
type Annotation_Transcript struct {
Transcript *Transcript `protobuf:"bytes,11,opt,name=transcript,oneof"`
}
func (*Annotation_Variant) isAnnotation_Value() {}
func (*Annotation_Transcript) isAnnotation_Value() {}
func (m *Annotation) GetValue() isAnnotation_Value {
if m != nil {
return m.Value
}
return nil
}
func (m *Annotation) GetId() string {
if m != nil {
return m.Id
}
return ""
}
func (m *Annotation) GetAnnotationSetId() string {
if m != nil {
return m.AnnotationSetId
}
return ""
}
func (m *Annotation) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *Annotation) GetReferenceId() string {
if m != nil {
return m.ReferenceId
}
return ""
}
func (m *Annotation) GetReferenceName() string {
if m != nil {
return m.ReferenceName
}
return ""
}
func (m *Annotation) GetStart() int64 {
if m != nil {
return m.Start
}
return 0
}
func (m *Annotation) GetEnd() int64 {
if m != nil {
return m.End
}
return 0
}
func (m *Annotation) GetReverseStrand() bool {
if m != nil {
return m.ReverseStrand
}
return false
}
func (m *Annotation) GetType() AnnotationType {
if m != nil {
return m.Type
}
return AnnotationType_ANNOTATION_TYPE_UNSPECIFIED
}
func (m *Annotation) GetVariant() *VariantAnnotation {
if x, ok := m.GetValue().(*Annotation_Variant); ok {
return x.Variant
}
return nil
}
func (m *Annotation) GetTranscript() *Transcript {
if x, ok := m.GetValue().(*Annotation_Transcript); ok {
return x.Transcript
}
return nil
}
func (m *Annotation) GetInfo() map[string]*google_protobuf3.ListValue {
if m != nil {
return m.Info
}
return nil
}
// XXX_OneofFuncs is for the internal use of the proto package.
func (*Annotation) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
return _Annotation_OneofMarshaler, _Annotation_OneofUnmarshaler, _Annotation_OneofSizer, []interface{}{
(*Annotation_Variant)(nil),
(*Annotation_Transcript)(nil),
}
}
func _Annotation_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
m := msg.(*Annotation)
// value
switch x := m.Value.(type) {
case *Annotation_Variant:
b.EncodeVarint(10<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Variant); err != nil {
return err
}
case *Annotation_Transcript:
b.EncodeVarint(11<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Transcript); err != nil {
return err
}
case nil:
default:
return fmt.Errorf("Annotation.Value has unexpected type %T", x)
}
return nil
}
func _Annotation_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
m := msg.(*Annotation)
switch tag {
case 10: // value.variant
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(VariantAnnotation)
err := b.DecodeMessage(msg)
m.Value = &Annotation_Variant{msg}
return true, err
case 11: // value.transcript
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(Transcript)
err := b.DecodeMessage(msg)
m.Value = &Annotation_Transcript{msg}
return true, err
default:
return false, nil
}
}
func _Annotation_OneofSizer(msg proto.Message) (n int) {
m := msg.(*Annotation)
// value
switch x := m.Value.(type) {
case *Annotation_Variant:
s := proto.Size(x.Variant)
n += proto.SizeVarint(10<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Annotation_Transcript:
s := proto.Size(x.Transcript)
n += proto.SizeVarint(11<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case nil:
default:
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
}
return n
}
type VariantAnnotation struct {
// Type has been adapted from ClinVar's list of variant types.
Type VariantAnnotation_Type `protobuf:"varint,1,opt,name=type,enum=google.genomics.v1.VariantAnnotation_Type" json:"type,omitempty"`
// Effect of the variant on the coding sequence.
Effect VariantAnnotation_Effect `protobuf:"varint,2,opt,name=effect,enum=google.genomics.v1.VariantAnnotation_Effect" json:"effect,omitempty"`
// The alternate allele for this variant. If multiple alternate alleles
// exist at this location, create a separate variant for each one, as they
// may represent distinct conditions.
AlternateBases string `protobuf:"bytes,3,opt,name=alternate_bases,json=alternateBases" json:"alternate_bases,omitempty"`
// Google annotation ID of the gene affected by this variant. This should
// be provided when the variant is created.
GeneId string `protobuf:"bytes,4,opt,name=gene_id,json=geneId" json:"gene_id,omitempty"`
// Google annotation IDs of the transcripts affected by this variant. These
// should be provided when the variant is created.
TranscriptIds []string `protobuf:"bytes,5,rep,name=transcript_ids,json=transcriptIds" json:"transcript_ids,omitempty"`
// The set of conditions associated with this variant.
// A condition describes the way a variant influences human health.
Conditions []*VariantAnnotation_ClinicalCondition `protobuf:"bytes,6,rep,name=conditions" json:"conditions,omitempty"`
// Describes the clinical significance of a variant.
// It is adapted from the ClinVar controlled vocabulary for clinical
// significance described at:
// http://www.ncbi.nlm.nih.gov/clinvar/docs/clinsig/
ClinicalSignificance VariantAnnotation_ClinicalSignificance `protobuf:"varint,7,opt,name=clinical_significance,json=clinicalSignificance,enum=google.genomics.v1.VariantAnnotation_ClinicalSignificance" json:"clinical_significance,omitempty"`
}
func (m *VariantAnnotation) Reset() { *m = VariantAnnotation{} }
func (m *VariantAnnotation) String() string { return proto.CompactTextString(m) }
func (*VariantAnnotation) ProtoMessage() {}
func (*VariantAnnotation) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
func (m *VariantAnnotation) GetType() VariantAnnotation_Type {
if m != nil {
return m.Type
}
return VariantAnnotation_TYPE_UNSPECIFIED
}
func (m *VariantAnnotation) GetEffect() VariantAnnotation_Effect {
if m != nil {
return m.Effect
}
return VariantAnnotation_EFFECT_UNSPECIFIED
}
func (m *VariantAnnotation) GetAlternateBases() string {
if m != nil {
return m.AlternateBases
}
return ""
}
func (m *VariantAnnotation) GetGeneId() string {
if m != nil {
return m.GeneId
}
return ""
}
func (m *VariantAnnotation) GetTranscriptIds() []string {
if m != nil {
return m.TranscriptIds
}
return nil
}
func (m *VariantAnnotation) GetConditions() []*VariantAnnotation_ClinicalCondition {
if m != nil {
return m.Conditions
}
return nil
}
func (m *VariantAnnotation) GetClinicalSignificance() VariantAnnotation_ClinicalSignificance {
if m != nil {
return m.ClinicalSignificance
}
return VariantAnnotation_CLINICAL_SIGNIFICANCE_UNSPECIFIED
}
type VariantAnnotation_ClinicalCondition struct {
// A set of names for the condition.
Names []string `protobuf:"bytes,1,rep,name=names" json:"names,omitempty"`
// The set of external IDs for this condition.
ExternalIds []*ExternalId `protobuf:"bytes,2,rep,name=external_ids,json=externalIds" json:"external_ids,omitempty"`
// The MedGen concept id associated with this gene.
// Search for these IDs at http://www.ncbi.nlm.nih.gov/medgen/
ConceptId string `protobuf:"bytes,3,opt,name=concept_id,json=conceptId" json:"concept_id,omitempty"`
// The OMIM id for this condition.
// Search for these IDs at http://omim.org/
OmimId string `protobuf:"bytes,4,opt,name=omim_id,json=omimId" json:"omim_id,omitempty"`
}
func (m *VariantAnnotation_ClinicalCondition) Reset() { *m = VariantAnnotation_ClinicalCondition{} }
func (m *VariantAnnotation_ClinicalCondition) String() string { return proto.CompactTextString(m) }
func (*VariantAnnotation_ClinicalCondition) ProtoMessage() {}
func (*VariantAnnotation_ClinicalCondition) Descriptor() ([]byte, []int) {
return fileDescriptor0, []int{2, 0}
}
func (m *VariantAnnotation_ClinicalCondition) GetNames() []string {
if m != nil {
return m.Names
}
return nil
}
func (m *VariantAnnotation_ClinicalCondition) GetExternalIds() []*ExternalId {
if m != nil {
return m.ExternalIds
}
return nil
}
func (m *VariantAnnotation_ClinicalCondition) GetConceptId() string {
if m != nil {
return m.ConceptId
}
return ""
}
func (m *VariantAnnotation_ClinicalCondition) GetOmimId() string {
if m != nil {
return m.OmimId
}
return ""
}
// A transcript represents the assertion that a particular region of the
// reference genome may be transcribed as RNA.
type Transcript struct {
// The annotation ID of the gene from which this transcript is transcribed.
GeneId string `protobuf:"bytes,1,opt,name=gene_id,json=geneId" json:"gene_id,omitempty"`
// The <a href="http://en.wikipedia.org/wiki/Exon">exons</a> that compose
// this transcript. This field should be unset for genomes where transcript
// splicing does not occur, for example prokaryotes.
//
// Introns are regions of the transcript that are not included in the
// spliced RNA product. Though not explicitly modeled here, intron ranges can
// be deduced; all regions of this transcript that are not exons are introns.
//
// Exonic sequences do not necessarily code for a translational product
// (amino acids). Only the regions of exons bounded by the
// [codingSequence][google.genomics.v1.Transcript.coding_sequence] correspond
// to coding DNA sequence.
//
// Exons are ordered by start position and may not overlap.
Exons []*Transcript_Exon `protobuf:"bytes,2,rep,name=exons" json:"exons,omitempty"`
// The range of the coding sequence for this transcript, if any. To determine
// the exact ranges of coding sequence, intersect this range with those of the
// [exons][google.genomics.v1.Transcript.exons], if any. If there are any
// [exons][google.genomics.v1.Transcript.exons], the
// [codingSequence][google.genomics.v1.Transcript.coding_sequence] must start
// and end within them.
//
// Note that in some cases, the reference genome will not exactly match the
// observed mRNA transcript e.g. due to variance in the source genome from
// reference. In these cases,
// [exon.frame][google.genomics.v1.Transcript.Exon.frame] will not necessarily
// match the expected reference reading frame and coding exon reference bases
// cannot necessarily be concatenated to produce the original transcript mRNA.
CodingSequence *Transcript_CodingSequence `protobuf:"bytes,3,opt,name=coding_sequence,json=codingSequence" json:"coding_sequence,omitempty"`
}
func (m *Transcript) Reset() { *m = Transcript{} }
func (m *Transcript) String() string { return proto.CompactTextString(m) }
func (*Transcript) ProtoMessage() {}
func (*Transcript) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
func (m *Transcript) GetGeneId() string {
if m != nil {
return m.GeneId
}
return ""
}
func (m *Transcript) GetExons() []*Transcript_Exon {
if m != nil {
return m.Exons
}
return nil
}
func (m *Transcript) GetCodingSequence() *Transcript_CodingSequence {
if m != nil {
return m.CodingSequence
}
return nil
}
type Transcript_Exon struct {
// The start position of the exon on this annotation's reference sequence,
// 0-based inclusive. Note that this is relative to the reference start, and
// **not** the containing annotation start.
Start int64 `protobuf:"varint,1,opt,name=start" json:"start,omitempty"`
// The end position of the exon on this annotation's reference sequence,
// 0-based exclusive. Note that this is relative to the reference start, and
// *not* the containing annotation start.
End int64 `protobuf:"varint,2,opt,name=end" json:"end,omitempty"`
// The frame of this exon. Contains a value of 0, 1, or 2, which indicates
// the offset of the first coding base of the exon within the reading frame
// of the coding DNA sequence, if any. This field is dependent on the
// strandedness of this annotation (see
// [Annotation.reverse_strand][google.genomics.v1.Annotation.reverse_strand]).
// For forward stranded annotations, this offset is relative to the
// [exon.start][google.genomics.v1.Transcript.Exon.start]. For reverse
// strand annotations, this offset is relative to the
// [exon.end][google.genomics.v1.Transcript.Exon.end] `- 1`.
//
// Unset if this exon does not intersect the coding sequence. Upon creation
// of a transcript, the frame must be populated for all or none of the
// coding exons.
Frame *google_protobuf4.Int32Value `protobuf:"bytes,3,opt,name=frame" json:"frame,omitempty"`
}
func (m *Transcript_Exon) Reset() { *m = Transcript_Exon{} }
func (m *Transcript_Exon) String() string { return proto.CompactTextString(m) }
func (*Transcript_Exon) ProtoMessage() {}
func (*Transcript_Exon) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3, 0} }
func (m *Transcript_Exon) GetStart() int64 {
if m != nil {
return m.Start
}
return 0
}
func (m *Transcript_Exon) GetEnd() int64 {
if m != nil {
return m.End
}
return 0
}
func (m *Transcript_Exon) GetFrame() *google_protobuf4.Int32Value {
if m != nil {
return m.Frame
}
return nil
}
type Transcript_CodingSequence struct {
// The start of the coding sequence on this annotation's reference sequence,
// 0-based inclusive. Note that this position is relative to the reference
// start, and *not* the containing annotation start.
Start int64 `protobuf:"varint,1,opt,name=start" json:"start,omitempty"`
// The end of the coding sequence on this annotation's reference sequence,
// 0-based exclusive. Note that this position is relative to the reference
// start, and *not* the containing annotation start.
End int64 `protobuf:"varint,2,opt,name=end" json:"end,omitempty"`
}
func (m *Transcript_CodingSequence) Reset() { *m = Transcript_CodingSequence{} }
func (m *Transcript_CodingSequence) String() string { return proto.CompactTextString(m) }
func (*Transcript_CodingSequence) ProtoMessage() {}
func (*Transcript_CodingSequence) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3, 1} }
func (m *Transcript_CodingSequence) GetStart() int64 {
if m != nil {
return m.Start
}
return 0
}
func (m *Transcript_CodingSequence) GetEnd() int64 {
if m != nil {
return m.End
}
return 0
}
type ExternalId struct {
// The name of the source of this data.
SourceName string `protobuf:"bytes,1,opt,name=source_name,json=sourceName" json:"source_name,omitempty"`
// The id used by the source of this data.
Id string `protobuf:"bytes,2,opt,name=id" json:"id,omitempty"`
}
func (m *ExternalId) Reset() { *m = ExternalId{} }
func (m *ExternalId) String() string { return proto.CompactTextString(m) }
func (*ExternalId) ProtoMessage() {}
func (*ExternalId) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
func (m *ExternalId) GetSourceName() string {
if m != nil {
return m.SourceName
}
return ""
}
func (m *ExternalId) GetId() string {
if m != nil {
return m.Id
}
return ""
}
type CreateAnnotationSetRequest struct {
// The annotation set to create.
AnnotationSet *AnnotationSet `protobuf:"bytes,1,opt,name=annotation_set,json=annotationSet" json:"annotation_set,omitempty"`
}
func (m *CreateAnnotationSetRequest) Reset() { *m = CreateAnnotationSetRequest{} }
func (m *CreateAnnotationSetRequest) String() string { return proto.CompactTextString(m) }
func (*CreateAnnotationSetRequest) ProtoMessage() {}
func (*CreateAnnotationSetRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
func (m *CreateAnnotationSetRequest) GetAnnotationSet() *AnnotationSet {
if m != nil {
return m.AnnotationSet
}
return nil
}
type GetAnnotationSetRequest struct {
// The ID of the annotation set to be retrieved.
AnnotationSetId string `protobuf:"bytes,1,opt,name=annotation_set_id,json=annotationSetId" json:"annotation_set_id,omitempty"`
}
func (m *GetAnnotationSetRequest) Reset() { *m = GetAnnotationSetRequest{} }
func (m *GetAnnotationSetRequest) String() string { return proto.CompactTextString(m) }
func (*GetAnnotationSetRequest) ProtoMessage() {}
func (*GetAnnotationSetRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
func (m *GetAnnotationSetRequest) GetAnnotationSetId() string {
if m != nil {
return m.AnnotationSetId
}
return ""
}
type UpdateAnnotationSetRequest struct {
// The ID of the annotation set to be updated.
AnnotationSetId string `protobuf:"bytes,1,opt,name=annotation_set_id,json=annotationSetId" json:"annotation_set_id,omitempty"`
// The new annotation set.
AnnotationSet *AnnotationSet `protobuf:"bytes,2,opt,name=annotation_set,json=annotationSet" json:"annotation_set,omitempty"`
// An optional mask specifying which fields to update. Mutable fields are
// [name][google.genomics.v1.AnnotationSet.name],
// [source_uri][google.genomics.v1.AnnotationSet.source_uri], and
// [info][google.genomics.v1.AnnotationSet.info]. If unspecified, all
// mutable fields will be updated.
UpdateMask *google_protobuf2.FieldMask `protobuf:"bytes,3,opt,name=update_mask,json=updateMask" json:"update_mask,omitempty"`
}
func (m *UpdateAnnotationSetRequest) Reset() { *m = UpdateAnnotationSetRequest{} }
func (m *UpdateAnnotationSetRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateAnnotationSetRequest) ProtoMessage() {}
func (*UpdateAnnotationSetRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
func (m *UpdateAnnotationSetRequest) GetAnnotationSetId() string {
if m != nil {
return m.AnnotationSetId
}
return ""
}
func (m *UpdateAnnotationSetRequest) GetAnnotationSet() *AnnotationSet {
if m != nil {
return m.AnnotationSet
}
return nil
}
func (m *UpdateAnnotationSetRequest) GetUpdateMask() *google_protobuf2.FieldMask {
if m != nil {
return m.UpdateMask
}
return nil
}
type DeleteAnnotationSetRequest struct {
// The ID of the annotation set to be deleted.
AnnotationSetId string `protobuf:"bytes,1,opt,name=annotation_set_id,json=annotationSetId" json:"annotation_set_id,omitempty"`
}
func (m *DeleteAnnotationSetRequest) Reset() { *m = DeleteAnnotationSetRequest{} }
func (m *DeleteAnnotationSetRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteAnnotationSetRequest) ProtoMessage() {}
func (*DeleteAnnotationSetRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
func (m *DeleteAnnotationSetRequest) GetAnnotationSetId() string {
if m != nil {
return m.AnnotationSetId
}
return ""
}
type SearchAnnotationSetsRequest struct {
// Required. The dataset IDs to search within. Caller must have `READ` access
// to these datasets.
DatasetIds []string `protobuf:"bytes,1,rep,name=dataset_ids,json=datasetIds" json:"dataset_ids,omitempty"`
// If specified, only annotation sets associated with the given reference set
// are returned.
ReferenceSetId string `protobuf:"bytes,2,opt,name=reference_set_id,json=referenceSetId" json:"reference_set_id,omitempty"`
// Only return annotations sets for which a substring of the name matches this
// string (case insensitive).
Name string `protobuf:"bytes,3,opt,name=name" json:"name,omitempty"`
// If specified, only annotation sets that have any of these types are
// returned.
Types []AnnotationType `protobuf:"varint,4,rep,packed,name=types,enum=google.genomics.v1.AnnotationType" json:"types,omitempty"`
// The continuation token, which is used to page through large result sets.
// To get the next page of results, set this parameter to the value of
// `nextPageToken` from the previous response.
PageToken string `protobuf:"bytes,5,opt,name=page_token,json=pageToken" json:"page_token,omitempty"`
// The maximum number of results to return in a single page. If unspecified,
// defaults to 128. The maximum value is 1024.
PageSize int32 `protobuf:"varint,6,opt,name=page_size,json=pageSize" json:"page_size,omitempty"`
}
func (m *SearchAnnotationSetsRequest) Reset() { *m = SearchAnnotationSetsRequest{} }
func (m *SearchAnnotationSetsRequest) String() string { return proto.CompactTextString(m) }
func (*SearchAnnotationSetsRequest) ProtoMessage() {}
func (*SearchAnnotationSetsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
func (m *SearchAnnotationSetsRequest) GetDatasetIds() []string {
if m != nil {
return m.DatasetIds
}
return nil
}
func (m *SearchAnnotationSetsRequest) GetReferenceSetId() string {
if m != nil {
return m.ReferenceSetId
}
return ""
}
func (m *SearchAnnotationSetsRequest) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *SearchAnnotationSetsRequest) GetTypes() []AnnotationType {
if m != nil {
return m.Types
}
return nil
}
func (m *SearchAnnotationSetsRequest) GetPageToken() string {
if m != nil {
return m.PageToken
}
return ""
}
func (m *SearchAnnotationSetsRequest) GetPageSize() int32 {
if m != nil {
return m.PageSize
}
return 0
}
type SearchAnnotationSetsResponse struct {
// The matching annotation sets.
AnnotationSets []*AnnotationSet `protobuf:"bytes,1,rep,name=annotation_sets,json=annotationSets" json:"annotation_sets,omitempty"`
// The continuation token, which is used to page through large result sets.
// Provide this value in a subsequent request to return the next page of
// results. This field will be empty if there aren't any additional results.
NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken" json:"next_page_token,omitempty"`
}
func (m *SearchAnnotationSetsResponse) Reset() { *m = SearchAnnotationSetsResponse{} }
func (m *SearchAnnotationSetsResponse) String() string { return proto.CompactTextString(m) }
func (*SearchAnnotationSetsResponse) ProtoMessage() {}
func (*SearchAnnotationSetsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
func (m *SearchAnnotationSetsResponse) GetAnnotationSets() []*AnnotationSet {
if m != nil {
return m.AnnotationSets
}
return nil
}
func (m *SearchAnnotationSetsResponse) GetNextPageToken() string {
if m != nil {
return m.NextPageToken
}
return ""
}
type CreateAnnotationRequest struct {
// The annotation to be created.
Annotation *Annotation `protobuf:"bytes,1,opt,name=annotation" json:"annotation,omitempty"`
}
func (m *CreateAnnotationRequest) Reset() { *m = CreateAnnotationRequest{} }
func (m *CreateAnnotationRequest) String() string { return proto.CompactTextString(m) }
func (*CreateAnnotationRequest) ProtoMessage() {}
func (*CreateAnnotationRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
func (m *CreateAnnotationRequest) GetAnnotation() *Annotation {
if m != nil {
return m.Annotation
}
return nil
}
type BatchCreateAnnotationsRequest struct {
// The annotations to be created. At most 4096 can be specified in a single
// request.
Annotations []*Annotation `protobuf:"bytes,1,rep,name=annotations" json:"annotations,omitempty"`
// A unique request ID which enables the server to detect duplicated requests.
// If provided, duplicated requests will result in the same response; if not
// provided, duplicated requests may result in duplicated data. For a given
// annotation set, callers should not reuse `request_id`s when writing
// different batches of annotations - behavior in this case is undefined.
// A common approach is to use a UUID. For batch jobs where worker crashes are
// a possibility, consider using some unique variant of a worker or run ID.
RequestId string `protobuf:"bytes,2,opt,name=request_id,json=requestId" json:"request_id,omitempty"`
}
func (m *BatchCreateAnnotationsRequest) Reset() { *m = BatchCreateAnnotationsRequest{} }
func (m *BatchCreateAnnotationsRequest) String() string { return proto.CompactTextString(m) }
func (*BatchCreateAnnotationsRequest) ProtoMessage() {}
func (*BatchCreateAnnotationsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
func (m *BatchCreateAnnotationsRequest) GetAnnotations() []*Annotation {
if m != nil {
return m.Annotations
}
return nil
}
func (m *BatchCreateAnnotationsRequest) GetRequestId() string {
if m != nil {
return m.RequestId
}
return ""
}
type BatchCreateAnnotationsResponse struct {
// The resulting per-annotation entries, ordered consistently with the
// original request.
Entries []*BatchCreateAnnotationsResponse_Entry `protobuf:"bytes,1,rep,name=entries" json:"entries,omitempty"`
}
func (m *BatchCreateAnnotationsResponse) Reset() { *m = BatchCreateAnnotationsResponse{} }
func (m *BatchCreateAnnotationsResponse) String() string { return proto.CompactTextString(m) }
func (*BatchCreateAnnotationsResponse) ProtoMessage() {}
func (*BatchCreateAnnotationsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
func (m *BatchCreateAnnotationsResponse) GetEntries() []*BatchCreateAnnotationsResponse_Entry {
if m != nil {
return m.Entries
}
return nil
}
type BatchCreateAnnotationsResponse_Entry struct {
// The creation status.
Status *google_rpc.Status `protobuf:"bytes,1,opt,name=status" json:"status,omitempty"`
// The created annotation, if creation was successful.
Annotation *Annotation `protobuf:"bytes,2,opt,name=annotation" json:"annotation,omitempty"`
}
func (m *BatchCreateAnnotationsResponse_Entry) Reset() { *m = BatchCreateAnnotationsResponse_Entry{} }
func (m *BatchCreateAnnotationsResponse_Entry) String() string { return proto.CompactTextString(m) }
func (*BatchCreateAnnotationsResponse_Entry) ProtoMessage() {}
func (*BatchCreateAnnotationsResponse_Entry) Descriptor() ([]byte, []int) {
return fileDescriptor0, []int{13, 0}
}
func (m *BatchCreateAnnotationsResponse_Entry) GetStatus() *google_rpc.Status {
if m != nil {
return m.Status
}
return nil
}
func (m *BatchCreateAnnotationsResponse_Entry) GetAnnotation() *Annotation {
if m != nil {
return m.Annotation
}
return nil
}
type GetAnnotationRequest struct {
// The ID of the annotation to be retrieved.
AnnotationId string `protobuf:"bytes,1,opt,name=annotation_id,json=annotationId" json:"annotation_id,omitempty"`
}
func (m *GetAnnotationRequest) Reset() { *m = GetAnnotationRequest{} }
func (m *GetAnnotationRequest) String() string { return proto.CompactTextString(m) }
func (*GetAnnotationRequest) ProtoMessage() {}
func (*GetAnnotationRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
func (m *GetAnnotationRequest) GetAnnotationId() string {
if m != nil {
return m.AnnotationId
}
return ""
}
type UpdateAnnotationRequest struct {
// The ID of the annotation to be updated.
AnnotationId string `protobuf:"bytes,1,opt,name=annotation_id,json=annotationId" json:"annotation_id,omitempty"`
// The new annotation.
Annotation *Annotation `protobuf:"bytes,2,opt,name=annotation" json:"annotation,omitempty"`
// An optional mask specifying which fields to update. Mutable fields are
// [name][google.genomics.v1.Annotation.name],
// [variant][google.genomics.v1.Annotation.variant],
// [transcript][google.genomics.v1.Annotation.transcript], and
// [info][google.genomics.v1.Annotation.info]. If unspecified, all mutable
// fields will be updated.
UpdateMask *google_protobuf2.FieldMask `protobuf:"bytes,3,opt,name=update_mask,json=updateMask" json:"update_mask,omitempty"`
}
func (m *UpdateAnnotationRequest) Reset() { *m = UpdateAnnotationRequest{} }
func (m *UpdateAnnotationRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateAnnotationRequest) ProtoMessage() {}
func (*UpdateAnnotationRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} }
func (m *UpdateAnnotationRequest) GetAnnotationId() string {
if m != nil {
return m.AnnotationId
}
return ""
}
func (m *UpdateAnnotationRequest) GetAnnotation() *Annotation {
if m != nil {
return m.Annotation
}
return nil
}
func (m *UpdateAnnotationRequest) GetUpdateMask() *google_protobuf2.FieldMask {
if m != nil {
return m.UpdateMask
}
return nil
}
type DeleteAnnotationRequest struct {
// The ID of the annotation to be deleted.
AnnotationId string `protobuf:"bytes,1,opt,name=annotation_id,json=annotationId" json:"annotation_id,omitempty"`
}
func (m *DeleteAnnotationRequest) Reset() { *m = DeleteAnnotationRequest{} }
func (m *DeleteAnnotationRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteAnnotationRequest) ProtoMessage() {}
func (*DeleteAnnotationRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} }
func (m *DeleteAnnotationRequest) GetAnnotationId() string {
if m != nil {
return m.AnnotationId
}
return ""
}
type SearchAnnotationsRequest struct {
// Required. The annotation sets to search within. The caller must have
// `READ` access to these annotation sets.
// All queried annotation sets must have the same type.
AnnotationSetIds []string `protobuf:"bytes,1,rep,name=annotation_set_ids,json=annotationSetIds" json:"annotation_set_ids,omitempty"`
// Required. `reference_id` or `reference_name` must be set.
//
// Types that are valid to be assigned to Reference:
// *SearchAnnotationsRequest_ReferenceId
// *SearchAnnotationsRequest_ReferenceName
Reference isSearchAnnotationsRequest_Reference `protobuf_oneof:"reference"`
// The start position of the range on the reference, 0-based inclusive. If
// specified,
// [referenceId][google.genomics.v1.SearchAnnotationsRequest.reference_id] or
// [referenceName][google.genomics.v1.SearchAnnotationsRequest.reference_name]
// must be specified. Defaults to 0.
Start int64 `protobuf:"varint,4,opt,name=start" json:"start,omitempty"`
// The end position of the range on the reference, 0-based exclusive. If
// [referenceId][google.genomics.v1.SearchAnnotationsRequest.reference_id] or
// [referenceName][google.genomics.v1.SearchAnnotationsRequest.reference_name]
// must be specified, Defaults to the length of the reference.
End int64 `protobuf:"varint,5,opt,name=end" json:"end,omitempty"`
// The continuation token, which is used to page through large result sets.
// To get the next page of results, set this parameter to the value of
// `nextPageToken` from the previous response.
PageToken string `protobuf:"bytes,6,opt,name=page_token,json=pageToken" json:"page_token,omitempty"`
// The maximum number of results to return in a single page. If unspecified,
// defaults to 256. The maximum value is 2048.
PageSize int32 `protobuf:"varint,7,opt,name=page_size,json=pageSize" json:"page_size,omitempty"`
}
func (m *SearchAnnotationsRequest) Reset() { *m = SearchAnnotationsRequest{} }
func (m *SearchAnnotationsRequest) String() string { return proto.CompactTextString(m) }
func (*SearchAnnotationsRequest) ProtoMessage() {}
func (*SearchAnnotationsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} }
type isSearchAnnotationsRequest_Reference interface {
isSearchAnnotationsRequest_Reference()
}
type SearchAnnotationsRequest_ReferenceId struct {
ReferenceId string `protobuf:"bytes,2,opt,name=reference_id,json=referenceId,oneof"`
}
type SearchAnnotationsRequest_ReferenceName struct {
ReferenceName string `protobuf:"bytes,3,opt,name=reference_name,json=referenceName,oneof"`
}
func (*SearchAnnotationsRequest_ReferenceId) isSearchAnnotationsRequest_Reference() {}
func (*SearchAnnotationsRequest_ReferenceName) isSearchAnnotationsRequest_Reference() {}
func (m *SearchAnnotationsRequest) GetReference() isSearchAnnotationsRequest_Reference {
if m != nil {
return m.Reference
}
return nil
}
func (m *SearchAnnotationsRequest) GetAnnotationSetIds() []string {
if m != nil {
return m.AnnotationSetIds
}
return nil
}
func (m *SearchAnnotationsRequest) GetReferenceId() string {
if x, ok := m.GetReference().(*SearchAnnotationsRequest_ReferenceId); ok {
return x.ReferenceId
}
return ""
}
func (m *SearchAnnotationsRequest) GetReferenceName() string {
if x, ok := m.GetReference().(*SearchAnnotationsRequest_ReferenceName); ok {
return x.ReferenceName
}
return ""
}
func (m *SearchAnnotationsRequest) GetStart() int64 {
if m != nil {
return m.Start
}
return 0
}
func (m *SearchAnnotationsRequest) GetEnd() int64 {
if m != nil {
return m.End
}
return 0
}
func (m *SearchAnnotationsRequest) GetPageToken() string {
if m != nil {
return m.PageToken
}
return ""
}
func (m *SearchAnnotationsRequest) GetPageSize() int32 {
if m != nil {
return m.PageSize
}
return 0
}
// XXX_OneofFuncs is for the internal use of the proto package.
func (*SearchAnnotationsRequest) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
return _SearchAnnotationsRequest_OneofMarshaler, _SearchAnnotationsRequest_OneofUnmarshaler, _SearchAnnotationsRequest_OneofSizer, []interface{}{
(*SearchAnnotationsRequest_ReferenceId)(nil),
(*SearchAnnotationsRequest_ReferenceName)(nil),
}
}
func _SearchAnnotationsRequest_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
m := msg.(*SearchAnnotationsRequest)
// reference
switch x := m.Reference.(type) {
case *SearchAnnotationsRequest_ReferenceId:
b.EncodeVarint(2<<3 | proto.WireBytes)
b.EncodeStringBytes(x.ReferenceId)
case *SearchAnnotationsRequest_ReferenceName:
b.EncodeVarint(3<<3 | proto.WireBytes)
b.EncodeStringBytes(x.ReferenceName)
case nil:
default:
return fmt.Errorf("SearchAnnotationsRequest.Reference has unexpected type %T", x)
}
return nil
}
func _SearchAnnotationsRequest_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
m := msg.(*SearchAnnotationsRequest)
switch tag {
case 2: // reference.reference_id
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
x, err := b.DecodeStringBytes()
m.Reference = &SearchAnnotationsRequest_ReferenceId{x}
return true, err
case 3: // reference.reference_name
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
x, err := b.DecodeStringBytes()
m.Reference = &SearchAnnotationsRequest_ReferenceName{x}
return true, err
default:
return false, nil
}
}
func _SearchAnnotationsRequest_OneofSizer(msg proto.Message) (n int) {
m := msg.(*SearchAnnotationsRequest)
// reference
switch x := m.Reference.(type) {
case *SearchAnnotationsRequest_ReferenceId:
n += proto.SizeVarint(2<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(len(x.ReferenceId)))
n += len(x.ReferenceId)
case *SearchAnnotationsRequest_ReferenceName:
n += proto.SizeVarint(3<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(len(x.ReferenceName)))
n += len(x.ReferenceName)
case nil:
default:
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
}
return n
}
type SearchAnnotationsResponse struct {
// The matching annotations.
Annotations []*Annotation `protobuf:"bytes,1,rep,name=annotations" json:"annotations,omitempty"`
// The continuation token, which is used to page through large result sets.
// Provide this value in a subsequent request to return the next page of
// results. This field will be empty if there aren't any additional results.
NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken" json:"next_page_token,omitempty"`
}
func (m *SearchAnnotationsResponse) Reset() { *m = SearchAnnotationsResponse{} }
func (m *SearchAnnotationsResponse) String() string { return proto.CompactTextString(m) }
func (*SearchAnnotationsResponse) ProtoMessage() {}
func (*SearchAnnotationsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} }
func (m *SearchAnnotationsResponse) GetAnnotations() []*Annotation {
if m != nil {
return m.Annotations
}
return nil
}
func (m *SearchAnnotationsResponse) GetNextPageToken() string {
if m != nil {
return m.NextPageToken
}
return ""
}
func init() {
proto.RegisterType((*AnnotationSet)(nil), "google.genomics.v1.AnnotationSet")
proto.RegisterType((*Annotation)(nil), "google.genomics.v1.Annotation")
proto.RegisterType((*VariantAnnotation)(nil), "google.genomics.v1.VariantAnnotation")
proto.RegisterType((*VariantAnnotation_ClinicalCondition)(nil), "google.genomics.v1.VariantAnnotation.ClinicalCondition")
proto.RegisterType((*Transcript)(nil), "google.genomics.v1.Transcript")
proto.RegisterType((*Transcript_Exon)(nil), "google.genomics.v1.Transcript.Exon")
proto.RegisterType((*Transcript_CodingSequence)(nil), "google.genomics.v1.Transcript.CodingSequence")
proto.RegisterType((*ExternalId)(nil), "google.genomics.v1.ExternalId")
proto.RegisterType((*CreateAnnotationSetRequest)(nil), "google.genomics.v1.CreateAnnotationSetRequest")
proto.RegisterType((*GetAnnotationSetRequest)(nil), "google.genomics.v1.GetAnnotationSetRequest")
proto.RegisterType((*UpdateAnnotationSetRequest)(nil), "google.genomics.v1.UpdateAnnotationSetRequest")
proto.RegisterType((*DeleteAnnotationSetRequest)(nil), "google.genomics.v1.DeleteAnnotationSetRequest")
proto.RegisterType((*SearchAnnotationSetsRequest)(nil), "google.genomics.v1.SearchAnnotationSetsRequest")
proto.RegisterType((*SearchAnnotationSetsResponse)(nil), "google.genomics.v1.SearchAnnotationSetsResponse")
proto.RegisterType((*CreateAnnotationRequest)(nil), "google.genomics.v1.CreateAnnotationRequest")
proto.RegisterType((*BatchCreateAnnotationsRequest)(nil), "google.genomics.v1.BatchCreateAnnotationsRequest")
proto.RegisterType((*BatchCreateAnnotationsResponse)(nil), "google.genomics.v1.BatchCreateAnnotationsResponse")
proto.RegisterType((*BatchCreateAnnotationsResponse_Entry)(nil), "google.genomics.v1.BatchCreateAnnotationsResponse.Entry")
proto.RegisterType((*GetAnnotationRequest)(nil), "google.genomics.v1.GetAnnotationRequest")
proto.RegisterType((*UpdateAnnotationRequest)(nil), "google.genomics.v1.UpdateAnnotationRequest")
proto.RegisterType((*DeleteAnnotationRequest)(nil), "google.genomics.v1.DeleteAnnotationRequest")
proto.RegisterType((*SearchAnnotationsRequest)(nil), "google.genomics.v1.SearchAnnotationsRequest")
proto.RegisterType((*SearchAnnotationsResponse)(nil), "google.genomics.v1.SearchAnnotationsResponse")
proto.RegisterEnum("google.genomics.v1.AnnotationType", AnnotationType_name, AnnotationType_value)
proto.RegisterEnum("google.genomics.v1.VariantAnnotation_Type", VariantAnnotation_Type_name, VariantAnnotation_Type_value)
proto.RegisterEnum("google.genomics.v1.VariantAnnotation_Effect", VariantAnnotation_Effect_name, VariantAnnotation_Effect_value)
proto.RegisterEnum("google.genomics.v1.VariantAnnotation_ClinicalSignificance", VariantAnnotation_ClinicalSignificance_name, VariantAnnotation_ClinicalSignificance_value)
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConn
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion4
// Client API for AnnotationServiceV1 service
type AnnotationServiceV1Client interface {
// Creates a new annotation set. Caller must have WRITE permission for the
// associated dataset.
//
// The following fields are required:
//
// * [datasetId][google.genomics.v1.AnnotationSet.dataset_id]
// * [referenceSetId][google.genomics.v1.AnnotationSet.reference_set_id]
//
// All other fields may be optionally specified, unless documented as being
// server-generated (for example, the `id` field).
CreateAnnotationSet(ctx context.Context, in *CreateAnnotationSetRequest, opts ...grpc.CallOption) (*AnnotationSet, error)
// Gets an annotation set. Caller must have READ permission for
// the associated dataset.
GetAnnotationSet(ctx context.Context, in *GetAnnotationSetRequest, opts ...grpc.CallOption) (*AnnotationSet, error)
// Updates an annotation set. The update must respect all mutability
// restrictions and other invariants described on the annotation set resource.
// Caller must have WRITE permission for the associated dataset.
UpdateAnnotationSet(ctx context.Context, in *UpdateAnnotationSetRequest, opts ...grpc.CallOption) (*AnnotationSet, error)
// Deletes an annotation set. Caller must have WRITE permission
// for the associated annotation set.
DeleteAnnotationSet(ctx context.Context, in *DeleteAnnotationSetRequest, opts ...grpc.CallOption) (*google_protobuf1.Empty, error)
// Searches for annotation sets that match the given criteria. Annotation sets
// are returned in an unspecified order. This order is consistent, such that
// two queries for the same content (regardless of page size) yield annotation
// sets in the same order across their respective streams of paginated
// responses. Caller must have READ permission for the queried datasets.
SearchAnnotationSets(ctx context.Context, in *SearchAnnotationSetsRequest, opts ...grpc.CallOption) (*SearchAnnotationSetsResponse, error)
// Creates a new annotation. Caller must have WRITE permission
// for the associated annotation set.
//
// The following fields are required:
//
// * [annotationSetId][google.genomics.v1.Annotation.annotation_set_id]
// * [referenceName][google.genomics.v1.Annotation.reference_name] or
// [referenceId][google.genomics.v1.Annotation.reference_id]
//
// ### Transcripts
//
// For annotations of type TRANSCRIPT, the following fields of
// [transcript][google.genomics.v1.Annotation.transcript] must be provided:
//
// * [exons.start][google.genomics.v1.Transcript.Exon.start]
// * [exons.end][google.genomics.v1.Transcript.Exon.end]
//
// All other fields may be optionally specified, unless documented as being
// server-generated (for example, the `id` field). The annotated
// range must be no longer than 100Mbp (mega base pairs). See the
// [Annotation resource][google.genomics.v1.Annotation]
// for additional restrictions on each field.
CreateAnnotation(ctx context.Context, in *CreateAnnotationRequest, opts ...grpc.CallOption) (*Annotation, error)
// Creates one or more new annotations atomically. All annotations must
// belong to the same annotation set. Caller must have WRITE
// permission for this annotation set. For optimal performance, batch
// positionally adjacent annotations together.
//
// If the request has a systemic issue, such as an attempt to write to
// an inaccessible annotation set, the entire RPC will fail accordingly. For
// lesser data issues, when possible an error will be isolated to the
// corresponding batch entry in the response; the remaining well formed
// annotations will be created normally.
//
// For details on the requirements for each individual annotation resource,
// see
// [CreateAnnotation][google.genomics.v1.AnnotationServiceV1.CreateAnnotation].
BatchCreateAnnotations(ctx context.Context, in *BatchCreateAnnotationsRequest, opts ...grpc.CallOption) (*BatchCreateAnnotationsResponse, error)
// Gets an annotation. Caller must have READ permission
// for the associated annotation set.
GetAnnotation(ctx context.Context, in *GetAnnotationRequest, opts ...grpc.CallOption) (*Annotation, error)
// Updates an annotation. Caller must have
// WRITE permission for the associated dataset.
UpdateAnnotation(ctx context.Context, in *UpdateAnnotationRequest, opts ...grpc.CallOption) (*Annotation, error)
// Deletes an annotation. Caller must have WRITE permission for
// the associated annotation set.
DeleteAnnotation(ctx context.Context, in *DeleteAnnotationRequest, opts ...grpc.CallOption) (*google_protobuf1.Empty, error)
// Searches for annotations that match the given criteria. Results are
// ordered by genomic coordinate (by reference sequence, then position).
// Annotations with equivalent genomic coordinates are returned in an
// unspecified order. This order is consistent, such that two queries for the
// same content (regardless of page size) yield annotations in the same order
// across their respective streams of paginated responses. Caller must have
// READ permission for the queried annotation sets.
SearchAnnotations(ctx context.Context, in *SearchAnnotationsRequest, opts ...grpc.CallOption) (*SearchAnnotationsResponse, error)
}
type annotationServiceV1Client struct {
cc *grpc.ClientConn
}
func NewAnnotationServiceV1Client(cc *grpc.ClientConn) AnnotationServiceV1Client {
return &annotationServiceV1Client{cc}
}
func (c *annotationServiceV1Client) CreateAnnotationSet(ctx context.Context, in *CreateAnnotationSetRequest, opts ...grpc.CallOption) (*AnnotationSet, error) {
out := new(AnnotationSet)
err := grpc.Invoke(ctx, "/google.genomics.v1.AnnotationServiceV1/CreateAnnotationSet", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *annotationServiceV1Client) GetAnnotationSet(ctx context.Context, in *GetAnnotationSetRequest, opts ...grpc.CallOption) (*AnnotationSet, error) {
out := new(AnnotationSet)
err := grpc.Invoke(ctx, "/google.genomics.v1.AnnotationServiceV1/GetAnnotationSet", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *annotationServiceV1Client) UpdateAnnotationSet(ctx context.Context, in *UpdateAnnotationSetRequest, opts ...grpc.CallOption) (*AnnotationSet, error) {
out := new(AnnotationSet)
err := grpc.Invoke(ctx, "/google.genomics.v1.AnnotationServiceV1/UpdateAnnotationSet", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *annotationServiceV1Client) DeleteAnnotationSet(ctx context.Context, in *DeleteAnnotationSetRequest, opts ...grpc.CallOption) (*google_protobuf1.Empty, error) {
out := new(google_protobuf1.Empty)
err := grpc.Invoke(ctx, "/google.genomics.v1.AnnotationServiceV1/DeleteAnnotationSet", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *annotationServiceV1Client) SearchAnnotationSets(ctx context.Context, in *SearchAnnotationSetsRequest, opts ...grpc.CallOption) (*SearchAnnotationSetsResponse, error) {
out := new(SearchAnnotationSetsResponse)
err := grpc.Invoke(ctx, "/google.genomics.v1.AnnotationServiceV1/SearchAnnotationSets", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *annotationServiceV1Client) CreateAnnotation(ctx context.Context, in *CreateAnnotationRequest, opts ...grpc.CallOption) (*Annotation, error) {
out := new(Annotation)
err := grpc.Invoke(ctx, "/google.genomics.v1.AnnotationServiceV1/CreateAnnotation", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *annotationServiceV1Client) BatchCreateAnnotations(ctx context.Context, in *BatchCreateAnnotationsRequest, opts ...grpc.CallOption) (*BatchCreateAnnotationsResponse, error) {
out := new(BatchCreateAnnotationsResponse)
err := grpc.Invoke(ctx, "/google.genomics.v1.AnnotationServiceV1/BatchCreateAnnotations", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *annotationServiceV1Client) GetAnnotation(ctx context.Context, in *GetAnnotationRequest, opts ...grpc.CallOption) (*Annotation, error) {
out := new(Annotation)
err := grpc.Invoke(ctx, "/google.genomics.v1.AnnotationServiceV1/GetAnnotation", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *annotationServiceV1Client) UpdateAnnotation(ctx context.Context, in *UpdateAnnotationRequest, opts ...grpc.CallOption) (*Annotation, error) {
out := new(Annotation)
err := grpc.Invoke(ctx, "/google.genomics.v1.AnnotationServiceV1/UpdateAnnotation", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *annotationServiceV1Client) DeleteAnnotation(ctx context.Context, in *DeleteAnnotationRequest, opts ...grpc.CallOption) (*google_protobuf1.Empty, error) {
out := new(google_protobuf1.Empty)
err := grpc.Invoke(ctx, "/google.genomics.v1.AnnotationServiceV1/DeleteAnnotation", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *annotationServiceV1Client) SearchAnnotations(ctx context.Context, in *SearchAnnotationsRequest, opts ...grpc.CallOption) (*SearchAnnotationsResponse, error) {
out := new(SearchAnnotationsResponse)
err := grpc.Invoke(ctx, "/google.genomics.v1.AnnotationServiceV1/SearchAnnotations", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// Server API for AnnotationServiceV1 service
type AnnotationServiceV1Server interface {
// Creates a new annotation set. Caller must have WRITE permission for the
// associated dataset.
//
// The following fields are required:
//
// * [datasetId][google.genomics.v1.AnnotationSet.dataset_id]
// * [referenceSetId][google.genomics.v1.AnnotationSet.reference_set_id]
//
// All other fields may be optionally specified, unless documented as being
// server-generated (for example, the `id` field).
CreateAnnotationSet(context.Context, *CreateAnnotationSetRequest) (*AnnotationSet, error)
// Gets an annotation set. Caller must have READ permission for
// the associated dataset.
GetAnnotationSet(context.Context, *GetAnnotationSetRequest) (*AnnotationSet, error)
// Updates an annotation set. The update must respect all mutability
// restrictions and other invariants described on the annotation set resource.
// Caller must have WRITE permission for the associated dataset.
UpdateAnnotationSet(context.Context, *UpdateAnnotationSetRequest) (*AnnotationSet, error)
// Deletes an annotation set. Caller must have WRITE permission
// for the associated annotation set.
DeleteAnnotationSet(context.Context, *DeleteAnnotationSetRequest) (*google_protobuf1.Empty, error)
// Searches for annotation sets that match the given criteria. Annotation sets
// are returned in an unspecified order. This order is consistent, such that
// two queries for the same content (regardless of page size) yield annotation
// sets in the same order across their respective streams of paginated
// responses. Caller must have READ permission for the queried datasets.
SearchAnnotationSets(context.Context, *SearchAnnotationSetsRequest) (*SearchAnnotationSetsResponse, error)
// Creates a new annotation. Caller must have WRITE permission
// for the associated annotation set.
//
// The following fields are required:
//
// * [annotationSetId][google.genomics.v1.Annotation.annotation_set_id]
// * [referenceName][google.genomics.v1.Annotation.reference_name] or
// [referenceId][google.genomics.v1.Annotation.reference_id]
//
// ### Transcripts
//
// For annotations of type TRANSCRIPT, the following fields of
// [transcript][google.genomics.v1.Annotation.transcript] must be provided:
//
// * [exons.start][google.genomics.v1.Transcript.Exon.start]
// * [exons.end][google.genomics.v1.Transcript.Exon.end]
//
// All other fields may be optionally specified, unless documented as being
// server-generated (for example, the `id` field). The annotated
// range must be no longer than 100Mbp (mega base pairs). See the
// [Annotation resource][google.genomics.v1.Annotation]
// for additional restrictions on each field.
CreateAnnotation(context.Context, *CreateAnnotationRequest) (*Annotation, error)
// Creates one or more new annotations atomically. All annotations must
// belong to the same annotation set. Caller must have WRITE
// permission for this annotation set. For optimal performance, batch
// positionally adjacent annotations together.
//
// If the request has a systemic issue, such as an attempt to write to
// an inaccessible annotation set, the entire RPC will fail accordingly. For
// lesser data issues, when possible an error will be isolated to the
// corresponding batch entry in the response; the remaining well formed
// annotations will be created normally.
//
// For details on the requirements for each individual annotation resource,
// see
// [CreateAnnotation][google.genomics.v1.AnnotationServiceV1.CreateAnnotation].
BatchCreateAnnotations(context.Context, *BatchCreateAnnotationsRequest) (*BatchCreateAnnotationsResponse, error)
// Gets an annotation. Caller must have READ permission
// for the associated annotation set.
GetAnnotation(context.Context, *GetAnnotationRequest) (*Annotation, error)
// Updates an annotation. Caller must have
// WRITE permission for the associated dataset.
UpdateAnnotation(context.Context, *UpdateAnnotationRequest) (*Annotation, error)
// Deletes an annotation. Caller must have WRITE permission for
// the associated annotation set.
DeleteAnnotation(context.Context, *DeleteAnnotationRequest) (*google_protobuf1.Empty, error)
// Searches for annotations that match the given criteria. Results are
// ordered by genomic coordinate (by reference sequence, then position).
// Annotations with equivalent genomic coordinates are returned in an
// unspecified order. This order is consistent, such that two queries for the
// same content (regardless of page size) yield annotations in the same order
// across their respective streams of paginated responses. Caller must have
// READ permission for the queried annotation sets.
SearchAnnotations(context.Context, *SearchAnnotationsRequest) (*SearchAnnotationsResponse, error)
}
func RegisterAnnotationServiceV1Server(s *grpc.Server, srv AnnotationServiceV1Server) {
s.RegisterService(&_AnnotationServiceV1_serviceDesc, srv)
}
func _AnnotationServiceV1_CreateAnnotationSet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateAnnotationSetRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AnnotationServiceV1Server).CreateAnnotationSet(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.genomics.v1.AnnotationServiceV1/CreateAnnotationSet",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AnnotationServiceV1Server).CreateAnnotationSet(ctx, req.(*CreateAnnotationSetRequest))
}
return interceptor(ctx, in, info, handler)
}
func _AnnotationServiceV1_GetAnnotationSet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetAnnotationSetRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AnnotationServiceV1Server).GetAnnotationSet(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.genomics.v1.AnnotationServiceV1/GetAnnotationSet",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AnnotationServiceV1Server).GetAnnotationSet(ctx, req.(*GetAnnotationSetRequest))
}
return interceptor(ctx, in, info, handler)
}
func _AnnotationServiceV1_UpdateAnnotationSet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdateAnnotationSetRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AnnotationServiceV1Server).UpdateAnnotationSet(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.genomics.v1.AnnotationServiceV1/UpdateAnnotationSet",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AnnotationServiceV1Server).UpdateAnnotationSet(ctx, req.(*UpdateAnnotationSetRequest))
}
return interceptor(ctx, in, info, handler)
}
func _AnnotationServiceV1_DeleteAnnotationSet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteAnnotationSetRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AnnotationServiceV1Server).DeleteAnnotationSet(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.genomics.v1.AnnotationServiceV1/DeleteAnnotationSet",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AnnotationServiceV1Server).DeleteAnnotationSet(ctx, req.(*DeleteAnnotationSetRequest))
}
return interceptor(ctx, in, info, handler)
}
func _AnnotationServiceV1_SearchAnnotationSets_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SearchAnnotationSetsRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AnnotationServiceV1Server).SearchAnnotationSets(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.genomics.v1.AnnotationServiceV1/SearchAnnotationSets",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AnnotationServiceV1Server).SearchAnnotationSets(ctx, req.(*SearchAnnotationSetsRequest))
}
return interceptor(ctx, in, info, handler)
}
func _AnnotationServiceV1_CreateAnnotation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateAnnotationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AnnotationServiceV1Server).CreateAnnotation(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.genomics.v1.AnnotationServiceV1/CreateAnnotation",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AnnotationServiceV1Server).CreateAnnotation(ctx, req.(*CreateAnnotationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _AnnotationServiceV1_BatchCreateAnnotations_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(BatchCreateAnnotationsRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AnnotationServiceV1Server).BatchCreateAnnotations(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.genomics.v1.AnnotationServiceV1/BatchCreateAnnotations",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AnnotationServiceV1Server).BatchCreateAnnotations(ctx, req.(*BatchCreateAnnotationsRequest))
}
return interceptor(ctx, in, info, handler)
}
func _AnnotationServiceV1_GetAnnotation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetAnnotationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AnnotationServiceV1Server).GetAnnotation(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.genomics.v1.AnnotationServiceV1/GetAnnotation",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AnnotationServiceV1Server).GetAnnotation(ctx, req.(*GetAnnotationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _AnnotationServiceV1_UpdateAnnotation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdateAnnotationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AnnotationServiceV1Server).UpdateAnnotation(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.genomics.v1.AnnotationServiceV1/UpdateAnnotation",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AnnotationServiceV1Server).UpdateAnnotation(ctx, req.(*UpdateAnnotationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _AnnotationServiceV1_DeleteAnnotation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteAnnotationRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AnnotationServiceV1Server).DeleteAnnotation(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.genomics.v1.AnnotationServiceV1/DeleteAnnotation",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AnnotationServiceV1Server).DeleteAnnotation(ctx, req.(*DeleteAnnotationRequest))
}
return interceptor(ctx, in, info, handler)
}
func _AnnotationServiceV1_SearchAnnotations_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SearchAnnotationsRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AnnotationServiceV1Server).SearchAnnotations(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.genomics.v1.AnnotationServiceV1/SearchAnnotations",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AnnotationServiceV1Server).SearchAnnotations(ctx, req.(*SearchAnnotationsRequest))
}
return interceptor(ctx, in, info, handler)
}
var _AnnotationServiceV1_serviceDesc = grpc.ServiceDesc{
ServiceName: "google.genomics.v1.AnnotationServiceV1",
HandlerType: (*AnnotationServiceV1Server)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "CreateAnnotationSet",
Handler: _AnnotationServiceV1_CreateAnnotationSet_Handler,
},
{
MethodName: "GetAnnotationSet",
Handler: _AnnotationServiceV1_GetAnnotationSet_Handler,
},
{
MethodName: "UpdateAnnotationSet",
Handler: _AnnotationServiceV1_UpdateAnnotationSet_Handler,
},
{
MethodName: "DeleteAnnotationSet",
Handler: _AnnotationServiceV1_DeleteAnnotationSet_Handler,
},
{
MethodName: "SearchAnnotationSets",
Handler: _AnnotationServiceV1_SearchAnnotationSets_Handler,
},
{
MethodName: "CreateAnnotation",
Handler: _AnnotationServiceV1_CreateAnnotation_Handler,
},
{
MethodName: "BatchCreateAnnotations",
Handler: _AnnotationServiceV1_BatchCreateAnnotations_Handler,
},
{
MethodName: "GetAnnotation",
Handler: _AnnotationServiceV1_GetAnnotation_Handler,
},
{
MethodName: "UpdateAnnotation",
Handler: _AnnotationServiceV1_UpdateAnnotation_Handler,
},
{
MethodName: "DeleteAnnotation",
Handler: _AnnotationServiceV1_DeleteAnnotation_Handler,
},
{
MethodName: "SearchAnnotations",
Handler: _AnnotationServiceV1_SearchAnnotations_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "google.golang.org/genproto/googleapis/genomics/v1/annotations.proto",
}
func init() {
proto.RegisterFile("google.golang.org/genproto/googleapis/genomics/v1/annotations.proto", fileDescriptor0)
}
var fileDescriptor0 = []byte{
// 2215 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xbc, 0x58, 0xcd, 0x6f, 0xdb, 0xc8,
0x15, 0x0f, 0xf5, 0x69, 0x3f, 0xd9, 0x32, 0x3d, 0xf1, 0xda, 0x5a, 0xb9, 0x9b, 0x38, 0xcc, 0x26,
0x31, 0xdc, 0x44, 0xda, 0x28, 0xfd, 0xc8, 0x66, 0xbb, 0xe9, 0xca, 0x34, 0x6d, 0x4f, 0x57, 0xa6,
0x04, 0x92, 0x72, 0xe1, 0x13, 0x41, 0x53, 0x23, 0x85, 0x88, 0x4d, 0xaa, 0x24, 0xed, 0xc6, 0x5b,
0x2c, 0xb0, 0x58, 0x6c, 0xd1, 0x53, 0x2f, 0xbb, 0x7b, 0xef, 0xa5, 0x40, 0xfb, 0x3f, 0xf4, 0x52,
0xa0, 0xf7, 0xf6, 0x50, 0xf4, 0x3f, 0xe8, 0x65, 0xaf, 0x3d, 0x15, 0xe8, 0xa5, 0x98, 0x21, 0x25,
0x51, 0x14, 0x65, 0xc9, 0x0d, 0xd0, 0x8b, 0x4d, 0x3e, 0xce, 0x7b, 0xf3, 0x9b, 0xdf, 0xbc, 0x4f,
0x81, 0xd8, 0x73, 0x9c, 0xde, 0x19, 0xa9, 0xf4, 0x9c, 0x33, 0xc3, 0xee, 0x55, 0x1c, 0xb7, 0x57,
0xed, 0x11, 0xbb, 0xef, 0x3a, 0xbe, 0x53, 0x0d, 0x3e, 0x19, 0x7d, 0xcb, 0xa3, 0x32, 0xe7, 0xdc,
0x32, 0xbd, 0xea, 0xe5, 0xd3, 0xaa, 0x61, 0xdb, 0x8e, 0x6f, 0xf8, 0x96, 0x63, 0x7b, 0x15, 0xb6,
0x10, 0xa1, 0x81, 0x91, 0x70, 0x55, 0xe5, 0xf2, 0x69, 0x19, 0xcf, 0x67, 0xd8, 0xe8, 0x5b, 0x55,
0x8f, 0xb8, 0x97, 0x96, 0x49, 0x4c, 0xc7, 0xee, 0x5a, 0xbd, 0x49, 0xf3, 0xe5, 0x67, 0x3d, 0xcb,
0x7f, 0x75, 0x71, 0x5a, 0x31, 0x9d, 0xf3, 0x6a, 0x60, 0xae, 0xca, 0x3e, 0x9c, 0x5e, 0x74, 0xab,
0x7d, 0xff, 0xaa, 0x4f, 0xbc, 0x2a, 0x39, 0xef, 0xfb, 0x57, 0xc1, 0xdf, 0x50, 0xe9, 0x07, 0xd7,
0xec, 0x3f, 0xd4, 0xee, 0x5a, 0xe4, 0xac, 0xa3, 0x9f, 0x1b, 0xde, 0xeb, 0x50, 0xeb, 0x87, 0xb3,
0xb7, 0xf2, 0x7c, 0xf7, 0xc2, 0xf4, 0xc3, 0x7f, 0xa1, 0xda, 0x87, 0xb3, 0xd5, 0x7e, 0xe9, 0x1a,
0xfd, 0x3e, 0x71, 0x47, 0x0f, 0xa1, 0xea, 0xc7, 0xf3, 0xf1, 0xe4, 0xf6, 0xcd, 0xaa, 0xe7, 0x1b,
0xfe, 0x85, 0x17, 0xfe, 0x0b, 0xd4, 0x85, 0xef, 0x52, 0xb0, 0x5c, 0x1f, 0x32, 0xa6, 0x12, 0x1f,
0x15, 0x21, 0x65, 0x75, 0x4a, 0xdc, 0x16, 0xb7, 0xbd, 0xa8, 0xa4, 0xac, 0x0e, 0x7a, 0x0f, 0xa0,
0x63, 0xf8, 0x86, 0x47, 0x7c, 0xdd, 0xea, 0x94, 0x52, 0x4c, 0xbe, 0x18, 0x4a, 0x70, 0x07, 0x6d,
0x03, 0xef, 0x92, 0x2e, 0x71, 0x89, 0x6d, 0x12, 0x3d, 0x5c, 0x94, 0x66, 0x8b, 0x8a, 0x43, 0xb9,
0xca, 0x56, 0x22, 0xc8, 0xd8, 0xc6, 0x39, 0x29, 0x65, 0xd8, 0x57, 0xf6, 0x4c, 0x8d, 0x7b, 0xce,
0x85, 0x6b, 0x12, 0xfd, 0xc2, 0xb5, 0x4a, 0xd9, 0xc0, 0x78, 0x20, 0x69, 0xbb, 0x16, 0xfa, 0x11,
0x64, 0xe8, 0xe9, 0x4b, 0xb9, 0x2d, 0x6e, 0xbb, 0x58, 0x13, 0x2a, 0x93, 0x7e, 0x52, 0x19, 0x81,
0xd7, 0xae, 0xfa, 0x44, 0x61, 0xeb, 0xd1, 0x4f, 0x21, 0x63, 0xd9, 0x5d, 0xa7, 0xb4, 0xba, 0x95,
0xde, 0x2e, 0xd4, 0xbe, 0x7f, 0xbd, 0x9e, 0x4a, 0xfc, 0x0a, 0xb6, 0xbb, 0x8e, 0x64, 0xfb, 0xee,
0x95, 0xc2, 0x14, 0xcb, 0x2a, 0x2c, 0x0e, 0x45, 0x88, 0x87, 0xf4, 0x6b, 0x72, 0x15, 0x52, 0x42,
0x1f, 0xd1, 0x07, 0x90, 0xbd, 0x34, 0xce, 0x2e, 0x08, 0xa3, 0xa3, 0x50, 0x2b, 0x0f, 0x36, 0x18,
0x5c, 0x5a, 0xa5, 0x61, 0x79, 0xfe, 0x31, 0x5d, 0xa1, 0x04, 0x0b, 0x5f, 0xa4, 0x9e, 0x73, 0xc2,
0x5f, 0x33, 0x00, 0xa3, 0x6d, 0x27, 0x88, 0xde, 0x81, 0xd5, 0x91, 0xef, 0xea, 0x63, 0x7c, 0xaf,
0x18, 0x51, 0xb4, 0x11, 0x2e, 0xd3, 0x11, 0x2e, 0xef, 0xc1, 0xd2, 0xe8, 0x26, 0xac, 0x4e, 0xc8,
0x73, 0x61, 0x28, 0xc3, 0x1d, 0xf4, 0x00, 0x46, 0x97, 0xa2, 0x33, 0x03, 0x01, 0xe5, 0xcb, 0x43,
0xa9, 0x4c, 0x2d, 0xad, 0x41, 0xd6, 0xf3, 0x0d, 0xd7, 0x67, 0xbc, 0xa7, 0x95, 0xe0, 0x85, 0xd2,
0x40, 0xec, 0x4e, 0x29, 0xcf, 0x64, 0xf4, 0x31, 0x30, 0x77, 0x49, 0x5c, 0x8f, 0xe8, 0x9e, 0xef,
0x1a, 0x76, 0xa7, 0xb4, 0xb0, 0xc5, 0x6d, 0x2f, 0x50, 0x73, 0x4c, 0xaa, 0x32, 0xe1, 0xf0, 0x16,
0x17, 0x6f, 0x78, 0x8b, 0x75, 0xc8, 0x5f, 0x1a, 0xae, 0x65, 0xd8, 0x7e, 0x09, 0x18, 0xcf, 0x0f,
0x92, 0x54, 0x8f, 0x83, 0x25, 0x23, 0x0b, 0x87, 0xb7, 0x94, 0x81, 0x1e, 0xfa, 0x04, 0x80, 0x62,
0xf0, 0x4c, 0xd7, 0xea, 0xfb, 0xa5, 0x02, 0xb3, 0x72, 0x27, 0xc9, 0x8a, 0x36, 0x5c, 0x75, 0x78,
0x4b, 0x89, 0xe8, 0xa0, 0x9f, 0x84, 0xae, 0xb4, 0xc4, 0x5c, 0x69, 0xfb, 0x7a, 0xf0, 0xff, 0x17,
0x3f, 0xda, 0xcd, 0x87, 0x5a, 0xc2, 0x7f, 0x16, 0x61, 0x75, 0xe2, 0xf8, 0xe8, 0x65, 0x48, 0x37,
0xc7, 0xe8, 0xde, 0x99, 0x8b, 0xb3, 0x4a, 0x84, 0xf6, 0x3d, 0xc8, 0x91, 0x6e, 0x97, 0x98, 0x3e,
0x43, 0x55, 0xac, 0x3d, 0x9e, 0xcf, 0x82, 0xc4, 0x74, 0x94, 0x50, 0x17, 0x3d, 0x82, 0x15, 0xe3,
0xcc, 0x27, 0xae, 0x6d, 0xf8, 0x44, 0x3f, 0x35, 0x3c, 0xe2, 0x0d, 0xd2, 0xc2, 0x50, 0xbc, 0x4b,
0xa5, 0x68, 0x03, 0xf2, 0x3d, 0x62, 0x47, 0x3c, 0x36, 0x47, 0x5f, 0x03, 0x67, 0x1d, 0xdd, 0x83,
0x6e, 0x75, 0xbc, 0x52, 0x76, 0x2b, 0x4d, 0x9d, 0x75, 0x24, 0xc5, 0x1d, 0x0f, 0xfd, 0x1c, 0xc0,
0x74, 0xec, 0x8e, 0xc5, 0x32, 0x7e, 0x29, 0xc7, 0xae, 0xe9, 0xc7, 0xf3, 0x41, 0x16, 0xcf, 0x2c,
0xdb, 0x32, 0x8d, 0x33, 0x71, 0xa0, 0xaf, 0x44, 0x4c, 0x21, 0x07, 0xde, 0x31, 0xc3, 0x05, 0xba,
0x67, 0xf5, 0x6c, 0xab, 0x6b, 0x99, 0x86, 0x6d, 0x12, 0x16, 0x01, 0xc5, 0xda, 0x8b, 0x9b, 0xed,
0xa1, 0x46, 0x2c, 0x28, 0x6b, 0x66, 0x82, 0xb4, 0xfc, 0x7b, 0x0e, 0x56, 0x27, 0x20, 0xd1, 0x60,
0xa4, 0x91, 0xea, 0x95, 0x38, 0x76, 0xfa, 0xe0, 0x05, 0xd5, 0x61, 0x89, 0xbc, 0x61, 0x3c, 0x9e,
0x31, 0x6a, 0x52, 0xec, 0xdc, 0x89, 0xae, 0x2d, 0x85, 0xeb, 0x70, 0x47, 0x29, 0x90, 0xe1, 0xb3,
0x47, 0x73, 0xaf, 0xe9, 0xd8, 0x26, 0xe9, 0x47, 0x72, 0xf6, 0x62, 0x28, 0xc1, 0x1d, 0x7a, 0x2f,
0xce, 0xb9, 0x75, 0x1e, 0xb9, 0x17, 0xfa, 0x8a, 0x3b, 0xc2, 0xe7, 0x90, 0xa1, 0xde, 0x82, 0xd6,
0x80, 0xd7, 0x4e, 0x5a, 0x92, 0xde, 0x96, 0xd5, 0x96, 0x24, 0xe2, 0x7d, 0x2c, 0xed, 0xf1, 0xb7,
0x50, 0x11, 0x80, 0x49, 0x9b, 0xda, 0xa1, 0xa4, 0xf0, 0x1c, 0x5a, 0x86, 0x45, 0x2c, 0xab, 0x92,
0xa2, 0xe1, 0xa6, 0xcc, 0xa7, 0xd0, 0x12, 0x2c, 0xec, 0x49, 0x0d, 0x89, 0xbd, 0xa5, 0x11, 0x0f,
0x4b, 0x6a, 0x7b, 0x57, 0xd5, 0xb0, 0xd6, 0x66, 0x92, 0x0c, 0xca, 0x43, 0x5a, 0x95, 0x5b, 0x7c,
0x96, 0xda, 0x51, 0x35, 0xa5, 0x2d, 0x6a, 0x6d, 0xa5, 0xde, 0xe0, 0x73, 0xf4, 0x83, 0x28, 0x1f,
0xf3, 0x79, 0xe1, 0x2f, 0x1c, 0xe4, 0x02, 0x5f, 0x43, 0xeb, 0x80, 0xa4, 0xfd, 0x7d, 0x49, 0xd4,
0x62, 0x18, 0x78, 0x58, 0x0a, 0xe5, 0x03, 0x14, 0x45, 0x80, 0x7d, 0xa5, 0x7e, 0x24, 0xa9, 0x87,
0x78, 0x5f, 0xe3, 0x53, 0xa8, 0x0c, 0xeb, 0xec, 0x5d, 0x6f, 0x29, 0x92, 0x2a, 0x29, 0xc7, 0x58,
0x3e, 0xd0, 0xb1, 0xbc, 0x27, 0x35, 0xf8, 0x34, 0x42, 0x50, 0x54, 0x4f, 0xe4, 0xa6, 0x7c, 0x72,
0xd4, 0x6c, 0xab, 0x3a, 0x45, 0x93, 0x41, 0xef, 0xc0, 0xaa, 0xdc, 0x94, 0x63, 0xe2, 0x2c, 0x3d,
0x9c, 0xaa, 0x35, 0x5b, 0xfa, 0x41, 0x1d, 0xcb, 0x7c, 0x6e, 0xf8, 0xda, 0x68, 0xaa, 0x2a, 0x9f,
0xa7, 0x9b, 0xa8, 0xad, 0x06, 0x16, 0x25, 0x5d, 0xc5, 0x9a, 0xa4, 0xef, 0x61, 0x55, 0x69, 0xb7,
0xd8, 0x39, 0x17, 0x84, 0x3f, 0xa7, 0x60, 0x2d, 0xc9, 0x35, 0xd0, 0x03, 0xb8, 0x27, 0x36, 0xb0,
0x8c, 0xc5, 0x7a, 0x43, 0x57, 0xf1, 0x81, 0x8c, 0xf7, 0xb1, 0x58, 0x97, 0xc5, 0x38, 0xcd, 0x77,
0x61, 0x33, 0x79, 0x59, 0x84, 0xf7, 0xb6, 0x2c, 0x4a, 0x8a, 0x46, 0xa1, 0xa5, 0x10, 0x40, 0x6e,
0x57, 0x92, 0xf1, 0x01, 0x65, 0x7d, 0x15, 0x96, 0x1b, 0xf8, 0x53, 0xa9, 0x71, 0xa2, 0x87, 0x22,
0x76, 0xbe, 0x50, 0xd4, 0xaa, 0x6b, 0x87, 0xcd, 0x03, 0x49, 0xc6, 0x62, 0x70, 0x09, 0x91, 0xf7,
0x1c, 0xd5, 0xdc, 0x53, 0xda, 0x07, 0xba, 0x22, 0xa9, 0xad, 0xa6, 0xac, 0x4a, 0x7c, 0x9e, 0xde,
0xc1, 0x21, 0x56, 0xb5, 0xa6, 0xd8, 0x3c, 0x6a, 0xd5, 0x35, 0xbc, 0x8b, 0x1b, 0x58, 0x3b, 0xe1,
0x17, 0xd0, 0x06, 0xdc, 0x16, 0x9b, 0xf2, 0xbe, 0xa4, 0xa8, 0xba, 0x2a, 0xc9, 0x2a, 0xd6, 0xf0,
0x31, 0xfd, 0xb0, 0x88, 0x56, 0xa0, 0xa0, 0x60, 0xf5, 0x53, 0x7d, 0xbf, 0x2e, 0x6a, 0x4d, 0x85,
0x07, 0x2a, 0xa8, 0xab, 0x6a, 0x53, 0xc4, 0x75, 0xc6, 0x4d, 0x81, 0xed, 0xaa, 0x34, 0x35, 0x49,
0xd4, 0xf0, 0xb1, 0xc4, 0x2f, 0x51, 0x70, 0x47, 0xed, 0x86, 0x86, 0x5b, 0x0d, 0x49, 0x57, 0xa4,
0x56, 0x53, 0xd1, 0xa4, 0x3d, 0x7e, 0x59, 0xf8, 0x47, 0x0a, 0x60, 0x94, 0xb6, 0xa3, 0x79, 0x84,
0x1b, 0xcb, 0x23, 0x1f, 0x42, 0x96, 0xbc, 0xa1, 0xb9, 0x21, 0x88, 0x91, 0xfb, 0xd7, 0xa7, 0xff,
0x8a, 0xf4, 0xc6, 0xb1, 0x95, 0x40, 0x03, 0x1d, 0xc3, 0x8a, 0xe9, 0x74, 0x2c, 0xbb, 0xa7, 0x7b,
0xe4, 0x17, 0x17, 0xb4, 0x3e, 0xb2, 0x38, 0x29, 0xd4, 0x9e, 0xcc, 0x30, 0x22, 0x32, 0x2d, 0x35,
0x54, 0x52, 0x8a, 0xe6, 0xd8, 0x7b, 0xd9, 0x80, 0x0c, 0xdd, 0x66, 0x54, 0x68, 0xb9, 0x84, 0x42,
0x9b, 0x1a, 0x15, 0xda, 0xa7, 0x90, 0xed, 0xba, 0x83, 0x7a, 0x5f, 0xa8, 0x6d, 0x4e, 0xd4, 0x09,
0x6c, 0xfb, 0xcf, 0x6a, 0x61, 0xa1, 0x60, 0x2b, 0xcb, 0xcf, 0xa1, 0x38, 0x0e, 0x62, 0xde, 0xcd,
0x84, 0x8f, 0x01, 0x46, 0x29, 0x03, 0xdd, 0x85, 0x42, 0xd8, 0xa1, 0xb1, 0x7e, 0x21, 0xa0, 0x36,
0x6c, 0xda, 0x58, 0xb3, 0x10, 0xb4, 0x31, 0xa9, 0x41, 0x1b, 0x23, 0x74, 0xa1, 0x2c, 0xba, 0xc4,
0xf0, 0xc9, 0x58, 0x87, 0xa5, 0x50, 0x14, 0x9e, 0x8f, 0x0e, 0xa1, 0x38, 0xde, 0xe4, 0x30, 0x8b,
0x85, 0xda, 0xbd, 0x99, 0x3d, 0x9a, 0xb2, 0x3c, 0xd6, 0x04, 0x09, 0x12, 0x6c, 0x1c, 0x10, 0x3f,
0x71, 0x93, 0xc4, 0x4e, 0x8a, 0x4b, 0xec, 0xa4, 0x84, 0xbf, 0x71, 0x50, 0x6e, 0xf7, 0x3b, 0xd3,
0xf0, 0xde, 0xc0, 0x54, 0xc2, 0xd9, 0x52, 0xff, 0xdb, 0xd9, 0xd0, 0x47, 0x50, 0xb8, 0x60, 0x98,
0xd8, 0x6c, 0x11, 0xde, 0xfa, 0x64, 0x77, 0xb0, 0x4f, 0xc7, 0x8f, 0x23, 0xc3, 0x7b, 0xad, 0x40,
0xb0, 0x9c, 0x3e, 0x0b, 0x87, 0x50, 0xde, 0x23, 0x67, 0xe4, 0xed, 0x0f, 0x24, 0xfc, 0x8b, 0x83,
0x4d, 0x95, 0x18, 0xae, 0xf9, 0x6a, 0xcc, 0x94, 0x37, 0xb0, 0x75, 0x17, 0x0a, 0xa3, 0xd1, 0x60,
0x50, 0xa0, 0x60, 0x38, 0x1b, 0x78, 0x89, 0xc3, 0x41, 0xea, 0xda, 0xe1, 0x20, 0xda, 0xd0, 0x3e,
0x87, 0x2c, 0x9b, 0x7d, 0x4a, 0x99, 0xad, 0xf4, 0x9c, 0x8d, 0x63, 0xa0, 0x40, 0x4b, 0x5b, 0xdf,
0xe8, 0x11, 0xdd, 0x77, 0x5e, 0x13, 0x7b, 0x30, 0x56, 0x50, 0x89, 0x46, 0x05, 0x68, 0x13, 0xd8,
0x8b, 0xee, 0x59, 0x9f, 0x05, 0xb3, 0x45, 0x56, 0x59, 0xa0, 0x02, 0xd5, 0xfa, 0x8c, 0x08, 0x5f,
0x73, 0xf0, 0xbd, 0xe4, 0x43, 0x7b, 0x7d, 0xc7, 0xf6, 0x08, 0xfa, 0x19, 0xac, 0x8c, 0x33, 0x18,
0x9c, 0x7c, 0xae, 0x7b, 0x2e, 0x8e, 0x51, 0xec, 0xa1, 0x87, 0xb0, 0x62, 0x93, 0x37, 0xbe, 0x1e,
0x41, 0x1b, 0xf0, 0xb3, 0x4c, 0xc5, 0xad, 0x01, 0x62, 0xe1, 0x04, 0x36, 0xe2, 0x41, 0x35, 0xb8,
0x84, 0x97, 0x00, 0x23, 0xa3, 0x61, 0x34, 0xdd, 0xb9, 0x1e, 0x89, 0x12, 0xd1, 0x10, 0xbe, 0xe0,
0xe0, 0xbd, 0x5d, 0xc3, 0x37, 0x5f, 0xc5, 0x37, 0x18, 0x5e, 0xf3, 0x27, 0x50, 0x88, 0x0c, 0xd5,
0xe1, 0x61, 0x67, 0x6d, 0x11, 0x55, 0xa1, 0xf7, 0xe1, 0x06, 0xc6, 0x22, 0x33, 0x64, 0x28, 0xc1,
0x1d, 0xe1, 0x3b, 0x0e, 0xee, 0x4c, 0x83, 0x10, 0x92, 0xae, 0x40, 0x9e, 0xd8, 0xbe, 0x6b, 0x91,
0xc1, 0xfe, 0xcf, 0x93, 0xf6, 0xbf, 0xde, 0x48, 0x25, 0xe8, 0xcc, 0x07, 0x86, 0xca, 0x1e, 0x64,
0x83, 0xc6, 0x7c, 0x07, 0x72, 0xc1, 0x50, 0x1c, 0xd2, 0x87, 0x06, 0xb6, 0xdd, 0xbe, 0x59, 0x51,
0xd9, 0x17, 0x25, 0x5c, 0x11, 0xa3, 0x3b, 0x75, 0x63, 0xba, 0x3f, 0x82, 0xb5, 0xb1, 0xb4, 0x35,
0x20, 0xf9, 0x3e, 0x44, 0x72, 0xc0, 0x28, 0x26, 0x97, 0x46, 0x42, 0xdc, 0x11, 0xfe, 0xc4, 0xc1,
0x46, 0x3c, 0x59, 0xdd, 0xc4, 0xc0, 0xdb, 0xa2, 0x7f, 0xbb, 0xc4, 0xf4, 0x12, 0x36, 0xe2, 0x89,
0xe9, 0x46, 0xa7, 0xff, 0x4d, 0x0a, 0x4a, 0xf1, 0xc8, 0x1c, 0x3a, 0xe9, 0x63, 0x40, 0x13, 0x79,
0x6d, 0x90, 0x92, 0xf8, 0x58, 0x62, 0xf3, 0xd0, 0xfd, 0xd8, 0xac, 0xcc, 0x5c, 0xf2, 0xf0, 0xd6,
0xf8, 0xb4, 0xfc, 0x68, 0x62, 0x5a, 0x4e, 0x87, 0xcb, 0xa6, 0xcd, 0xcb, 0x99, 0x84, 0xca, 0x9a,
0x1d, 0x95, 0xf1, 0xf1, 0xb4, 0x94, 0xbb, 0x36, 0x2d, 0xe5, 0xc7, 0xd3, 0xd2, 0x6e, 0x01, 0x16,
0x87, 0x9b, 0x0a, 0xbf, 0xe6, 0xe0, 0xdd, 0x04, 0x26, 0xc2, 0x58, 0x79, 0xfb, 0x78, 0x9d, 0x33,
0x2d, 0xed, 0x10, 0x28, 0x8e, 0x27, 0x60, 0xda, 0x97, 0xd6, 0x65, 0xb9, 0xa9, 0xb1, 0x5e, 0x4e,
0x4f, 0x98, 0x0f, 0x0a, 0x90, 0x3f, 0x90, 0x64, 0x49, 0xc1, 0x22, 0xcf, 0xd1, 0x97, 0xe3, 0xba,
0x82, 0xeb, 0x32, 0xed, 0xc9, 0x17, 0x20, 0x43, 0xbf, 0xf0, 0x69, 0x36, 0x43, 0x28, 0x75, 0x59,
0x15, 0x15, 0xdc, 0xd2, 0xf8, 0x4c, 0xed, 0xab, 0x65, 0xb8, 0x1d, 0xcd, 0xa3, 0xec, 0xe7, 0xbe,
0xe3, 0xa7, 0xe8, 0x5b, 0x0e, 0x6e, 0x27, 0xf4, 0x1a, 0xa8, 0x92, 0x74, 0xd6, 0xe9, 0x4d, 0x49,
0x79, 0x76, 0xe2, 0x16, 0x76, 0xbe, 0xfc, 0xfb, 0x3f, 0xbf, 0x49, 0xbd, 0x2f, 0xa0, 0xd8, 0x2f,
0x98, 0xc4, 0xf7, 0x5e, 0xc4, 0xaa, 0x3e, 0xfa, 0x9a, 0x03, 0x3e, 0xde, 0x9a, 0xa0, 0xc4, 0x1f,
0xa1, 0xa6, 0x34, 0x30, 0xf3, 0x00, 0xaa, 0x30, 0x40, 0xdb, 0xe8, 0xe1, 0x24, 0xa0, 0xea, 0xaf,
0x26, 0x22, 0xe1, 0x73, 0xf4, 0x47, 0x0e, 0x6e, 0x27, 0xf4, 0x39, 0xc9, 0x5c, 0x4d, 0x6f, 0x88,
0xe6, 0x81, 0xf6, 0x92, 0x41, 0x7b, 0x5e, 0x9e, 0x13, 0xda, 0x04, 0x7f, 0xbf, 0xe5, 0xe0, 0x76,
0x42, 0x07, 0x93, 0x0c, 0x75, 0x7a, 0xab, 0x53, 0x5e, 0x9f, 0xc8, 0x4b, 0xd2, 0x79, 0xdf, 0xbf,
0x1a, 0x50, 0xb7, 0x33, 0x2f, 0x75, 0xbf, 0xe3, 0x60, 0x2d, 0xa9, 0x23, 0x40, 0xd5, 0x24, 0x40,
0xd7, 0x34, 0x4c, 0xe5, 0x0f, 0xe6, 0x57, 0x08, 0x62, 0x59, 0x78, 0x9f, 0x61, 0xbd, 0x23, 0xbc,
0x9b, 0x80, 0xd5, 0x63, 0x8a, 0x2f, 0xb8, 0x1d, 0xf4, 0x15, 0x07, 0x7c, 0xdc, 0xbf, 0x93, 0x3d,
0x6e, 0x4a, 0x17, 0x51, 0x9e, 0x91, 0x1e, 0x84, 0xfb, 0x0c, 0xc7, 0x7b, 0xc2, 0x4a, 0x0c, 0xc7,
0x8b, 0x68, 0x75, 0xf8, 0x03, 0x07, 0xeb, 0xc9, 0x25, 0x18, 0x3d, 0xbd, 0x49, 0xb9, 0x0e, 0x20,
0xd5, 0x6e, 0x5e, 0xe1, 0x85, 0x87, 0x0c, 0xe6, 0x96, 0xb0, 0x19, 0x87, 0x79, 0x3a, 0xd2, 0xa3,
0x84, 0x7d, 0xc9, 0xc1, 0xf2, 0x58, 0xf0, 0xa1, 0xed, 0x99, 0xf1, 0x39, 0x2f, 0x55, 0x8f, 0x18,
0x86, 0x7b, 0xe8, 0x6e, 0x0c, 0xc3, 0x98, 0x6f, 0x51, 0xbf, 0xfa, 0x96, 0x03, 0x3e, 0x1e, 0x69,
0xc9, 0xb7, 0x36, 0xa5, 0xe6, 0xcf, 0x84, 0xf2, 0x8c, 0x41, 0x79, 0x52, 0x9e, 0x05, 0x65, 0xec,
0x16, 0xbf, 0xe0, 0x80, 0x8f, 0x47, 0x55, 0x32, 0xac, 0x29, 0xd5, 0x7c, 0x6a, 0xe0, 0x85, 0xcc,
0xec, 0xcc, 0x64, 0xe6, 0x1b, 0x0e, 0x56, 0x27, 0xea, 0x1b, 0x7a, 0x3c, 0x4f, 0xf4, 0x0c, 0xdd,
0xe7, 0xc9, 0x9c, 0xab, 0x43, 0xcf, 0xb9, 0xc7, 0xb0, 0x6d, 0x0a, 0xeb, 0x71, 0x6c, 0xc3, 0x28,
0xdb, 0xad, 0xc2, 0xba, 0xe9, 0x9c, 0x27, 0x98, 0xdd, 0xe5, 0x23, 0x16, 0x5b, 0xf4, 0xcc, 0x2d,
0xee, 0xdf, 0x1c, 0x77, 0x9a, 0x63, 0xe7, 0x7f, 0xf6, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa7,
0x0c, 0x54, 0xd2, 0x25, 0x1b, 0x00, 0x00,
}
|