Struct google_genomics1::ReferenceSet[][src]

pub struct ReferenceSet {
    pub description: Option<String>,
    pub source_uri: Option<String>,
    pub reference_ids: Option<Vec<String>>,
    pub assembly_id: Option<String>,
    pub source_accessions: Option<Vec<String>>,
    pub ncbi_taxon_id: Option<i32>,
    pub id: Option<String>,
    pub md5checksum: Option<String>,
}

A reference set is a set of references which typically comprise a reference assembly for a species, such as GRCh38 which is representative of the human genome. A reference set defines a common coordinate space for comparing reference-aligned experimental data. A reference set contains 1 or more references.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Free text description of this reference set.

The URI from which the references were obtained.

The IDs of the reference objects that are part of this set. Reference.md5checksum must be unique within this set.

Public id of this reference set, such as GRCh37.

All known corresponding accession IDs in INSDC (GenBank/ENA/DDBJ) ideally with a version number, for example NC_000001.11.

ID from http://www.ncbi.nlm.nih.gov/taxonomy (for example, 9606 for human) indicating the species which this reference set is intended to model. Note that contained references may specify a different ncbiTaxonId, as assemblies may contain reference sequences which do not belong to the modeled species, for example EBV in a human reference genome.

The server-generated reference set ID, unique across all reference sets.

Order-independent MD5 checksum which identifies this reference set. The checksum is computed by sorting all lower case hexidecimal string reference.md5checksum (for all reference in this set) in ascending lexicographic order, concatenating, and taking the MD5 of that value. The resulting value is represented in lower case hexadecimal format.

Trait Implementations

impl Default for ReferenceSet
[src]

Returns the "default value" for a type. Read more

impl Clone for ReferenceSet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ReferenceSet
[src]

Formats the value using the given formatter. Read more

impl Resource for ReferenceSet
[src]

impl ResponseResult for ReferenceSet
[src]

Auto Trait Implementations