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 ⇒ Fixnum
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
2679 2680 2681 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2679 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
2672 2673 2674 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2672 def id @id end |
#length ⇒ Fixnum
The length of this reference's sequence.
Corresponds to the JSON property length
2677 2678 2679 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2677 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
2667 2668 2669 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2667 def md5checksum @md5checksum end |
#name ⇒ String
The name of this reference, for example 22
.
Corresponds to the JSON property name
2660 2661 2662 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2660 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
2649 2650 2651 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2649 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
2644 2645 2646 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2644 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
2655 2656 2657 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2655 def source_uri @source_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2684 2685 2686 2687 2688 2689 2690 2691 2692 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2684 def update!(**args) @source_accessions = args[:source_accessions] if args.key?(:source_accessions) @ncbi_taxon_id = args[:ncbi_taxon_id] if args.key?(:ncbi_taxon_id) @source_uri = args[:source_uri] if args.key?(:source_uri) @name = args[:name] if args.key?(:name) @md5checksum = args[:md5checksum] if args.key?(:md5checksum) @id = args[:id] if args.key?(:id) @length = args[:length] if args.key?(:length) end |