Struct gapi_grpc::google::genomics::v1::Reference[][src]

pub struct Reference {
    pub id: String,
    pub length: i64,
    pub md5checksum: String,
    pub name: String,
    pub source_uri: String,
    pub source_accessions: Vec<String>,
    pub ncbi_taxon_id: i32,
}

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

Fields

id: String

The server-generated reference ID, unique across all references.

length: i64

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). This value is represented in lower case hexadecimal format.

name: String

The name of this reference, for example 22.

source_uri: String

The URI from which the sequence was obtained. Typically specifies a FASTA format file.

source_accessions: Vec<String>

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

ncbi_taxon_id: i32

ID from http://www.ncbi.nlm.nih.gov/taxonomy. For example, 9606 for human.

Trait Implementations

impl Clone for Reference[src]

impl Debug for Reference[src]

impl Default for Reference[src]

impl Message for Reference[src]

impl PartialEq<Reference> for Reference[src]

impl StructuralPartialEq for Reference[src]

Auto Trait Implementations

impl RefUnwindSafe for Reference

impl Send for Reference

impl Sync for Reference

impl Unpin for Reference

impl UnwindSafe for Reference

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]