Unable to find source-code formatter for language: json. Available languages are: actionscript, html, java, javascript, none, sql, xhtml, xml
{
"downloadTime": "2024:03:19T17:07:25Z",
"downloadTimeStamp": 1710868045,
"genome": "galGal6",
"track": "nestedRepeats",
"dataTime": "2018-10-11T14:52:43",
"dataTimeStamp": 1539294763,
"columnTypes": [
{
"name": "bin",
"sqlType": "smallint(6)",
"jsonType": "number",
"description": "Indexing field to speed chromosome range queries"
},
{
"name": "chrom",
"sqlType": "varchar(255)",
"jsonType": "string",
"description": "Chromosome (or contig, scaffold, etc.)"
},
{
"name": "chromStart",
"sqlType": "int(10) unsigned",
"jsonType": "number",
"description": "Start position in chromosome"
},
{
"name": "chromEnd",
"sqlType": "int(10) unsigned",
"jsonType": "number",
"description": "End position in chromosome"
},
{
"name": "name",
"sqlType": "varchar(255)",
"jsonType": "string",
"description": "Name of item"
},
{
"name": "score",
"sqlType": "int(10) unsigned",
"jsonType": "number",
"description": "Average of fragment identity scores, transformed into 0..1000 range for shading"
},
{
"name": "strand",
"sqlType": "char(1)",
"jsonType": "string",
"description": "+, -, or . for mixed (some fragments +, some -)"
},
{
"name": "thickStart",
"sqlType": "int(10) unsigned",
"jsonType": "number",
"description": "for BED compatibility -- same as chromStart"
},
{
"name": "thickEnd",
"sqlType": "int(10) unsigned",
"jsonType": "number",
"description": "for BED compatibility -- same as chromEnd"
},
{
"name": "reserved",
"sqlType": "int(10) unsigned",
"jsonType": "number",
"description": "for BED compatibility"
},
{
"name": "blockCount",
"sqlType": "int(11)",
"jsonType": "number",
"description": "Number of blocks"
},
{
"name": "blockSizes",
"sqlType": "longblob",
"jsonType": "string",
"description": "Comma separated list of block (fragment) sizes"
},
{
"name": "chromStarts",
"sqlType": "longblob",
"jsonType": "string",
"description": "Start positions relative to chromStart"
},
{
"name": "blockStrands",
"sqlType": "longblob",
"jsonType": "string",
"description": "Strand of each fragment"
},
{
"name": "id",
"sqlType": "int(10) unsigned",
"jsonType": "number",
"description": "RepeatMasker-assigned ID used to join fragments"
},
{
"name": "repClass",
"sqlType": "varchar(255)",
"jsonType": "string",
"description": "Class of repeat"
},
{
"name": "repFamily",
"sqlType": "varchar(255)",
"jsonType": "string",
"description": "Family of repeat"
}
],
"shortLabel": "Interrupted Rpts",
"type": "bed 12 +",
"longLabel": "Fragments of Interrupted Repeats Joined by RepeatMasker ID",
"itemCount": 29762,
"visibility": "hide",
"group": "varRep",
"exonNumbers": "off",
"useScore": "1"
}
As per discussion with Kaushik Gopu, will add the asked columns in the featureProps variable in DataSet objects created while getting the available datasets using the schema response from the schema API, example API: https://api.genome.ucsc.edu/list/schema?genome=galGal6;track=nestedRepeats. Below is an example showing how the featureProps look like:
Example schema response:
featureProps for the above schema:
{ "genome": "galGal6", "track": "nestedRepeats", "props": { "id": "number", "repClass": "string", "repFamily": "string" } }