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