noodles_gff/directive_buf/
key.rs

1//! GFF directive key.
2
3/// The GFF version (`gff-version`).
4pub const GFF_VERSION: &[u8] = b"gff-version";
5
6/// A reference to a sequence segment (`sequence-region`).
7pub const SEQUENCE_REGION: &[u8] = b"sequence-region";
8
9/// The ontology used for the feature types (`feature-ontology`).
10pub const FEATURE_ONTOLOGY: &[u8] = b"feature-ontology";
11
12/// The ontology used for the attributes (`attribute-ontology`).
13pub const ATTRIBUTE_ONTOLOGY: &[u8] = b"attribute-ontology";
14
15/// The ontology used for the sources (`source-ontology`).
16pub const SOURCE_ONTOLOGY: &[u8] = b"source-ontology";
17
18/// The species the annotations apply to (`species`).
19pub const SPECIES: &[u8] = b"species";
20
21/// The genome build used for the start and end positions (`genome-build`).
22pub const GENOME_BUILD: &[u8] = b"genome-build";
23
24/// A marker indicating that all forward references to feature IDs have been resolved (`#`).
25pub const FORWARD_REFERENCES_ARE_RESOLVED: &[u8] = b"#";
26
27/// A marker indicating the end of the records list and start of a bundled reference sequences
28/// (`FASTA`).
29pub const FASTA: &[u8] = b"FASTA";