readgroupset.proto 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. import "google/genomics/v1/readgroup.proto";
  18. import "google/protobuf/struct.proto";
  19. option cc_enable_arenas = true;
  20. option go_package = "google.golang.org/genproto/googleapis/genomics/v1;genomics";
  21. option java_multiple_files = true;
  22. option java_outer_classname = "ReadGroupSetProto";
  23. option java_package = "com.google.genomics.v1";
  24. // A read group set is a logical collection of read groups, which are
  25. // collections of reads produced by a sequencer. A read group set typically
  26. // models reads corresponding to one sample, sequenced one way, and aligned one
  27. // way.
  28. //
  29. // * A read group set belongs to one dataset.
  30. // * A read group belongs to one read group set.
  31. // * A read belongs to one read group.
  32. //
  33. // For more genomics resource definitions, see [Fundamentals of Google
  34. // Genomics](https://cloud.google.com/genomics/fundamentals-of-google-genomics)
  35. message ReadGroupSet {
  36. // The server-generated read group set ID, unique for all read group sets.
  37. string id = 1;
  38. // The dataset to which this read group set belongs.
  39. string dataset_id = 2;
  40. // The reference set to which the reads in this read group set are aligned.
  41. string reference_set_id = 3;
  42. // The read group set name. By default this will be initialized to the sample
  43. // name of the sequenced data contained in this set.
  44. string name = 4;
  45. // The filename of the original source file for this read group set, if any.
  46. string filename = 5;
  47. // The read groups in this set. There are typically 1-10 read groups in a read
  48. // group set.
  49. repeated ReadGroup read_groups = 6;
  50. // A map of additional read group set information.
  51. map<string, google.protobuf.ListValue> info = 7;
  52. }