Class: Google::Apis::GenomicsV1::Variant
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1::Variant
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/genomics_v1/classes.rb,
generated/google/apis/genomics_v1/representations.rb,
generated/google/apis/genomics_v1/representations.rb
Overview
A variant represents a change in DNA sequence relative to a reference sequence. For example, a variant could represent a SNP or an insertion. Variants belong to a variant set. For more genomics resource definitions, see Fundamentals of Google Genomics Each of the calls on a variant represent a determination of genotype with respect to that variant. For example, a call might assign probability of 0.32 to the occurrence of a SNP named rs1234 in a sample named NA12345. A call belongs to a call set, which contains related calls typically from one sample.
Instance Attribute Summary collapse
-
#alternate_bases ⇒ Array<String>
The bases that appear instead of the reference bases.
-
#calls ⇒ Array<Google::Apis::GenomicsV1::VariantCall>
The variant calls for this particular variant.
-
#created ⇒ Fixnum
The date this variant was created, in milliseconds from the epoch.
-
#end ⇒ Fixnum
The end position (0-based) of this variant.
-
#filter ⇒ Array<String>
A list of filters (normally quality filters) this variant has failed.
-
#id ⇒ String
The server-generated variant ID, unique across all variants.
-
#info ⇒ Hash<String,Array<Object>>
A map of additional variant information.
-
#names ⇒ Array<String>
Names for the variant, for example a RefSNP ID.
-
#quality ⇒ Float
A measure of how likely this variant is to be real.
-
#reference_bases ⇒ String
The reference bases for this variant.
-
#reference_name ⇒ String
The reference on which this variant occurs.
-
#start ⇒ Fixnum
The position at which this variant occurs (0-based).
-
#variant_set_id ⇒ String
The ID of the variant set this variant belongs to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Variant
constructor
A new instance of Variant.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Variant
Returns a new instance of Variant
2772 2773 2774 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2772 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alternate_bases ⇒ Array<String>
The bases that appear instead of the reference bases.
Corresponds to the JSON property alternateBases
2745 2746 2747 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2745 def alternate_bases @alternate_bases end |
#calls ⇒ Array<Google::Apis::GenomicsV1::VariantCall>
The variant calls for this particular variant. Each one represents the
determination of genotype with respect to this variant.
Corresponds to the JSON property calls
2765 2766 2767 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2765 def calls @calls end |
#created ⇒ Fixnum
The date this variant was created, in milliseconds from the epoch.
Corresponds to the JSON property created
2770 2771 2772 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2770 def created @created end |
#end ⇒ Fixnum
The end position (0-based) of this variant. This corresponds to the first
base after the last base in the reference allele. So, the length of
the reference allele is (end - start). This is useful for variants
that don't explicitly give alternate bases, for example large deletions.
Corresponds to the JSON property end
2759 2760 2761 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2759 def end @end end |
#filter ⇒ Array<String>
A list of filters (normally quality filters) this variant has failed.
PASS indicates this variant has passed all filters.
Corresponds to the JSON property filter
2751 2752 2753 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2751 def filter @filter end |
#id ⇒ String
The server-generated variant ID, unique across all variants.
Corresponds to the JSON property id
2712 2713 2714 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2712 def id @id end |
#info ⇒ Hash<String,Array<Object>>
A map of additional variant information. This must be of the form
mapinfo
2729 2730 2731 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2729 def info @info end |
#names ⇒ Array<String>
Names for the variant, for example a RefSNP ID.
Corresponds to the JSON property names
2740 2741 2742 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2740 def names @names end |
#quality ⇒ Float
A measure of how likely this variant is to be real.
A higher value is better.
Corresponds to the JSON property quality
2707 2708 2709 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2707 def quality @quality end |
#reference_bases ⇒ String
The reference bases for this variant. They start at the given
position.
Corresponds to the JSON property referenceBases
2735 2736 2737 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2735 def reference_bases @reference_bases end |
#reference_name ⇒ String
The reference on which this variant occurs.
(such as chr20 or X)
Corresponds to the JSON property referenceName
2723 2724 2725 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2723 def reference_name @reference_name end |
#start ⇒ Fixnum
The position at which this variant occurs (0-based).
This corresponds to the first base of the string of reference bases.
Corresponds to the JSON property start
2701 2702 2703 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2701 def start @start end |
#variant_set_id ⇒ String
The ID of the variant set this variant belongs to.
Corresponds to the JSON property variantSetId
2717 2718 2719 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2717 def variant_set_id @variant_set_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2777 def update!(**args) @start = args[:start] if args.key?(:start) @quality = args[:quality] if args.key?(:quality) @id = args[:id] if args.key?(:id) @variant_set_id = args[:variant_set_id] if args.key?(:variant_set_id) @reference_name = args[:reference_name] if args.key?(:reference_name) @info = args[:info] if args.key?(:info) @reference_bases = args[:reference_bases] if args.key?(:reference_bases) @names = args[:names] if args.key?(:names) @alternate_bases = args[:alternate_bases] if args.key?(:alternate_bases) @filter = args[:filter] if args.key?(:filter) @end = args[:end] if args.key?(:end) @calls = args[:calls] if args.key?(:calls) @created = args[:created] if args.key?(:created) end |