Class: Google::Apis::GenomicsV1::Reference
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1::Reference
- 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 reference is a canonical assembled DNA sequence, intended to act as a reference coordinate space for other genomic annotations. A single reference might represent the human chromosome 1 or mitochandrial DNA, for instance. A reference belongs to one or more reference sets. For more genomics resource definitions, see Fundamentals of Google Genomics
Instance Attribute Summary collapse
-
#id ⇒ String
The server-generated reference ID, unique across all references.
-
#length ⇒ String
The length of this reference's sequence.
-
#md5checksum ⇒ String
MD5 of the upper-case sequence excluding all whitespace characters (this is equivalent to SQ:M5 in SAM).
-
#name ⇒ String
The name of this reference, for example
22
. -
#ncbi_taxon_id ⇒ Fixnum
ID from http://www.ncbi.nlm.nih.gov/taxonomy.
-
#source_accessions ⇒ Array<String>
All known corresponding accession IDs in INSDC (GenBank/ENA/DDBJ) ideally with a version number, for example
GCF_000001405.26
. -
#source_uri ⇒ String
The URI from which the sequence was obtained.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Reference
constructor
A new instance of Reference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Reference
Returns a new instance of Reference.
2396 2397 2398 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2396 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
The server-generated reference ID, unique across all references.
Corresponds to the JSON property id
2360 2361 2362 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2360 def id @id end |
#length ⇒ String
The length of this reference's sequence.
Corresponds to the JSON property length
2365 2366 2367 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2365 def length @length end |
#md5checksum ⇒ String
MD5 of the upper-case sequence excluding all whitespace characters (this is
equivalent to SQ:M5 in SAM). This value is represented in lower case
hexadecimal format.
Corresponds to the JSON property md5checksum
2372 2373 2374 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2372 def md5checksum @md5checksum end |
#name ⇒ String
The name of this reference, for example 22
.
Corresponds to the JSON property name
2377 2378 2379 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2377 def name @name end |
#ncbi_taxon_id ⇒ Fixnum
ID from http://www.ncbi.nlm.nih.gov/taxonomy. For example, 9606 for human.
Corresponds to the JSON property ncbiTaxonId
2394 2395 2396 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2394 def ncbi_taxon_id @ncbi_taxon_id end |
#source_accessions ⇒ Array<String>
All known corresponding accession IDs in INSDC (GenBank/ENA/DDBJ) ideally with
a version number, for example GCF_000001405.26
.
Corresponds to the JSON property sourceAccessions
2389 2390 2391 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2389 def source_accessions @source_accessions end |
#source_uri ⇒ String
The URI from which the sequence was obtained. Typically specifies a FASTA
format file.
Corresponds to the JSON property sourceUri
2383 2384 2385 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2383 def source_uri @source_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2401 2402 2403 2404 2405 2406 2407 2408 2409 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2401 def update!(**args) @id = args[:id] if args.key?(:id) @length = args[:length] if args.key?(:length) @md5checksum = args[:md5checksum] if args.key?(:md5checksum) @name = args[:name] if args.key?(:name) @source_uri = args[:source_uri] if args.key?(:source_uri) @source_accessions = args[:source_accessions] if args.key?(:source_accessions) @ncbi_taxon_id = args[:ncbi_taxon_id] if args.key?(:ncbi_taxon_id) end |