position.proto 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 = "PositionProto";
  21. option java_package = "com.google.genomics.v1";
  22. // An abstraction for referring to a genomic position, in relation to some
  23. // already known reference. For now, represents a genomic position as a
  24. // reference name, a base number on that reference (0-based), and a
  25. // determination of forward or reverse strand.
  26. message Position {
  27. // The name of the reference in whatever reference set is being used.
  28. string reference_name = 1;
  29. // The 0-based offset from the start of the forward strand for that reference.
  30. int64 position = 2;
  31. // Whether this position is on the reverse strand, as opposed to the forward
  32. // strand.
  33. bool reverse_strand = 3;
  34. }