暫無描述

VariantSet.php 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?php
  2. /*
  3. * Copyright 2014 Google Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  6. * use this file except in compliance with the License. You may obtain a copy of
  7. * the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  13. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  14. * License for the specific language governing permissions and limitations under
  15. * the License.
  16. */
  17. class Google_Service_Genomics_VariantSet extends Google_Collection
  18. {
  19. protected $collection_key = 'referenceBounds';
  20. public $datasetId;
  21. public $description;
  22. public $id;
  23. protected $metadataType = 'Google_Service_Genomics_VariantSetMetadata';
  24. protected $metadataDataType = 'array';
  25. public $name;
  26. protected $referenceBoundsType = 'Google_Service_Genomics_ReferenceBound';
  27. protected $referenceBoundsDataType = 'array';
  28. public $referenceSetId;
  29. public function setDatasetId($datasetId)
  30. {
  31. $this->datasetId = $datasetId;
  32. }
  33. public function getDatasetId()
  34. {
  35. return $this->datasetId;
  36. }
  37. public function setDescription($description)
  38. {
  39. $this->description = $description;
  40. }
  41. public function getDescription()
  42. {
  43. return $this->description;
  44. }
  45. public function setId($id)
  46. {
  47. $this->id = $id;
  48. }
  49. public function getId()
  50. {
  51. return $this->id;
  52. }
  53. /**
  54. * @param Google_Service_Genomics_VariantSetMetadata
  55. */
  56. public function setMetadata($metadata)
  57. {
  58. $this->metadata = $metadata;
  59. }
  60. /**
  61. * @return Google_Service_Genomics_VariantSetMetadata
  62. */
  63. public function getMetadata()
  64. {
  65. return $this->metadata;
  66. }
  67. public function setName($name)
  68. {
  69. $this->name = $name;
  70. }
  71. public function getName()
  72. {
  73. return $this->name;
  74. }
  75. /**
  76. * @param Google_Service_Genomics_ReferenceBound
  77. */
  78. public function setReferenceBounds($referenceBounds)
  79. {
  80. $this->referenceBounds = $referenceBounds;
  81. }
  82. /**
  83. * @return Google_Service_Genomics_ReferenceBound
  84. */
  85. public function getReferenceBounds()
  86. {
  87. return $this->referenceBounds;
  88. }
  89. public function setReferenceSetId($referenceSetId)
  90. {
  91. $this->referenceSetId = $referenceSetId;
  92. }
  93. public function getReferenceSetId()
  94. {
  95. return $this->referenceSetId;
  96. }
  97. }