Transcriptomics Sample Data
Data Type: transcriptomics_sample
Primary Key: pid
Attributes
-
_version_
(
number)
-
accession
(
string)
-
additional_metadata
(
array of case insensitive strings)
-
channels
(
string)
-
condition
(
case insensitive string)
-
date_inserted
(
date)
-
date_modified
(
date)
-
eid
(
integer)
-
expid
(
integer)
-
expmean
(
number)
-
expname
(
case insensitive string)
-
expstddev
(
number)
-
genes
(
integer)
-
genome_ids
(
array of strings)
-
mutant
(
case insensitive string)
-
organism
(
case insensitive string)
-
pid
*
(
string)
-
pid_i
(
integer)
-
platform
(
string)
-
pmid
(
string)
-
release_date
(
date)
-
samples
(
string)
-
sig_log_ratio
(
number)
-
sig_z_score
(
number)
-
strain
(
case insensitive string)
-
timepoint
(
string)
API
GET :pid
Retrieve a transcriptomics_sample data object by pid
EXAMPLE
https://alpha.bv-brc.org/api/transcriptomics_sample/100000007
Try It!
QUERY :query
Query for transcriptomics_sample 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 transcriptomics_sample data objects with a pid equal to 100000007. Return results as a JSON Array.
https://alpha.bv-brc.org/api/transcriptomics_sample/?eq(pid,100000007)
Try It!