sequence_feature Data
Data Type: sequence_feature
Primary Key: id
Attributes
-
aa_sequence_md5
(
string)
-
aa_variant
(
string)
-
additional_metadata
(
array of case insensitive strings)
-
comments
(
array of case insensitive strings)
-
date_inserted
(
date)
-
date_modified
(
date)
-
end
(
integer)
-
evidence_code
(
string)
-
feature_id
(
string)
-
genbank_accession
(
string)
-
gene
(
string)
-
genome_id
(
string)
-
genome_name
(
case insensitive string)
-
id
*
(
string)
-
length
(
integer)
-
patric_id
(
string)
-
product
(
case insensitive string)
-
publication
(
array of strings)
-
refseq_locus_tag
(
string)
-
segment
(
string)
-
segments
(
array of strings)
-
sf_category
(
string)
-
sf_id
(
string)
-
sf_name
(
case insensitive string)
-
sf_sequence
(
string)
-
sf_sequence_md5
(
string)
-
source
(
string)
-
source_aa_sequence
(
string)
-
source_id
(
string)
-
source_sf_location
(
string)
-
source_strain
(
string)
-
start
(
integer)
-
subtype
(
string)
-
taxon_id
(
integer)
-
variant_types
(
string)
API
GET :id
Retrieve a sequence_feature data object by id
EXAMPLE
https://www.bv-brc.org/api/sequence_feature/:ID
Try It!
QUERY :query
Query for sequence_feature data objects with an RQL Query
Return Formats
Requests may include an HTTP ACCEPT header from this list to transform the data into the requested type.
-
application/json - Returns results as an array of JSON objects
-
application/solr+json - Results results in SOLR JSON response format
-
text/csv - Returns results in Comma Separated values (CSV) format. Columns are separated by ','. Multi-value columns are separated by ';'. Rows are separated by new line
-
text/tsv - Returns results in Tab Separated values (TSV) format. Columns are separated by a tab. Multi-value columns are separated by ';'. Rows are separated by new line
-
application/vnd.openxmlformats - Returns objects as an MS Excel document
EXAMPLE
- Query for sequence_feature data objects with a id equal to :ID. Return results as a JSON Array.
https://www.bv-brc.org/api/sequence_feature/?eq(id,:ID)
Try It!