range.proto 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Copyright 2016 Google Inc.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.genomics.v1;
  16. import "google/api/annotations.proto";
  17. option cc_enable_arenas = true;
  18. option go_package = "google.golang.org/genproto/googleapis/genomics/v1;genomics";
  19. option java_multiple_files = true;
  20. option java_outer_classname = "RangeProto";
  21. option java_package = "com.google.genomics.v1";
  22. // A 0-based half-open genomic coordinate range for search requests.
  23. message Range {
  24. // The reference sequence name, for example `chr1`,
  25. // `1`, or `chrX`.
  26. string reference_name = 1;
  27. // The start position of the range on the reference, 0-based inclusive.
  28. int64 start = 2;
  29. // The end position of the range on the reference, 0-based exclusive.
  30. int64 end = 3;
  31. }