Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 33 Next »

Introduction

See Service API Design for the rationale and design details for this api.

See Developer Bootstrap#DeveloperBootstrap-ServiceDevelopment for instructions on how to run a local instance of this service.

Encoding

The primary request and response encoding for the service is JSON. Here's a handy tool to make a blob of JSON more readable: http://jsonformatter.curiousconcept.com/

In responses from the service, dates are serialized as long integers expressing epoch time - the number of seconds elapsed since midnight Coordinated Universal Time (UTC) of January 1, 1970, not counting leap seconds. Here's a handy tool to convert from epoch time to human readable dates: http://www.epochconverter.com/

In requests to the service, dates can be serialized either as long integers expressing epoch time or human readable dates in http://www.ietf.org/rfc/rfc3339.txt format such as '2011-01-31' or '2011-01-31T22:00:00'

Security

Eventually these services will be HTTPS only and disallow HTTP. Users will pass something like ?access_token=... as a query parameter for every request to the service

Query API Examples

'Select *' Query

Right now only a subset of query functionality is supported

SELECT * FROM <data type> [LIMIT <#>] [OFFSET <#>]

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/query?query=select+*+from+dataset+limit+3+offset+1'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:51:53 GMT
Server: Apache-Coyote/1.1
Content-Length: 3481
Connection: keep-alive

{
  "results": [
    {
      "dataset.Disease": ["Cancer"],
      "dataset.Institution": ["Asian Cancer Research Group, Inc., (ACRG)"],
      "dataset.Internal_Name": ["ACRG_gastric"],
      "dataset.Number_of_Samples": [2000],
      "dataset.Posting_Restriction": ["unspecified"],
      "dataset.Species": ["Human"],
      "dataset.Tissue_Tumor": ["Stomach"],
      "dataset.Type": ["GCD"],
      "dataset.abstract_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/abstract_files/gastric_cancer_acrg.txt"],
      "dataset.citation_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/citation_files/gastric_cancer_acrg.txt"],
      "dataset.creationDate": 1301505581000,
      "dataset.creator": "Asian Cancer Research Group, Inc., (ACRG)",
      "dataset.db_id": [1],
      "dataset.description": null,
      "dataset.hasClinicalData": false,
      "dataset.hasExpressionData": false,
      "dataset.hasGeneticData": false,
      "dataset.id": "1",
      "dataset.name": "Gastric Cancer ACRG",
      "dataset.readme_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/readme_files/gastric_cancer_acrg.txt"],
      "dataset.releaseDate": null,
      "dataset.status": "Future",
      "dataset.user_agreement_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/user_agreement_files/gastric_cancer_acrg.txt"],
      "dataset.version": "0.0.1"
    },
    {
      "dataset.Disease": ["Cancer"],
      "dataset.Institution": ["Asian Cancer Research Group, Inc., (ACRG)"],
      "dataset.Internal_Name": ["ACRG_lung"],
      "dataset.Number_of_Samples": [2000],
      "dataset.Posting_Restriction": ["unspecified"],
      "dataset.Species": ["Human"],
      "dataset.Tissue_Tumor": ["Lung"],
      "dataset.Type": ["GCD"],
      "dataset.abstract_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/abstract_files/lung_cancer_acrg.txt"],
      "dataset.citation_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/citation_files/lung_cancer_acrg.txt"],
      "dataset.creationDate": 1301505582000,
      "dataset.creator": "Asian Cancer Research Group, Inc., (ACRG)",
      "dataset.db_id": [2],
      "dataset.description": null,
      "dataset.hasClinicalData": false,
      "dataset.hasExpressionData": false,
      "dataset.hasGeneticData": false,
      "dataset.id": "2",
      "dataset.name": "Lung Cancer ACRG",
      "dataset.readme_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/readme_files/lung_cancer_acrg.txt"],
      "dataset.releaseDate": null,
      "dataset.status": "Future",
      "dataset.user_agreement_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/user_agreement_files/lung_cancer_acrg.txt"],
      "dataset.version": "0.0.1"
    },
    {
      "dataset.Disease": ["Cancer"],
      "dataset.Institution": ["Fred Hutchinson Cancer Research Center /SKCCC at Johns Hopkins"],
      "dataset.Internal_Name": ["AML-Ped_TARGET"],
      "dataset.Number_of_Samples": [200],
      "dataset.Posting_Restriction": ["Link to data source"],
      "dataset.Species": ["Human"],
      "dataset.Tissue_Tumor": ["Blood"],
      "dataset.Type": ["GCD"],
      "dataset.abstract_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/abstract_files/pediatric_aml_target.txt"],
      "dataset.citation_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/citation_files/pediatric_aml_target.txt"],
      "dataset.creationDate": 1301505584000,
      "dataset.creator": "Soheil Meshinchi/ Bob Arceci",
      "dataset.db_id": [3],
      "dataset.description": null,
      "dataset.hasClinicalData": false,
      "dataset.hasExpressionData": false,
      "dataset.hasGeneticData": false,
      "dataset.id": "3",
      "dataset.name": "Pediatric AML TARGET",
      "dataset.readme_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/readme_files/pediatric_aml_target.txt"],
      "dataset.releaseDate": null,
      "dataset.status": "Pending",
      "dataset.user_agreement_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/user_agreement_files/pediatric_aml_target.txt"],
      "dataset.version": "0.0.1"
    }
  ],
  "totalNumberOfResults": 114
}

'Order By' Query

Right now only a subset of query functionality is supported

SELECT * FROM <data type> ORDER BY <field name> [ASC|DESC] [LIMIT <#>] [OFFSET #]

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/query?query=select+*+from+dataset+order+by+Number_of_Samples+DESC+limit+3+offset+1'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:51:54 GMT
Server: Apache-Coyote/1.1
Content-Length: 3414
Connection: keep-alive

{
  "results": [
    {
      "dataset.Disease": ["Multiple"],
      "dataset.Institution": ["NHLBI"],
      "dataset.Internal_Name": ["Framingham"],
      "dataset.Number_of_Samples": [5000],
      "dataset.Posting_Restriction": ["Link to data source"],
      "dataset.Species": ["Human"],
      "dataset.Tissue_Tumor": ["Blood"],
      "dataset.Type": ["GCD"],
      "dataset.abstract_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/abstract_files/framingham_heart_study.txt"],
      "dataset.citation_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/citation_files/framingham_heart_study.txt"],
      "dataset.creationDate": 1301505626000,
      "dataset.creator": "Dan Levy",
      "dataset.db_id": [31],
      "dataset.description": null,
      "dataset.hasClinicalData": false,
      "dataset.hasExpressionData": false,
      "dataset.hasGeneticData": false,
      "dataset.id": "31",
      "dataset.name": "Framingham Heart Study",
      "dataset.readme_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/readme_files/framingham_heart_study.txt"],
      "dataset.releaseDate": null,
      "dataset.status": "Future",
      "dataset.user_agreement_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/user_agreement_files/framingham_heart_study.txt"],
      "dataset.version": "0.0.1"
    },
    {
      "dataset.Disease": ["Cancer"],
      "dataset.Institution": ["Asian Cancer Research Group, Inc., (ACRG)"],
      "dataset.Internal_Name": ["ACRG_gastric"],
      "dataset.Number_of_Samples": [2000],
      "dataset.Posting_Restriction": ["unspecified"],
      "dataset.Species": ["Human"],
      "dataset.Tissue_Tumor": ["Stomach"],
      "dataset.Type": ["GCD"],
      "dataset.abstract_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/abstract_files/gastric_cancer_acrg.txt"],
      "dataset.citation_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/citation_files/gastric_cancer_acrg.txt"],
      "dataset.creationDate": 1301505581000,
      "dataset.creator": "Asian Cancer Research Group, Inc., (ACRG)",
      "dataset.db_id": [1],
      "dataset.description": null,
      "dataset.hasClinicalData": false,
      "dataset.hasExpressionData": false,
      "dataset.hasGeneticData": false,
      "dataset.id": "1",
      "dataset.name": "Gastric Cancer ACRG",
      "dataset.readme_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/readme_files/gastric_cancer_acrg.txt"],
      "dataset.releaseDate": null,
      "dataset.status": "Future",
      "dataset.user_agreement_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/user_agreement_files/gastric_cancer_acrg.txt"],
      "dataset.version": "0.0.1"
    },
    {
      "dataset.Disease": ["Cancer"],
      "dataset.Institution": ["Asian Cancer Research Group, Inc., (ACRG)"],
      "dataset.Internal_Name": ["ACRG_lung"],
      "dataset.Number_of_Samples": [2000],
      "dataset.Posting_Restriction": ["unspecified"],
      "dataset.Species": ["Human"],
      "dataset.Tissue_Tumor": ["Lung"],
      "dataset.Type": ["GCD"],
      "dataset.abstract_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/abstract_files/lung_cancer_acrg.txt"],
      "dataset.citation_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/citation_files/lung_cancer_acrg.txt"],
      "dataset.creationDate": 1301505582000,
      "dataset.creator": "Asian Cancer Research Group, Inc., (ACRG)",
      "dataset.db_id": [2],
      "dataset.description": null,
      "dataset.hasClinicalData": false,
      "dataset.hasExpressionData": false,
      "dataset.hasGeneticData": false,
      "dataset.id": "2",
      "dataset.name": "Lung Cancer ACRG",
      "dataset.readme_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/readme_files/lung_cancer_acrg.txt"],
      "dataset.releaseDate": null,
      "dataset.status": "Future",
      "dataset.user_agreement_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/user_agreement_files/lung_cancer_acrg.txt"],
      "dataset.version": "0.0.1"
    }
  ],
  "totalNumberOfResults": 114
}

'Where Equal To' Query

Right now only a subset of query functionality is supported

SELECT * FROM <data type> WHERE <field name> == "<value>" [LIMIT <#>] [OFFSET #]

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/query?query=select+*+from+dataset+where+name+==+"Human+Liver+Cohort"'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:51:54 GMT
Server: Apache-Coyote/1.1
Content-Length: 1200
Connection: keep-alive

{
  "results": [{
    "dataset.Disease": ["CVD"],
    "dataset.Institution": ["Vanderbilt University/ University of Pittsburg/ StJudes Hospital"],
    "dataset.Internal_Name": ["Deliver"],
    "dataset.Number_of_Samples": [517],
    "dataset.Posting_Restriction": ["Link to data source"],
    "dataset.Species": ["Human"],
    "dataset.Tissue_Tumor": ["Liver"],
    "dataset.Type": ["GCD"],
    "dataset.abstract_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/abstract_files/human_liver_cohort.txt"],
    "dataset.citation_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/citation_files/human_liver_cohort.txt"],
    "dataset.creationDate": 1301505623000,
    "dataset.creator": "Fred Guengrich/Steve Strom/ Erin Schuetz",
    "dataset.db_id": [29],
    "dataset.description": null,
    "dataset.hasClinicalData": true,
    "dataset.hasExpressionData": true,
    "dataset.hasGeneticData": false,
    "dataset.id": "29",
    "dataset.name": "Human Liver Cohort",
    "dataset.readme_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/readme_files/human_liver_cohort.txt"],
    "dataset.releaseDate": null,
    "dataset.status": "Current",
    "dataset.user_agreement_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/user_agreement_files/human_liver_cohort.txt"],
    "dataset.version": "0.0.1"
  }],
  "totalNumberOfResults": 1
}

'Where Equal To' Query with a Limit

Right now only a subset of query functionality is supported

SELECT * FROM <data type> WHERE <field name> == "<value>" [LIMIT <#>] [OFFSET #]

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/query?query=select+*+from+dataset+where+Species+==+"Human"+limit+3+offset+1'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:51:56 GMT
Server: Apache-Coyote/1.1
Content-Length: 3480
Connection: keep-alive

{
  "results": [
    {
      "dataset.Disease": ["Cancer"],
      "dataset.Institution": ["Asian Cancer Research Group, Inc., (ACRG)"],
      "dataset.Internal_Name": ["ACRG_gastric"],
      "dataset.Number_of_Samples": [2000],
      "dataset.Posting_Restriction": ["unspecified"],
      "dataset.Species": ["Human"],
      "dataset.Tissue_Tumor": ["Stomach"],
      "dataset.Type": ["GCD"],
      "dataset.abstract_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/abstract_files/gastric_cancer_acrg.txt"],
      "dataset.citation_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/citation_files/gastric_cancer_acrg.txt"],
      "dataset.creationDate": 1301505581000,
      "dataset.creator": "Asian Cancer Research Group, Inc., (ACRG)",
      "dataset.db_id": [1],
      "dataset.description": null,
      "dataset.hasClinicalData": false,
      "dataset.hasExpressionData": false,
      "dataset.hasGeneticData": false,
      "dataset.id": "1",
      "dataset.name": "Gastric Cancer ACRG",
      "dataset.readme_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/readme_files/gastric_cancer_acrg.txt"],
      "dataset.releaseDate": null,
      "dataset.status": "Future",
      "dataset.user_agreement_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/user_agreement_files/gastric_cancer_acrg.txt"],
      "dataset.version": "0.0.1"
    },
    {
      "dataset.Disease": ["Cancer"],
      "dataset.Institution": ["Asian Cancer Research Group, Inc., (ACRG)"],
      "dataset.Internal_Name": ["ACRG_lung"],
      "dataset.Number_of_Samples": [2000],
      "dataset.Posting_Restriction": ["unspecified"],
      "dataset.Species": ["Human"],
      "dataset.Tissue_Tumor": ["Lung"],
      "dataset.Type": ["GCD"],
      "dataset.abstract_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/abstract_files/lung_cancer_acrg.txt"],
      "dataset.citation_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/citation_files/lung_cancer_acrg.txt"],
      "dataset.creationDate": 1301505582000,
      "dataset.creator": "Asian Cancer Research Group, Inc., (ACRG)",
      "dataset.db_id": [2],
      "dataset.description": null,
      "dataset.hasClinicalData": false,
      "dataset.hasExpressionData": false,
      "dataset.hasGeneticData": false,
      "dataset.id": "2",
      "dataset.name": "Lung Cancer ACRG",
      "dataset.readme_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/readme_files/lung_cancer_acrg.txt"],
      "dataset.releaseDate": null,
      "dataset.status": "Future",
      "dataset.user_agreement_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/user_agreement_files/lung_cancer_acrg.txt"],
      "dataset.version": "0.0.1"
    },
    {
      "dataset.Disease": ["Cancer"],
      "dataset.Institution": ["Fred Hutchinson Cancer Research Center /SKCCC at Johns Hopkins"],
      "dataset.Internal_Name": ["AML-Ped_TARGET"],
      "dataset.Number_of_Samples": [200],
      "dataset.Posting_Restriction": ["Link to data source"],
      "dataset.Species": ["Human"],
      "dataset.Tissue_Tumor": ["Blood"],
      "dataset.Type": ["GCD"],
      "dataset.abstract_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/abstract_files/pediatric_aml_target.txt"],
      "dataset.citation_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/citation_files/pediatric_aml_target.txt"],
      "dataset.creationDate": 1301505584000,
      "dataset.creator": "Soheil Meshinchi/ Bob Arceci",
      "dataset.db_id": [3],
      "dataset.description": null,
      "dataset.hasClinicalData": false,
      "dataset.hasExpressionData": false,
      "dataset.hasGeneticData": false,
      "dataset.id": "3",
      "dataset.name": "Pediatric AML TARGET",
      "dataset.readme_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/readme_files/pediatric_aml_target.txt"],
      "dataset.releaseDate": null,
      "dataset.status": "Pending",
      "dataset.user_agreement_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/user_agreement_files/pediatric_aml_target.txt"],
      "dataset.version": "0.0.1"
    }
  ],
  "totalNumberOfResults": 92
}

'Select *' Query for the Layers of a Dataset

Right now only a subset of query functionality is supported

SELECT * FROM layer WHERE dataset.id == <datasetId> [LIMIT <#>] [OFFSET <#>]

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/query?query=select+*+from+layer+where+dataset.id+==+"29"'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:51:56 GMT
Server: Apache-Coyote/1.1
transfer-encoding:chunked
Connection: keep-alive

{
  "results": [
    {
      "layer.creationDate": 1301505753000,
      "layer.description": null,
      "layer.id": "4",
      "layer.locations": null,
      "layer.name": "clinical data",
      "layer.platform": null,
      "layer.preview": null,
      "layer.processingFacility": null,
      "layer.publicationDate": null,
      "layer.qcBy": null,
      "layer.qcDate": null,
      "layer.releaseNotes": null,
      "layer.tissueType": null,
      "layer.type": "C",
      "layer.version": "0.0.1"
    },
    {
      "layer.creationDate": 1301505754000,
      "layer.description": null,
      "layer.id": "5",
      "layer.locations": null,
      "layer.name": "expression data",
      "layer.platform": null,
      "layer.preview": null,
      "layer.processingFacility": null,
      "layer.publicationDate": null,
      "layer.qcBy": null,
      "layer.qcDate": null,
      "layer.releaseNotes": null,
      "layer.tissueType": null,
      "layer.type": "E",
      "layer.version": "0.0.1"
    }
  ],
  "totalNumberOfResults": 2
}

'Order By' Query for the Layers of a Dataset

Right now only a subset of query functionality is supported

SELECT * FROM layer WHERE dataset.id == <datasetId> ORDER BY <field name> [ASC|DESC] [LIMIT <#>] [OFFSET <#>]

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/query?query=select+*+from+layer+where+dataset.id+==+"29"+ORDER+BY+type'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:51:58 GMT
Server: Apache-Coyote/1.1
transfer-encoding:chunked
Connection: keep-alive

{
  "results": [
    {
      "layer.creationDate": 1301505753000,
      "layer.description": null,
      "layer.id": "4",
      "layer.locations": null,
      "layer.name": "clinical data",
      "layer.platform": null,
      "layer.preview": null,
      "layer.processingFacility": null,
      "layer.publicationDate": null,
      "layer.qcBy": null,
      "layer.qcDate": null,
      "layer.releaseNotes": null,
      "layer.tissueType": null,
      "layer.type": "C",
      "layer.version": "0.0.1"
    },
    {
      "layer.creationDate": 1301505754000,
      "layer.description": null,
      "layer.id": "5",
      "layer.locations": null,
      "layer.name": "expression data",
      "layer.platform": null,
      "layer.preview": null,
      "layer.processingFacility": null,
      "layer.publicationDate": null,
      "layer.qcBy": null,
      "layer.qcDate": null,
      "layer.releaseNotes": null,
      "layer.tissueType": null,
      "layer.type": "E",
      "layer.version": "0.0.1"
    }
  ],
  "totalNumberOfResults": 2
}

REST API Examples (Read Only)

Sanity check request

This is just a 'hello world' type request that you can make to ensure that the service is running.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/test'

Response

HTTP/1.1 200 OK
Cache-Control: no-cache, no-store, max-age=0
Content-Language: en-US
Content-Type: application/json;charset=UTF-8
Date: Wed, 30 Mar 2011 17:51:58 GMT
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Pragma: no-cache
Server: Apache-Coyote/1.1
transfer-encoding:chunked
Connection: keep-alive

{"hello": "REST for Datasets rocks"}

Get All Datasets

Optional Parameters

  • offset - integer - 1-based pagination offset
  • limit - integer - maximum number of results to return
  • sort - string - the name of the field upon which to sort
  • ascending - boolean - whether or not to sort ascending

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset?sort=name&limit=3'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:51:58 GMT
Server: Apache-Coyote/1.1
Content-Length: 1242
Connection: keep-alive

{
  "paging": {"next": "/repo/v1/dataset?offset=4&limit=3&sort=name&ascending=true"},
  "results": [
    {
      "annotations": "/repo/v1/dataset/74/annotations",
      "creationDate": 1301505688000,
      "creator": "Stephen Friend",
      "description": null,
      "etag": "1841477848",
      "hasClinicalData": false,
      "hasExpressionData": false,
      "hasGeneticData": false,
      "id": "74",
      "layer": "/repo/v1/dataset/74/layer",
      "name": "AML Nonresponders Cohort",
      "releaseDate": null,
      "status": "Future",
      "uri": "/repo/v1/dataset/74",
      "version": "0.0.1"
    },
    {
      "annotations": "/repo/v1/dataset/96/annotations",
      "creationDate": 1301505719000,
      "creator": "TCGA",
      "description": null,
      "etag": "867915198",
      "hasClinicalData": false,
      "hasExpressionData": false,
      "hasGeneticData": false,
      "id": "96",
      "layer": "/repo/v1/dataset/96/layer",
      "name": "AML TCGA",
      "releaseDate": null,
      "status": "Future",
      "uri": "/repo/v1/dataset/96",
      "version": "0.0.1"
    },
    {
      "annotations": "/repo/v1/dataset/25/annotations",
      "creationDate": 1301505618000,
      "creator": "Cookson",
      "description": null,
      "etag": "-619027979",
      "hasClinicalData": false,
      "hasExpressionData": false,
      "hasGeneticData": false,
      "id": "25",
      "layer": "/repo/v1/dataset/25/layer",
      "name": "Asthma Human Lymphoblastoid Cell Lines",
      "releaseDate": null,
      "status": "Future",
      "uri": "/repo/v1/dataset/25",
      "version": "0.0.1"
    }
  ],
  "totalNumberOfResults": 114
}

Get a Dataset

This returns the primary fields of a dataset and links to get additional info.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:51:58 GMT
ETag: 1251978675
Server: Apache-Coyote/1.1
Content-Length: 399
Connection: keep-alive

{
  "annotations": "/repo/v1/dataset/29/annotations",
  "creationDate": 1301505623000,
  "creator": "Fred Guengrich/Steve Strom/ Erin Schuetz",
  "description": null,
  "etag": "1251978675",
  "hasClinicalData": true,
  "hasExpressionData": true,
  "hasGeneticData": false,
  "id": "29",
  "layer": "/repo/v1/dataset/29/layer",
  "name": "Human Liver Cohort",
  "releaseDate": null,
  "status": "Current",
  "uri": "/repo/v1/dataset/29",
  "version": "0.0.1"
}

Get Annotations for a Dataset

This returns the annotations for a dataset.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/annotations'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:51:59 GMT
ETag: 759752322
Server: Apache-Coyote/1.1
Content-Length: 878
Connection: keep-alive

{
  "creationDate": null,
  "dateAnnotations": {},
  "doubleAnnotations": {},
  "etag": "759752322",
  "id": "29",
  "longAnnotations": {
    "Number_of_Samples": [517],
    "db_id": [29]
  },
  "stringAnnotations": {
    "Disease": ["CVD"],
    "Institution": ["Vanderbilt University/ University of Pittsburg/ StJudes Hospital"],
    "Internal_Name": ["Deliver"],
    "Posting_Restriction": ["Link to data source"],
    "Species": ["Human"],
    "Tissue_Tumor": ["Liver"],
    "Type": ["GCD"],
    "abstract_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/abstract_files/human_liver_cohort.txt"],
    "citation_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/citation_files/human_liver_cohort.txt"],
    "readme_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/readme_files/human_liver_cohort.txt"],
    "user_agreement_file_path": ["/srv/www/htdocs/Foswiki/downloads/data/v2/user_agreement_files/human_liver_cohort.txt"]
  },
  "uri": "/repo/v1/dataset/29/annotations"
}

Get all the Layers for a Dataset

This returns the primary fields for all the layers of a dataset.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:01 GMT
Server: Apache-Coyote/1.1
Content-Length: 1225
Connection: keep-alive

{
  "paging": {},
  "results": [
    {
      "annotations": "/repo/v1/dataset/29/layer/4/annotations",
      "creationDate": 1301505753000,
      "description": null,
      "etag": "-1961017803",
      "id": "4",
      "locations": [
        "/repo/v1/dataset/29/layer/4/awsEBSLocation",
        "/repo/v1/dataset/29/layer/4/locations",
        "/repo/v1/dataset/29/layer/4/sageLocation",
        "/repo/v1/dataset/29/layer/4/awsS3Location"
      ],
      "name": "clinical data",
      "platform": null,
      "preview": "/repo/v1/dataset/29/layer/4/preview",
      "processingFacility": null,
      "publicationDate": null,
      "qcBy": null,
      "qcDate": null,
      "releaseNotes": null,
      "tissueType": null,
      "type": "C",
      "uri": "/repo/v1/dataset/29/layer/4",
      "version": "0.0.1"
    },
    {
      "annotations": "/repo/v1/dataset/29/layer/5/annotations",
      "creationDate": 1301505754000,
      "description": null,
      "etag": "1442309632",
      "id": "5",
      "locations": [
        "/repo/v1/dataset/29/layer/5/sageLocation",
        "/repo/v1/dataset/29/layer/5/awsEBSLocation",
        "/repo/v1/dataset/29/layer/5/awsS3Location",
        "/repo/v1/dataset/29/layer/5/locations"
      ],
      "name": "expression data",
      "platform": null,
      "preview": "/repo/v1/dataset/29/layer/5/preview",
      "processingFacility": null,
      "publicationDate": null,
      "qcBy": null,
      "qcDate": null,
      "releaseNotes": null,
      "tissueType": null,
      "type": "E",
      "uri": "/repo/v1/dataset/29/layer/5",
      "version": "0.0.1"
    }
  ],
  "totalNumberOfResults": 2
}

Get a Clinical Dataset Layer

This returns the metadata for a dataset layer.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/4'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:01 GMT
ETag: -1961017803
Server: Apache-Coyote/1.1
Content-Length: 586
Connection: keep-alive

{
  "annotations": "/repo/v1/dataset/29/layer/4/annotations",
  "creationDate": 1301505753000,
  "description": null,
  "etag": "-1961017803",
  "id": "4",
  "locations": [
    "/repo/v1/dataset/29/layer/4/awsEBSLocation",
    "/repo/v1/dataset/29/layer/4/locations",
    "/repo/v1/dataset/29/layer/4/sageLocation",
    "/repo/v1/dataset/29/layer/4/awsS3Location"
  ],
  "name": "clinical data",
  "platform": null,
  "preview": "/repo/v1/dataset/29/layer/4/preview",
  "processingFacility": null,
  "publicationDate": null,
  "qcBy": null,
  "qcDate": null,
  "releaseNotes": null,
  "tissueType": null,
  "type": "C",
  "uri": "/repo/v1/dataset/29/layer/4",
  "version": "0.0.1"
}

Get Annotations for a Clinical Dataset Layer

This returns the annotations for a dataset layer.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/4/annotations'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:01 GMT
ETag: 923521
Server: Apache-Coyote/1.1
Content-Length: 182
Connection: keep-alive

{
  "creationDate": null,
  "dateAnnotations": {},
  "doubleAnnotations": {},
  "etag": "923521",
  "id": "4",
  "longAnnotations": {},
  "stringAnnotations": {},
  "uri": "/repo/v1/dataset/29/layer/4/annotations"
}

Get preview data for a Clinical Dataset Layer

This returns the preview data for a dataset layer.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/4/preview'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:01 GMT
ETag: -397819108
Server: Apache-Coyote/1.1
Content-Length: 1331
Connection: keep-alive

{
  "etag": "-397819108",
  "id": "4",
  "preview": "Patient_ID\tAGE_(YRS)\tGENDER\tself_reported_ethnicity\tinferred_population\tWEIGHT_(KG)\taldehyde_oxydase\tLiver_Triglyceride_(mg_per_dL)\tBMI\tCYP3A4M_activity\tCYP3A4T_activity\tCYP2D6_activity\tCYP2C9_activity\tCYP2C19_activity\tCYP1A2_activity\tCYP2E1_activity\tCYP2C8_activity\tCYP2B6_activity\tCYP2A6_activity\r\n2220047\t28\tMale\tW\t\t81.6466266\t0\t39.549496\t24.41213818\t243.0098852\t2140\t106.3893066\t192.1470848\t33.9\t214.121382\t1463.340565\t25.41287049\t136.3497127\t372.2884775\r\n2220125\t53\tMale\tW\tCauc\t90.718474\t301.1994652\t38.043172\t26.38654831\t998.1112015\t1090\t217.9309594\t153.6023179\t2.29\t85.25288801\t604.1760022\t14.38833099\t90.72594827\t1190\r\n2220074\t13\tMale\tW\tCauc\t79.83225712\t270.6021297\t35.197126\t32.19049064\t1280\t8290\t190.0967695\t118.1938134\t4\t165.948579\t1150.957744\t35.81644051\t597.7469548\t1090\r\n2220061\t67\tMale\tW\tCauc\t80.73944186\t207.2369312\t34.77267\t24.82570624\t578.5124238\t3820\t98.84809931\t139.3941994\t4.31\t107.5039309\t614.2210811\t9.422549075\t87.0766129\t562.6816642\r\n2220035\t7\tFemale\tW\t\t24.94758035\t482.0762739\t34.677976\t13.26091457\t2180\t13400\t121.2930083\t405.9352223\t45.4\t378.584658\t1372.071808\t82.5516209\t212.8191764\t283.4658954\r\n",
  "uri": "/repo/v1/dataset/29/layer/4/preview"
}

Get preview data as a map for a Clinical Dataset Layer

This returns the preview data for a dataset layer.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/4/previewAsMap'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:02 GMT
Server: Apache-Coyote/1.1
Content-Length: 2762
Connection: keep-alive

{
  "results": [
    {
      "AGE_(YRS)": "28",
      "BMI": "24.41213818",
      "CYP1A2_activity": "214.121382",
      "CYP2A6_activity\r": "372.2884775\r",
      "CYP2B6_activity": "136.3497127",
      "CYP2C19_activity": "33.9",
      "CYP2C8_activity": "25.41287049",
      "CYP2C9_activity": "192.1470848",
      "CYP2D6_activity": "106.3893066",
      "CYP2E1_activity": "1463.340565",
      "CYP3A4M_activity": "243.0098852",
      "CYP3A4T_activity": "2140",
      "GENDER": "Male",
      "Liver_Triglyceride_(mg_per_dL)": "39.549496",
      "Patient_ID": "2220047",
      "WEIGHT_(KG)": "81.6466266",
      "aldehyde_oxydase": "0",
      "inferred_population": "",
      "self_reported_ethnicity": "W"
    },
    {
      "AGE_(YRS)": "53",
      "BMI": "26.38654831",
      "CYP1A2_activity": "85.25288801",
      "CYP2A6_activity\r": "1190\r",
      "CYP2B6_activity": "90.72594827",
      "CYP2C19_activity": "2.29",
      "CYP2C8_activity": "14.38833099",
      "CYP2C9_activity": "153.6023179",
      "CYP2D6_activity": "217.9309594",
      "CYP2E1_activity": "604.1760022",
      "CYP3A4M_activity": "998.1112015",
      "CYP3A4T_activity": "1090",
      "GENDER": "Male",
      "Liver_Triglyceride_(mg_per_dL)": "38.043172",
      "Patient_ID": "2220125",
      "WEIGHT_(KG)": "90.718474",
      "aldehyde_oxydase": "301.1994652",
      "inferred_population": "Cauc",
      "self_reported_ethnicity": "W"
    },
    {
      "AGE_(YRS)": "13",
      "BMI": "32.19049064",
      "CYP1A2_activity": "165.948579",
      "CYP2A6_activity\r": "1090\r",
      "CYP2B6_activity": "597.7469548",
      "CYP2C19_activity": "4",
      "CYP2C8_activity": "35.81644051",
      "CYP2C9_activity": "118.1938134",
      "CYP2D6_activity": "190.0967695",
      "CYP2E1_activity": "1150.957744",
      "CYP3A4M_activity": "1280",
      "CYP3A4T_activity": "8290",
      "GENDER": "Male",
      "Liver_Triglyceride_(mg_per_dL)": "35.197126",
      "Patient_ID": "2220074",
      "WEIGHT_(KG)": "79.83225712",
      "aldehyde_oxydase": "270.6021297",
      "inferred_population": "Cauc",
      "self_reported_ethnicity": "W"
    },
    {
      "AGE_(YRS)": "67",
      "BMI": "24.82570624",
      "CYP1A2_activity": "107.5039309",
      "CYP2A6_activity\r": "562.6816642\r",
      "CYP2B6_activity": "87.0766129",
      "CYP2C19_activity": "4.31",
      "CYP2C8_activity": "9.422549075",
      "CYP2C9_activity": "139.3941994",
      "CYP2D6_activity": "98.84809931",
      "CYP2E1_activity": "614.2210811",
      "CYP3A4M_activity": "578.5124238",
      "CYP3A4T_activity": "3820",
      "GENDER": "Male",
      "Liver_Triglyceride_(mg_per_dL)": "34.77267",
      "Patient_ID": "2220061",
      "WEIGHT_(KG)": "80.73944186",
      "aldehyde_oxydase": "207.2369312",
      "inferred_population": "Cauc",
      "self_reported_ethnicity": "W"
    },
    {
      "AGE_(YRS)": "7",
      "BMI": "13.26091457",
      "CYP1A2_activity": "378.584658",
      "CYP2A6_activity\r": "283.4658954\r",
      "CYP2B6_activity": "212.8191764",
      "CYP2C19_activity": "45.4",
      "CYP2C8_activity": "82.5516209",
      "CYP2C9_activity": "405.9352223",
      "CYP2D6_activity": "121.2930083",
      "CYP2E1_activity": "1372.071808",
      "CYP3A4M_activity": "2180",
      "CYP3A4T_activity": "13400",
      "GENDER": "Female",
      "Liver_Triglyceride_(mg_per_dL)": "34.677976",
      "Patient_ID": "2220035",
      "WEIGHT_(KG)": "24.94758035",
      "aldehyde_oxydase": "482.0762739",
      "inferred_population": "",
      "self_reported_ethnicity": "W"
    }
  ],
  "totalNumberOfResults": 5
}

Get the awsEBSLocation for a Clinical Dataset Layer

This returns the location data for a dataset layer.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/4/awsEBSLocation'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:02 GMT
Server: Apache-Coyote/1.1
Content-Length: 50
Connection: keep-alive

{
  "path": "snap-29d33a42 (US West)",
  "type": "awsebs"
}

Get the sageLocation for a Clinical Dataset Layer

This returns the location data for a dataset layer.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/4/sageLocation'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:02 GMT
Server: Apache-Coyote/1.1
Content-Length: 74
Connection: keep-alive

{
  "path": "/Shares/external-data/DAT_030__human_liver_cohort",
  "type": "sage"
}

Get the awsS3Location for a Clinical Dataset Layer

This returns the location data for a dataset layer.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/4/awsS3Location'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:03 GMT
Server: Apache-Coyote/1.1
Content-Length: 206
Connection: keep-alive

{
  "path": "https://data01.sagebase.org.s3.amazonaws.com/human_liver_cohort.phenotype.tar.gz?Expires=1301508123&AWSAccessKeyId=thisIsAFakeAWSAccessId&Signature=Hpz6XVOOsgu%2FOAVeBTSlfqptVic%3D",
  "type": "awss3"
}

Get a Expression Dataset Layer

This returns the metadata for a dataset layer.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/5'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:03 GMT
ETag: 1442309632
Server: Apache-Coyote/1.1
Content-Length: 587
Connection: keep-alive

{
  "annotations": "/repo/v1/dataset/29/layer/5/annotations",
  "creationDate": 1301505754000,
  "description": null,
  "etag": "1442309632",
  "id": "5",
  "locations": [
    "/repo/v1/dataset/29/layer/5/sageLocation",
    "/repo/v1/dataset/29/layer/5/awsEBSLocation",
    "/repo/v1/dataset/29/layer/5/awsS3Location",
    "/repo/v1/dataset/29/layer/5/locations"
  ],
  "name": "expression data",
  "platform": null,
  "preview": "/repo/v1/dataset/29/layer/5/preview",
  "processingFacility": null,
  "publicationDate": null,
  "qcBy": null,
  "qcDate": null,
  "releaseNotes": null,
  "tissueType": null,
  "type": "E",
  "uri": "/repo/v1/dataset/29/layer/5",
  "version": "0.0.1"
}

Get Annotations for a Expression Dataset Layer

This returns the annotations for a dataset layer.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/5/annotations'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:03 GMT
ETag: 923521
Server: Apache-Coyote/1.1
transfer-encoding:chunked
Connection: keep-alive

{
  "creationDate": null,
  "dateAnnotations": {},
  "doubleAnnotations": {},
  "etag": "923521",
  "id": "5",
  "longAnnotations": {},
  "stringAnnotations": {},
  "uri": "/repo/v1/dataset/29/layer/5/annotations"
}

Get preview data for a Expression Dataset Layer

This returns the preview data for a dataset layer.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/5/preview'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:03 GMT
ETag: 158504117
Server: Apache-Coyote/1.1
transfer-encoding:chunked
Connection: keep-alive

{
  "etag": "158504117",
  "id": "5",
  "preview": "reporterid\taccessioncode\tgenesymbol\tgenesymbol_more\t3330053\t3330055\t3330056\t3330057\t3330059\t3330062\t3330063\t3330064\t3330065\t3330066\t3330067\t3330071\t3330074\t3330075\t3330079\t3330085\t3330089\t3330092\t3330093\t3330094\t3330105\t3330106\t3330108\t3330110\t3330112\t3330114\t3330115\t3330117\t3330118\t3330119\t3330121\t3330124\t3330125\t3330127\t3330130\t3330131\t3330143\t1110001\t1110005\t1110006\t1110008\t1110009\t1110010\t1110011\t1110023\t1110025\t1110033\t1110035\t1110043\t1110044\t1110063\t1110066\t1110070\t1110071\t1110072\t1110073\t1110075\t1110076\t1110077\t1110081\t1110082\t1110083\t1110085\t1110086\t1110087\t1110088\t1110090\t1110094\t1110095\t1110096\t1110097\t1110099\t1110102\t1110103\t1110105\t1110106\t1110107\t1110109\t1110110\t1110111\t1110112\t1110113\t1110114\t1110115\t1110117\t1110119\t1110121\t1110122\t1110123\t1110125\t1110126\t1110128\t1110129\t1110130\t1110131\t1110132\t1110133\t1110134\t1110135\t1110137\t1110138\t1110139\t1110140\t1110143\t1110144\t1110145\t1110191\t1110192\t1110193\t1110194\t1110195\t1110196\t1110197\t1110200\t1110201\t1110202\t1110203\t1110204\t1110205\t1110206\t1110208\t1110210\t1110212\t1110214\t1110215\t1110217\t1110218\t1110219\t1110220\t1110221\t1110222\t1110223\t1110227\t1110228\t1110229\t1110230\t1110232\t1110234\t1110236\t1110237\t1110238\t1110239\t1110241\t1110242\t1110243\t1110245\t1110246\t1110251\t1110252\t1110255\t1110256\t1110257\t1110258\t1110259\t1110260\t1110334\t1110335\t1110336\t1110337\t1110338\t1110339\t1110340\t1110341\t1110344\t1110345\t1110349\t1110350\t1110351\t1110353\t1110356\t1110357\t1110360\t1110361\t1110363\t1110366\t1110367\t1110368\t1110372\t1110373\t1110377\t1110378\t1110385\t1110386\t1110387\t1110389\t1110393\t1110394\t1110395\t1110396\t1110397\t1110398\t1110400\t1110261\t1110262\t1110263\t1110264\t1110265\t1110267\t1110268\t1110272\t1110273\t1110274\t1110275\t1110279\t1110291\t1110292\t1110293\t1110294\t1110299\t1110300\t1110310\t1110319\t1110320\t1110321\t1110322\t1110146\t1110147\t1110149\t1110150\t1110164\t1110165\t1110166\t1110180\t1110181\t1110184\t1110185\t1110187\t1110188\t1110189\t1110403\t1110404\t1110405\t1110406\t1110411\t1110412\t1110413\t1110418\t1110420\t1110421\t1110422\t1110427\t1110428\t1110429\t1110430\t1110433\t1110436\t1110437\t1110438\t1110439\t1110440\t1110441\t1110443\t1110447\t1110448\t1110449\t1110450\t1110451\t1110453\t1110454\t1110455\t1110456\t1110457\t1110458\t1110459\t1110460\t1110461\t1110463\t1110473\t1110474\t1110476\t1110477\t1110478\t1110480\t1110482\t1110485\t1110488\t1110497\t1110499\t1110500\t1110502\t1110503\t1110504\t2220001\t2220004\t2220008\t2220011\t2220012\t2220015\t2220017\t2220018\t2220019\t2220021\t2220025\t2220026\t2220029\t2220040\t2220041\t2220043\t2220046\t2220048\t2220049\t2220051\t2220052\t2220053\t2220055\t2220056\t2220057\t2220058\t2220061\t2220062\t2220063\t2220067\t2220068\t2220070\t2220071\t2220072\t2220073\t2220074\t2220075\t2220076\t2220077\t2220079\t2220083\t2220084\t2220086\t2220087\t2220088\t2220089\t2220091\t2220092\t2220093\t2220094\t2220095\t2220097\t2220098\t2220099\t2220100\t2220101\t2220102\t2220104\t2220106\t2220107\t2220108\t2220109\t2220112\t2220116\t2220117\t2220121\t2220122\t2220125\t2220126\t2220129\t2220131\t2220132\t2220133\t2220134\t2220135\t2220137\t2220138\t2220139\t2220140\t2220141\t2220143\t2220144\t2220145\t2220146\t2220147\t2220148\t2220149\t2220150\t2220151\t2220152\t2220153\t2220154\t2220155\t2220157\t2220158\t2220159\t2220160\t2220162\t2220163\t2220165\t2220166\t2220167\t2220169\t2220171\t2220172\t2220173\t2220174\t2220175\t2220176\t2220177\t2220178\t2220180\t2220181\t2220182\t2220183\t2220184\t2220185\t2220186\t2220187\t2220188\t2220189\t2220190\t2220191\t2220192\t2220194\t2220196\t2220197\t2220198\t2220199\t2220200\t2220201\t2220202\t2220203\t2220204\t2220205\t2220206\t2220209\t2220219\t2220220\t2220221\t2220222\t2220225\t2220226\t2220233\t2220234\t2220235\t2220236\t2220238\t2220239\t2220241\t2220242\t2220243\t2220248\t2220249\t2220250\t2220251\t2220252\t2220253\t2220254\t2220256\t2220257\t2220260\t2220261\t2220262\t2220263\t2220264\t2220265\t2220266\t2220268\t2220269\t2220270\t2220271\t2220274\t2220275\t2220276\t2220277\t2220279\t2220280\t2220281\t2220282\t2220283\t2220285\t2220286\t2220287\r\n10479896\tPro25G\tPro25G\tPro25G\t-0.197817\t-0.010559\t-0.181273\t-0.226053\t-0.095017\t-0.159242\t-0.238542\t-0.24961\t-0.306768\t-0.273512\t-0.386752\t-0.415376\t-0.154273\t-0.103215\t-0.178766\t-0.021688\t-0.255868\t-0.153656\t-0.227435\t-0.04862\t-0.342263\t-0.28633\t-0.178428\t-0.121768\t-0.025478\t-0.200044\t-0.243292\t-0.134872\t-0.197961\t-0.156581\t-0.291354\t-0.266975\t-0.067417\t-0.098308\t-0.00779\t-0.298899\t-0.26744\t0.235562\t0.218965\t0.300516\t0.16009\t0.233883\t0.139364\t0.260499\t0.13199\t0.11855\t0.270383\t0.268439\t0.190762\t0.274975\t0.125049\t0.156258\t0.129942\t0.236298\t0.415599\t0.108745\t0.586675\t0.215099\t0.119742\t0.127944\t0.190528\t0.324113\t0.056604\t0.229058\t0.171396\t0.239457\t0.185605\t0.28129\t0.434382\t0.106157\t0.209314\t0.148762\t0.384891\t0.083221\t0.061347\t0.213321\t0.394484\t0.331495\t0.375077\t0.189593\t0.210103\t0.288722\t0.290022\t0.441432\t0.176891\t0.211516\t0.114255\t0.15486\t0.226049\t0.323837\t0.323438\t0.245062\t0.158348\t0.157438\t0.245658\t0.045379\t0.148622\t0.088179\t0.135844\t0.097061\t0.13629\t0.01557\t0.148356\t0.106346\t0.290704\t0.452654\t0.172033\t0.067203\t0.209924\t0.066571\t0.205179\t0.360044\t0.079141\t0.070446\t0.239064\t0.228669\t0.187102\t0.261845\t0.260858\t0.07926\t0.207471\t0.297711\t0.034173\t0.063452\t0.266145\t0.189551\t0.200695\t0.120911\t0.21421\t0.061771\t0.089307\t0.120789\t0.064127\t0.136997\t0.029466\t0.193688\t0.172336\t0.254129\t0.209872\t0.493078\t0.230842\t0.062762\t0.208945\t0.001892\t-0.051355\t0.076696\t0.331412\t0.139348\t0.137742\t0.219948\t0.177766\t0.205993\t0.259249\t0.354037\t0.023718\t0.146074\t0.2306\t0.143094\t0.372221\t0.120742\t0.162912\t-0.050635\t-0.043154\t0.193201\t0.204499\t0.174388\t0.281703\t0.117617\t0.126539\t0.203473\t0.233785\t0.283993\t0.25465\t0.463446\t0.130956\t0.131466\t0.286303\t0.356218\t0.472351\t0.22128\t0.162434\t0.164342\t0.068883\t0.183197\t0.057289\t0.148378\t0.139039\t0.077124\t0.129662\t0.000975\t-0.002149\t0.107437\t0.147527\t0.135477\t0.075006\t0.152228\t0.1816\t0.191393\t0.359232\t0.284842\t0.321029\t0.243589\t0.120014\t0.373386\t0.182372\t0.004319\t0.216653\t0.136565\t0.203604\t0.179511\t0.170804\t0.089954\t0.089126\t0.052726\t0.122028\t0.140398\t0.072526\t0.143955\t0.340495\t0.191651\t0.17374\t0.060613\t0.197906\t0.107014\t0.011581\t0.054617\t0.00281\t0.493174\t0.196926\t-0.016247\t-0.047362\t0.119216\t0.093077\t0.064847\t0.146223\t-0.050893\t0.029142\t0.071589\t-0.006525\t-0.112914\t0.180305\t0.177339\t0.2633\t0.053614\t0.094744\t0.2232\t0.121936\t0.009149\t0.030497\t0.146979\t0.005819\t-0.028289\t0.063055\t0.030769\t0.240623\t0.412709\t0.403303\t0.232812\t0.397894\t0.295627\t0.215707\t0.068323\t0.197015\t0.168904\t0.158723\t0.075985\t0.095992\t0.262213\t0.162368\t0.169069\t0.215488\t0.122418\t0.043349\t-0.017918\t0.169847\t0.144416\t0.206748\t0.384815\t0.275071\t0.025143\t0.047566\t0.248813\t0.195843\t0.209756\t0.141161\t0.089795\t0.309738\t0.119658\t0.342888\t0.208956\t0.351647\t0.150896\t0.119182\t0.087708\t0.062915\t0.12717\t0.082586\t0.291136\t0.035172\t0.088446\t-0.051722\t0.011573\t0.080143\t0.191165\t0.098075\t0.036677\t0.154763\t0.076617\t-0.052328\t0.115699\t-0.069678\t-0.067783\t0.106953\t0.028368\t0.268972\t0.233209\t-0.079834\t0.138598\t0.275511\t0.255731\t0.016324\t0.194789\t-0.038222\t0.090098\t0.043502\t-0.027065\t0.148087\t0.114101\t0.078393\t0.323169\t0.087148\t0.289402\t0.07764\t0.106026\t0.06228\t0.193772\t-0.085459\t-0.117389\t0.000128\t0.174948\t0.175209\t0.108281\t0.344535\t0.038786\t0.058157\t0.134217\t0.268431\t0.076402\t0.280146\t0.175643\t0.400413\t0.023966\t0.286791\t0.59847\t0.068835\t0.121133\t0.02355\t0.339276\t0.514707\t0.039249\t0.110762\t0.166989\t0.184619\t0.275427\t0.23331\t0.251776\t0.288429\t-0.001658\t-0.039072\t0.415429\t0.113368\t0.232995\t0.325542\t0.213212\t0.133882\t0.284017\t0.027685\t0.06789\t0.366087\t0.117319\t0.188094\t0.247475\t0.010906\t0.283809\t-0.063767\t0.110516\t0.1
  "uri": "/repo/v1/dataset/29/layer/5/preview"
}

Get preview data as a map for a Expression Dataset Layer

This returns the preview data for a dataset layer.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/5/previewAsMap'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:04 GMT
Server: Apache-Coyote/1.1
transfer-encoding:chunked
Connection: keep-alive

{
  "results": [
    {
      "1110001": "0.235562",
      "1110005": "0.218965",
      "1110006": "0.300516",
      "1110008": "0.16009",
      "1110009": "0.233883",
      "1110010": "0.139364",
      "1110011": "0.260499",
      "1110023": "0.13199",
      "1110025": "0.11855",
      "1110033": "0.270383",
      "1110035": "0.268439",
      "1110043": "0.190762",
      "1110044": "0.274975",
      "1110063": "0.125049",
      "1110066": "0.156258",
      "1110070": "0.129942",
      "1110071": "0.236298",
      "1110072": "0.415599",
      "1110073": "0.108745",
      "1110075": "0.586675",
      "1110076": "0.215099",
      "1110077": "0.119742",
      "1110081": "0.127944",
      "1110082": "0.190528",
      "1110083": "0.324113",
      "1110085": "0.056604",
      "1110086": "0.229058",
      "1110087": "0.171396",
      "1110088": "0.239457",
      "1110090": "0.185605",
      "1110094": "0.28129",
      "1110095": "0.434382",
      "1110096": "0.106157",
      "1110097": "0.209314",
      "1110099": "0.148762",
      "1110102": "0.384891",
      "1110103": "0.083221",
      "1110105": "0.061347",
      "1110106": "0.213321",
      "1110107": "0.394484",
      "1110109": "0.331495",
      "1110110": "0.375077",
      "1110111": "0.189593",
      "1110112": "0.210103",
      "1110113": "0.288722",
      "1110114": "0.290022",
      "1110115": "0.441432",
      "1110117": "0.176891",
      "1110119": "0.211516",
      "1110121": "0.114255",
      "1110122": "0.15486",
      "1110123": "0.226049",
      "1110125": "0.323837",
      "1110126": "0.323438",
      "1110128": "0.245062",
      "1110129": "0.158348",
      "1110130": "0.157438",
      "1110131": "0.245658",
      "1110132": "0.045379",
      "1110133": "0.148622",
      "1110134": "0.088179",
      "1110135": "0.135844",
      "1110137": "0.097061",
      "1110138": "0.13629",
      "1110139": "0.01557",
      "1110140": "0.148356",
      "1110143": "0.106346",
      "1110144": "0.290704",
      "1110145": "0.452654",
      "1110146": "0.140398",
      "1110147": "0.072526",
      "1110149": "0.143955",
      "1110150": "0.340495",
      "1110164": "0.191651",
      "1110165": "0.17374",
      "1110166": "0.060613",
      "1110180": "0.197906",
      "1110181": "0.107014",
      "1110184": "0.011581",
      "1110185": "0.054617",
      "1110187": "0.00281",
      "1110188": "0.493174",
      "1110189": "0.196926",
      "1110191": "0.172033",
      "1110192": "0.067203",
      "1110193": "0.209924",
      "1110194": "0.066571",
      "1110195": "0.205179",
      "1110196": "0.360044",
      "1110197": "0.079141",
      "1110200": "0.070446",
      "1110201": "0.239064",
      "1110202": "0.228669",
      "1110203": "0.187102",
      "1110204": "0.261845",
      "1110205": "0.260858",
      "1110206": "0.07926",
      "1110208": "0.207471",
      "1110210": "0.297711",
      "1110212": "0.034173",
      "1110214": "0.063452",
      "1110215": "0.266145",
      "1110217": "0.189551",
      "1110218": "0.200695",
      "1110219": "0.120911",
      "1110220": "0.21421",
      "1110221": "0.061771",
      "1110222": "0.089307",
      "1110223": "0.120789",
      "1110227": "0.064127",
      "1110228": "0.136997",
      "1110229": "0.029466",
      "1110230": "0.193688",
      "1110232": "0.172336",
      "1110234": "0.254129",
      "1110236": "0.209872",
      "1110237": "0.493078",
      "1110238": "0.230842",
      "1110239": "0.062762",
      "1110241": "0.208945",
      "1110242": "0.001892",
      "1110243": "-0.051355",
      "1110245": "0.076696",
      "1110246": "0.331412",
      "1110251": "0.139348",
      "1110252": "0.137742",
      "1110255": "0.219948",
      "1110256": "0.177766",
      "1110257": "0.205993",
      "1110258": "0.259249",
      "1110259": "0.354037",
      "1110260": "0.023718",
      "1110261": "0.147527",
      "1110262": "0.135477",
      "1110263": "0.075006",
      "1110264": "0.152228",
      "1110265": "0.1816",
      "1110267": "0.191393",
      "1110268": "0.359232",
      "1110272": "0.284842",
      "1110273": "0.321029",
      "1110274": "0.243589",
      "1110275": "0.120014",
      "1110279": "0.373386",
      "1110291": "0.182372",
      "1110292": "0.004319",
      "1110293": "0.216653",
      "1110294": "0.136565",
      "1110299": "0.203604",
      "1110300": "0.179511",
      "1110310": "0.170804",
      "1110319": "0.089954",
      "1110320": "0.089126",
      "1110321": "0.052726",
      "1110322": "0.122028",
      "1110334": "0.146074",
      "1110335": "0.2306",
      "1110336": "0.143094",
      "1110337": "0.372221",
      "1110338": "0.120742",
      "1110339": "0.162912",
      "1110340": "-0.050635",
      "1110341": "-0.043154",
      "1110344": "0.193201",
      "1110345": "0.204499",
      "1110349": "0.174388",
      "1110350": "0.281703",
      "1110351": "0.117617",
      "1110353": "0.126539",
      "1110356": "0.203473",
      "1110357": "0.233785",
      "1110360": "0.283993",
      "1110361": "0.25465",
      "1110363": "0.463446",
      "1110366": "0.130956",
      "1110367": "0.131466",
      "1110368": "0.286303",
      "1110372": "0.356218",
      "1110373": "0.472351",
      "1110377": "0.22128",
      "1110378": "0.162434",
      "1110385": "0.164342",
      "1110386": "0.068883",
      "1110387": "0.183197",
      "1110389": "0.057289",
      "1110393": "0.148378",
      "1110394": "0.139039",
      "1110395": "0.077124",
      "1110396": "0.129662",
      "1110397": "0.000975",
      "1110398": "-0.002149",
      "1110400": "0.107437",
      "1110403": "-0.016247",
      "1110404": "-0.047362",
      "1110405": "0.119216",
      "1110406": "0.093077",
      "1110411": "0.064847",
      "1110412": "0.146223",
      "1110413": "-0.050893",
      "1110418": "0.029142",
      "1110420": "0.071589",
      "1110421": "-0.006525",
      "1110422": "-0.112914",
      "1110427": "0.180305",
      "1110428": "0.177339",
      "1110429": "0.2633",
      "1110430": "0.053614",
      "1110433": "0.094744",
      "1110436": "0.2232",
      "1110437": "0.121936",
      "1110438": "0.009149",
      "1110439": "0.030497",
      "1110440": "0.146979",
      "1110441": "0.005819",
      "1110443": "-0.028289",
      "1110447": "0.063055",
      "1110448": "0.030769",
      "1110449": "0.240623",
      "1110450": "0.412709",
      "1110451": "0.403303",
      "1110453": "0.232812",
      "1110454": "0.397894",
      "1110455": "0.295627",
      "1110456": "0.215707",
      "1110457": "0.068323",
      "1110458": "0.197015",
      "1110459": "0.168904",
      "1110460": "0.158723",
      "1110461": "0.075985",
      "1110463": "0.095992",
      "1110473": "0.262213",
      "1110474": "0.162368",
      "1110476": "0.169069",
      "1110477": "0.215488",
      "1110478": "0.122418",
      "1110480": "0.043349",
      "1110482": "-0.017918",
      "1110485": "0.169847",
      "1110488": "0.144416",
      "1110497": "0.206748",
      "1110499": "0.384815",
      "1110500": "0.275071",
      "1110502": "0.025143",
      "1110503": "0.047566",
      "1110504": "0.248813",
      "2220001": "0.195843",
      "2220004": "0.209756",
      "2220008": "0.141161",
      "2220011": "0.089795",
      "2220012": "0.309738",
      "2220015": "0.119658",
      "2220017": "0.342888",
      "2220018": "0.208956",
      "2220019": "0.351647",
      "2220021": "0.150896",
      "2220025": "0.119182",
      "2220026": "0.087708",
      "2220029": "0.062915",
      "2220040": "0.12717",
      "2220041": "0.082586",
      "2220043": "0.291136",
      "2220046": "0.035172",
      "2220048": "0.088446",
      "2220049": "-0.051722",
      "2220051": "0.011573",
      "2220052": "0.080143",
      "2220053": "0.191165",
      "2220055": "0.098075",
      "2220056": "0.036677",
      "2220057": "0.154763",
      "2220058": "0.076617",
      "2220061": "-0.052328",
      "2220062": "0.115699",
      "2220063": "-0.069678",
      "2220067": "-0.067783",
      "2220068": "0.106953",
      "2220070": "0.028368",
      "2220071": "0.268972",
      "2220072": "0.233209",
      "2220073": "-0.079834",
      "2220074": "0.138598",
      "2220075": "0.275511",
      "2220076": "0.255731",
      "2220077": "0.016324",
      "2220079": "0.194789",
      "2220083": "-0.038222",
      "2220084": "0.090098",
      "2220086": "0.043502",
      "2220087": "-0.027065",
      "2220088": "0.148087",
      "2220089": "0.114101",
      "2220091": "0.078393",
      "2220092": "0.323169",
      "2220093": "0.087148",
      "2220094": "0.289402",
      "2220095": "0.07764",
      "2220097": "0.106026",
      "2220098": "0.06228",
      "2220099": "0.193772",
      "2220100": "-0.085459",
      "2220101": "-0.117389",
      "2220102": "0.000128",
      "2220104": "0.174948",
      "2220106": "0.175209",
      "2220107": "0.108281",
      "2220108": "0.344535",
      "2220109": "0.038786",
      "2220112": "0.058157",
      "2220116": "0.134217",
      "2220117": "0.268431",
      "2220121": "0.076402",
      "2220122": "0.280146",
      "2220125": "0.175643",
      "2220126": "0.400413",
      "2220129": "0.023966",
      "2220131": "0.286791",
      "2220132": "0.59847",
      "2220133": "0.068835",
      "2220134": "0.121133",
      "2220135": "0.02355",
      "2220137": "0.339276",
      "2220138": "0.514707",
      "2220139": "0.039249",
      "2220140": "0.110762",
      "2220141": "0.166989",
      "2220143": "0.184619",
      "2220144": "0.275427",
      "2220145": "0.23331",
      "2220146": "0.251776",
      "2220147": "0.288429",
      "2220148": "-0.001658",
      "2220149": "-0.039072",
      "2220150": "0.415429",
      "2220151": "0.113368",
      "2220152": "0.232995",
      "2220153": "0.325542",
      "2220154": "0.213212",
      "2220155": "0.133882",
      "2220157": "0.284017",
      "2220158": "0.027685",
      "2220159": "0.06789",
      "2220160": "0.366087",
      "2220162": "0.117319",
      "2220163": "0.188094",
      "2220165": "0.247475",
      "2220166": "0.010906",
      "2220167": "0.283809",
      "2220169": "-0.063767",
      "2220171": "0.110516",
      "2220172": "0.122853",
      "2220173": "0.336669",
      "2220174": "0.376784",
      "2220175": "0.124608",
      "2220176": "0.312292",
      "2220177": "0.15461",
      "2220178": "0.15001",
      "2220180": "0.057795",
      "2220181": "0.146858",
      "2220182": "0.196668",
      "2220183": "0.164221",
      "2220184": "0.247241",
      "2220185": "0.118337",
      "2220186": "0.187404",
      "2220187": "-0.028074",
      "2220188": "0.07322",
      "2220189": "0.164724",
      "2220190": "0.067732",
      "2220191": "0.175647",
      "2220192": "-0.016639",
      "2220194": "0.208211",
      "2220196": "0.009838",
      "2220197": "0.224759",
      "2220198": "0.291768",
      "2220199": "0.083237",
      "2220200": "0.21915",
      "2220201": "0.122121",
      "2220202": "0.038996",
      "2220203": "0.140322",
      "2220204": "0.091384",
      "2220205": "-0.002806",
      "2220206": "0.205954",
      "2220209": "0.123695",
      "2220219": "0.072426",
      "2220220": "0.207414",
      "2220221": "0.061845",
      "2220222": "0.151015",
      "2220225": "0.418576",
      "2220226": "0.123291",
      "2220233": "-0.046524",
      "2220234": "0.103713",
      "2220235": "0.320348",
      "2220236": "-0.06634",
      "2220238": "0.070673",
      "2220239": "-0.035836",
      "2220241": "0.318067",
      "2220242": "-0.039093",
      "2220243": "0.047569",
      "2220248": "0.124315",
      "2220249": "0.161023",
      "2220250": "0.197072",
      "2220251": "0.047876",
      "2220252": "0.038688",
      "2220253": "0.25549",
      "2220254": "0.09378",
      "2220256": "0.067266",
      "2220257": "0.434971",
      "2220260": "0.074996",
      "2220261": "0.049721",
      "2220262": "0.135395",
      "2220263": "-0.078968",
      "2220264": "0.045379",
      "2220265": "0.200568",
      "2220266": "0.068407",
      "2220268": "0.059633",
      "2220269": "0.10075",
      "2220270": "0.003555",
      "2220271": "-0.02144",
      "2220274": "0.244022",
      "2220275": "0.060011",
      "2220276": "0.172084",
      "2220277": "0.010792",
      "2220279": "0.129634",
      "2220280": "0.159772",
      "2220281": "0.098526",
      "2220282": "0.071529",
      "2220283": "0.154717",
      "2220285": "0.190434",
      "2220286": "0.09441",
      "2220287\r": "0.321524\r",
      "3330053": "-0.197817",
      "3330055": "-0.010559",
      "3330056": "-0.181273",
      "3330057": "-0.226053",
      "3330059": "-0.095017",
      "3330062": "-0.159242",
      "3330063": "-0.238542",
      "3330064": "-0.24961",
      "3330065": "-0.306768",
      "3330066": "-0.273512",
      "3330067": "-0.386752",
      "3330071": "-0.415376",
      "3330074": "-0.154273",
      "3330075": "-0.103215",
      "3330079": "-0.178766",
      "3330085": "-0.021688",
      "3330089": "-0.255868",
      "3330092": "-0.153656",
      "3330093": "-0.227435",
      "3330094": "-0.04862",
      "3330105": "-0.342263",
      "3330106": "-0.28633",
      "3330108": "-0.178428",
      "3330110": "-0.121768",
      "3330112": "-0.025478",
      "3330114": "-0.200044",
      "3330115": "-0.243292",
      "3330117": "-0.134872",
      "3330118": "-0.197961",
      "3330119": "-0.156581",
      "3330121": "-0.291354",
      "3330124": "-0.266975",
      "3330125": "-0.067417",
      "3330127": "-0.098308",
      "3330130": "-0.00779",
      "3330131": "-0.298899",
      "3330143": "-0.26744",
      "accessioncode": "Pro25G",
      "genesymbol": "Pro25G",
      "genesymbol_more": "Pro25G",
      "reporterid": "10479896"
    },
    {
      "1110001": "-0.017431",
      "1110005": "-0.032231",
      "1110006": "0.062257",
      "1110008": "-0.079904",
      "1110009": "-0.020854",
      "1110010": "-0.110449",
      "1110011": "0.001828",
      "1110023": "-0.106996",
      "1110025": "-0.132291",
      "1110033": "0.015306",
      "1110035": "0.029135",
      "1110043": "-0.059744",
      "1110044": "0.019738",
      "1110063": "-0.127817",
      "1110066": "-0.093798",
      "1110070": "-0.100392",
      "1110071": "-0.020922",
      "1110072": "0.166759",
      "1110073": "-0.144452",
      "1110075": "0.325678",
      "1110076": "-0.038812",
      "1110077": "-0.13837",
      "1110081": "-0.134477",
      "1110082": "-0.062268",
      "1110083": "0.051806",
      "1110085": "-0.174528",
      "1110086": "-0.026075",
      "1110087": "-0.074726",
      "1110088": "-0.008235",
      "1110090": "-0.058183",
      "1110094": "0.045826",
      "1110095": "0.19106",
      "1110096": "-0.145841",
      "1110097": "-0.057535",
      "1110099": "-0.111319",
      "1110102": "0.13101",
      "1110103": "-0.161295",
      "1110105": "-0.169159",
      "1110106": "-0.030292",
      "1110107": "0.146237",
      "1110109": "0.097608",
      "1110110": "0.135681",
      "1110111": "-0.047682",
      "1110112": "-0.01335",
      "1110113": "0.051807",
      "1110114": "0.057869",
      "1110115": "0.209472",
      "1110117": "-0.066415",
      "1110119": "-0.017563",
      "1110121": "-0.120083",
      "1110122": "-0.084256",
      "1110123": "-0.01683",
      "1110125": "0.08642",
      "1110126": "0.097872",
      "1110128": "0.014072",
      "1110129": "-0.088542",
      "1110130": "-0.077911",
      "1110131": "0.024028",
      "1110132": "-0.177602",
      "1110133": "-0.067293",
      "1110134": "-0.137744",
      "1110135": "-0.068824",
      "1110137": "-0.118429",
      "1110138": "-0.093693",
      "1110139": "-0.214145",
      "1110140": "-0.087464",
      "1110143": "-0.134702",
      "1110144": "0.049314",
      "1110145": "0.202095",
      "1110146": "-0.087362",
      "1110147": "-0.17011",
      "1110149": "-0.104089",
      "1110150": "0.112366",
      "1110164": "-0.040711",
      "1110165": "-0.06011",
      "1110166": "-0.174444",
      "1110180": "-0.043234",
      "1110181": "-0.142747",
      "1110184": "-0.283573",
      "1110185": "-0.206101",
      "1110187": "-0.247872",
      "1110188": "0.234819",
      "1110189": "-0.066472",
      "1110191": "-0.049163",
      "1110192": "-0.157394",
      "1110193": "-0.019196",
      "1110194": "-0.161881",
      "1110195": "-0.011167",
      "1110196": "0.125512",
      "1110197": "-0.144862",
      "1110200": "-0.14029",
      "1110201": "0.02966",
      "1110202": "0.000306",
      "1110203": "-0.050958",
      "1110204": "0.038569",
      "1110205": "0.033799",
      "1110206": "-0.151092",
      "1110208": "-0.02406",
      "1110210": "0.075147",
      "1110212": "-0.19524",
      "1110214": "-0.158852",
      "1110215": "0.055278",
      "1110217": "-0.041779",
      "1110218": "-0.028089",
      "1110219": "-0.100994",
      "1110220": "0.010777",
      "1110221": "-0.147804",
      "1110222": "-0.131833",
      "1110223": "-0.100494",
      "1110227": "-0.160957",
      "1110228": "-0.084181",
      "1110229": "-0.179239",
      "1110230": "-0.010227",
      "1110232": "-0.063335",
      "1110234": "0.025265",
      "1110236": "-0.020903",
      "1110237": "0.266971",
      "1110238": "-0.004404",
      "1110239": "-0.171792",
      "1110241": "-0.035564",
      "1110242": "-0.246725",
      "1110243": "-0.288761",
      "1110245": "-0.162584",
      "1110246": "0.10063",
      "1110251": "-0.094505",
      "1110252": "-0.109037",
      "1110255": "-0.005153",
      "1110256": "-0.074029",
      "1110257": "-0.04022",
      "1110258": "0.012862",
      "1110259": "0.121646",
      "1110260": "-0.235295",
      "1110261": "-0.103875",
      "1110262": "-0.108712",
      "1110263": "-0.164551",
      "1110264": "-0.072428",
      "1110265": "-0.044706",
      "1110267": "-0.057478",
      "1110268": "0.104431",
      "1110272": "0.044417",
      "1110273": "0.073492",
      "1110274": "-0.007442",
      "1110275": "-0.166388",
      "1110279": "0.118633",
      "1110291": "-0.073334",
      "1110292": "-0.251902",
      "1110293": "-0.048239",
      "1110294": "-0.12545",
      "1110299": "-0.079591",
      "1110300": "-0.092553",
      "1110310": "-0.080188",
      "1110319": "-0.202606",
      "1110320": "-0.154005",
      "1110321": "-0.197754",
      "1110322": "-0.107396",
      "1110334": "-0.098949",
      "1110335": "-0.008049",
      "1110336": "-0.103858",
      "1110337": "0.115417",
      "1110338": "-0.131061",
      "1110339": "-0.084328",
      "1110340": "-0.30507",
      "1110341": "-0.279709",
      "1110344": "-0.043392",
      "1110345": "-0.025142",
      "1110349": "-0.068893",
      "1110350": "0.042528",
      "1110351": "-0.121652",
      "1110353": "-0.120744",
      "1110356": "-0.03542",
      "1110357": "-0.009404",
      "1110360": "0.049676",
      "1110361": "0.013231",
      "1110363": "0.219684",
      "1110366": "-0.105315",
      "1110367": "-0.103357",
      "1110368": "0.039495",
      "1110372": "0.109143",
      "1110373": "0.232567",
      "1110377": "-0.011416",
      "1110378": "-0.072768",
      "1110385": "-0.094211",
      "1110386": "-0.151012",
      "1110387": "-0.057685",
      "1110389": "-0.188921",
      "1110393": "-0.091154",
      "1110394": "-0.103619",
      "1110395": "-0.159022",
      "1110396": "-0.089279",
      "1110397": "-0.254632",
      "1110398": "-0.253395",
      "1110400": "-0.141521",
      "1110403": "-0.259022",
      "1110404": "-0.288118",
      "1110405": "-0.128308",
      "1110406": "-0.143493",
      "1110411": "-0.19615",
      "1110412": "-0.111839",
      "1110413": "-0.346498",
      "1110418": "-0.228834",
      "1110420": "-0.197804",
      "1110421": "-0.280227",
      "1110422": "-0.383107",
      "1110427": "-0.083397",
      "1110428": "-0.087965",
      "1110429": "-0.008785",
      "1110430": "-0.212526",
      "1110433": "-0.156632",
      "1110436": "-0.041772",
      "1110437": "-0.156665",
      "1110438": "-0.265343",
      "1110439": "-0.249751",
      "1110440": "-0.129148",
      "1110441": "-0.272709",
      "1110443": "-0.309398",
      "1110447": "-0.21182",
      "1110448": "-0.244127",
      "1110449": "-0.046436",
      "1110450": "0.142085",
      "1110451": "0.14636",
      "1110453": "-0.027232",
      "1110454": "0.120344",
      "1110455": "0.030349",
      "1110456": "-0.048258",
      "1110457": "-0.188673",
      "1110458": "-0.068182",
      "1110459": "-0.080868",
      "1110460": "-0.106711",
      "1110461": "-0.190571",
      "1110463": "-0.165391",
      "1110473": "0.017995",
      "1110474": "-0.113401",
      "1110476": "-0.093032",
      "1110477": "-0.074634",
      "1110478": "-0.161813",
      "1110480": "-0.227701",
      "1110482": "-0.299807",
      "1110485": "-0.10418",
      "1110488": "-0.105169",
      "1110497": "-0.044081",
      "1110499": "0.134764",
      "1110500": "0.010444",
      "1110502": "-0.233637",
      "1110503": "-0.215924",
      "1110504": "-0.018775",
      "2220001": "-0.07458",
      "2220004": "-0.064156",
      "2220008": "-0.115345",
      "2220011": "-0.171764",
      "2220012": "0.039443",
      "2220015": "-0.139657",
      "2220017": "0.082008",
      "2220018": "-0.03759",
      "2220019": "0.085327",
      "2220021": "-0.101185",
      "2220025": "-0.172135",
      "2220026": "-0.178473",
      "2220029": "-0.200802",
      "2220040": "-0.149196",
      "2220041": "-0.191287",
      "2220043": "0.028276",
      "2220046": "-0.219725",
      "2220048": "-0.18281",
      "2220049": "-0.332562",
      "2220051": "-0.197961",
      "2220052": "-0.165512",
      "2220053": "-0.058755",
      "2220055": "-0.154723",
      "2220056": "-0.197963",
      "2220057": "-0.104169",
      "2220058": "-0.16774",
      "2220061": "-0.284514",
      "2220062": "-0.1231",
      "2220063": "-0.332595",
      "2220067": "-0.306533",
      "2220068": "-0.12835",
      "2220070": "-0.22908",
      "2220071": "0.025757",
      "2220072": "-0.019465",
      "2220073": "-0.343732",
      "2220074": "-0.10892",
      "2220075": "0.043128",
      "2220076": "0.035682",
      "2220077": "-0.208869",
      "2220079": "-0.037937",
      "2220083": "-0.265517",
      "2220084": "-0.147996",
      "2220086": "-0.177103",
      "2220087": "-0.262872",
      "2220088": "-0.095175",
      "2220089": "-0.127349",
      "2220091": "-0.175964",
      "2220092": "0.092418",
      "2220093": "-0.150967",
      "2220094": "0.052482",
      "2220095": "-0.16261",
      "2220097": "-0.14013",
      "2220098": "-0.176347",
      "2220099": "-0.039939",
      "2220100": "-0.321329",
      "2220101": "-0.361973",
      "2220102": "-0.256612",
      "2220104": "-0.075569",
      "2220106": "-0.087783",
      "2220107": "-0.138132",
      "2220108": "0.111451",
      "2220109": "-0.208773",
      "2220112": "-0.177704",
      "2220116": "-0.112123",
      "2220117": "0.032469",
      "2220121": "-0.180921",
      "2220122": "0.045103",
      "2220125": "-0.067474",
      "2220126": "0.169082",
      "2220129": "-0.228643",
      "2220131": "0.041245",
      "2220132": "0.367682",
      "2220133": "-0.208694",
      "2220134": "-0.133116",
      "2220135": "-0.230768",
      "2220137": "0.102247",
      "2220138": "0.274962",
      "2220139": "-0.208459",
      "2220140": "-0.150186",
      "2220141": "-0.090126",
      "2220143": "-0.058135",
      "2220144": "0.030263",
      "2220145": "-0.017503",
      "2220146": "-0.005479",
      "2220147": "0.048009",
      "2220148": "-0.231532",
      "2220149": "-0.281284",
      "2220150": "0.175597",
      "2220151": "-0.1147",
      "2220152": "0.00633",
      "2220153": "0.084519",
      "2220154": "-0.026628",
      "2220155": "-0.104989",
      "2220157": "0.055312",
      "2220158": "-0.187772",
      "2220159": "-0.16192",
      "2220160": "0.143509",
      "2220162": "-0.104175",
      "2220163": "-0.023995",
      "2220165": "-0.003578",
      "2220166": "-0.230581",
      "2220167": "0.058624",
      "2220169": "-0.300794",
      "2220171": "-0.124447",
      "2220172": "-0.11705",
      "2220173": "0.109885",
      "2220174": "0.140853",
      "2220175": "-0.120885",
      "2220176": "0.081333",
      "2220177": "-0.074297",
      "2220178": "-0.084373",
      "2220180": "-0.183715",
      "2220181": "-0.081712",
      "2220182": "-0.07718",
      "2220183": "-0.058502",
      "2220184": "-0.015311",
      "2220185": "-0.113208",
      "2220186": "-0.035658",
      "2220187": "-0.272355",
      "2220188": "-0.199109",
      "2220189": "-0.113021",
      "2220190": "-0.211029",
      "2220191": "-0.087307",
      "2220192": "-0.305704",
      "2220194": "-0.073079",
      "2220196": "-0.300732",
      "2220197": "-0.0598",
      "2220198": "0.02591",
      "2220199": "-0.206124",
      "2220200": "-0.076793",
      "2220201": "-0.126763",
      "2220202": "-0.258509",
      "2220203": "-0.137826",
      "2220204": "-0.185092",
      "2220205": "-0.297721",
      "2220206": "-0.065199",
      "2220209": "-0.16961",
      "2220219": "-0.222429",
      "2220220": "-0.072157",
      "2220221": "-0.243782",
      "2220222": "-0.121041",
      "2220225": "0.157697",
      "2220226": "-0.18191",
      "2220233": "-0.305714",
      "2220234": "-0.17646",
      "2220235": "0.012826",
      "2220236": "-0.386164",
      "2220238": "-0.157781",
      "2220239": "-0.313046",
      "2220241": "0.029185",
      "2220242": "-0.323573",
      "2220243": "-0.200936",
      "2220248": "-0.129161",
      "2220249": "-0.113653",
      "2220250": "-0.035097",
      "2220251": "-0.226537",
      "2220252": "-0.195911",
      "2220253": "-0.0296",
      "2220254": "-0.14923",
      "2220256": "-0.172293",
      "2220257": "0.199077",
      "2220260": "-0.183322",
      "2220261": "-0.201978",
      "2220262": "-0.120907",
      "2220263": "-0.313901",
      "2220264": "-0.181418",
      "2220265": "-0.060236",
      "2220266": "-0.17743",
      "2220268": "-0.176644",
      "2220269": "-0.122196",
      "2220270": "-0.248937",
      "2220271": "-0.280086",
      "2220274": "-0.00077",
      "2220275": "-0.180089",
      "2220276": "-0.063019",
      "2220277": "-0.213021",
      "2220279": "-0.11045",
      "2220280": "-0.106484",
      "2220281": "-0.173308",
      "2220282": "-0.143402",
      "2220283": "-0.074899",
      "2220285": "-0.03738",
      "2220286": "-0.133086",
      "2220287\r": "0.099776\r",
      "3330053": "-0.470937",
      "3330055": "-0.268309",
      "3330056": "-0.433876",
      "3330057": "-0.508734",
      "3330059": "-0.349487",
      "3330062": "-0.410212",
      "3330063": "-0.509842",
      "3330064": "-0.52964",
      "3330065": "-0.542247",
      "3330066": "-0.516268",
      "3330067": "-0.621446",
      "3330071": "-0.67044",
      "3330074": "-0.416641",
      "3330075": "-0.335695",
      "3330079": "-0.430997",
      "3330085": "-0.265579",
      "3330089": "-0.510087",
      "3330092": "-0.420819",
      "3330093": "-0.491994",
      "3330094": "-0.324762",
      "3330105": "-0.600644",
      "3330106": "-0.550098",
      "3330108": "-0.423557",
      "3330110": "-0.38294",
      "3330112": "-0.280705",
      "3330114": "-0.44538",
      "3330115": "-0.496168",
      "3330117": "-0.39628",
      "3330118": "-0.499651",
      "3330119": "-0.390471",
      "3330121": "-0.564385",
      "3330124": "-0.53339",
      "3330125": "-0.340217",
      "3330127": "-0.361135",
      "3330130": "-0.304166",
      "3330131": "-0.558318",
      "3330143": "-0.49319",
      "accessioncode": "Pro25G_onG3PDH570_20bp",
      "genesymbol": "Pro25G_onG3PDH570_20bp",
      "genesymbol_more": "Pro25G_onG3PDH570_20bp",
      "reporterid": "10000551223"
    },
    {
      "1110001": "-0.004815",
      "1110005": "-0.013094",
      "1110006": "0.071935",
      "1110008": "-0.067389",
      "1110009": "0.001904",
      "1110010": "-0.080498",
      "1110011": "0.026967",
      "1110023": "-0.098744",
      "1110025": "-0.112886",
      "1110033": "0.038406",
      "1110035": "0.041094",
      "1110043": "-0.025979",
      "1110044": "0.055138",
      "1110063": "-0.097297",
      "1110066": "-0.069183",
      "1110070": "-0.081129",
      "1110071": "-0.010837",
      "1110072": "0.179595",
      "1110073": "-0.125252",
      "1110075": "0.332915",
      "1110076": "-0.029786",
      "1110077": "-0.139883",
      "1110081": "-0.12501",
      "1110082": "-0.051228",
      "1110083": "0.043401",
      "1110085": "-0.17078",
      "1110086": "-0.016765",
      "1110087": "-0.096569",
      "1110088": "-0.001977",
      "1110090": "-0.056092",
      "1110094": "0.037608",
      "1110095": "0.160549",
      "1110096": "-0.133248",
      "1110097": "-0.079067",
      "1110099": "-0.126573",
      "1110102": "0.110087",
      "1110103": "-0.16442",
      "1110105": "-0.174857",
      "1110106": "-0.031585",
      "1110107": "0.149185",
      "1110109": "0.100391",
      "1110110": "0.156368",
      "1110111": "-0.020368",
      "1110112": "0.002703",
      "1110113": "0.059387",
      "1110114": "0.086908",
      "1110115": "0.243825",
      "1110117": "-0.065171",
      "1110119": "0.013019",
      "1110121": "-0.085921",
      "1110122": "-0.065654",
      "1110123": "0.017749",
      "1110125": "0.112854",
      "1110126": "0.101264",
      "1110128": "0.041115",
      "1110129": "-0.066779",
      "1110130": "-0.053579",
      "1110131": "0.050303",
      "1110132": "-0.157038",
      "1110133": "-0.048244",
      "1110134": "-0.124548",
      "1110135": "-0.06462",
      "1110137": "-0.11171",
      "1110138": "-0.075786",
      "1110139": "-0.193917",
      "1110140": "-0.074444",
      "1110143": "-0.10791",
      "1110144": "0.06484",
      "1110145": "0.205026",
      "1110146": "-0.083156",
      "1110147": "-0.155593",
      "1110149": "-0.089329",
      "1110150": "0.127169",
      "1110164": "-0.030597",
      "1110165": "-0.053525",
      "1110166": "-0.156321",
      "1110180": "-0.025189",
      "1110181": "-0.12988",
      "1110184": "-0.243986",
      "1110185": "-0.191163",
      "1110187": "-0.242675",
      "1110188": "0.241855",
      "1110189": "-0.057104",
      "1110191": "-0.048228",
      "1110192": "-0.137033",
      "1110193": "0.007651",
      "1110194": "-0.15593",
      "1110195": "-0.000803",
      "1110196": "0.147104",
      "1110197": "-0.136866",
      "1110200": "-0.131917",
      "1110201": "0.030202",
      "1110202": "0.003939",
      "1110203": "-0.038183",
      "1110204": "0.057716",
      "1110205": "0.04943",
      "1110206": "-0.135259",
      "1110208": "-0.013403",
      "1110210": "0.088041",
      "1110212": "-0.173484",
      "1110214": "-0.143228",
      "1110215": "0.062388",
      "1110217": "-0.038135",
      "1110218": "-0.021314",
      "1110219": "-0.101397",
      "1110220": "0.021699",
      "1110221": "-0.140672",
      "1110222": "-0.126113",
      "1110223": "-0.091175",
      "1110227": "-0.144882",
      "1110228": "-0.065817",
      "1110229": "-0.183015",
      "1110230": "-0.006069",
      "1110232": "-0.052109",
      "1110234": "0.028309",
      "1110236": "0.00261",
      "1110237": "0.269495",
      "1110238": "-0.013505",
      "1110239": "-0.16657",
      "1110241": "-0.02484",
      "1110242": "-0.229933",
      "1110243": "-0.271733",
      "1110245": "-0.152866",
      "1110246": "0.107238",
      "1110251": "-0.080335",
      "1110252": "-0.098327",
      "1110255": "0.001",
      "1110256": "-0.063553",
      "1110257": "-0.020731",
      "1110258": "0.034696",
      "1110259": "0.140872",
      "1110260": "-0.223177",
      "1110261": "-0.089729",
      "1110262": "-0.070295",
      "1110263": "-0.138766",
      "1110264": "-0.054676",
      "1110265": "-0.038054",
      "1110267": "-0.047804",
      "1110268": "0.123406",
      "1110272": "0.056351",
      "1110273": "0.083986",
      "1110274": "0.010395",
      "1110275": "-0.147521",
      "1110279": "0.144483",
      "1110291": "-0.038509",
      "1110292": "-0.224136",
      "1110293": "-0.019977",
      "1110294": "-0.090735",
      "1110299": "-0.041368",
      "1110300": "-0.054487",
      "1110310": "-0.05308",
      "1110319": "-0.144322",
      "1110320": "-0.131238",
      "1110321": "-0.178246",
      "1110322": "-0.099238",
      "1110334": "-0.077962",
      "1110335": "0.002338",
      "1110336": "-0.103207",
      "1110337": "0.139185",
      "1110338": "-0.121541",
      "1110339": "-0.070459",
      "1110340": "-0.296826",
      "1110341": "-0.260132",
      "1110344": "-0.029318",
      "1110345": "-0.000385",
      "1110349": "-0.045546",
      "1110350": "0.058555",
      "1110351": "-0.106881",
      "1110353": "-0.101989",
      "1110356": "-0.033443",
      "1110357": "0.005852",
      "1110360": "0.05728",
      "1110361": "0.034829",
      "1110363": "0.227452",
      "1110366": "-0.093928",
      "1110367": "-0.08501",
      "1110368": "0.04516",
      "1110372": "0.124999",
      "1110373": "0.263094",
      "1110377": "-0.005468",
      "1110378": "-0.065365",
      "1110385": "-0.093625",
      "1110386": "-0.132462",
      "1110387": "-0.050015",
      "1110389": "-0.175242",
      "1110393": "-0.075807",
      "1110394": "-0.092672",
      "1110395": "-0.149711",
      "1110396": "-0.068622",
      "1110397": "-0.243519",
      "1110398": "-0.248563",
      "1110400": "-0.117498",
      "1110403": "-0.254984",
      "1110404": "-0.282526",
      "1110405": "-0.113316",
      "1110406": "-0.119154",
      "1110411": "-0.182577",
      "1110412": "-0.103901",
      "1110413": "-0.335252",
      "1110418": "-0.214989",
      "1110420": "-0.179535",
      "1110421": "-0.258873",
      "1110422": "-0.370018",
      "1110427": "-0.077523",
      "1110428": "-0.063041",
      "1110429": "0.012412",
      "1110430": "-0.195979",
      "1110433": "-0.137098",
      "1110436": "-0.026748",
      "1110437": "-0.136192",
      "1110438": "-0.2471",
      "1110439": "-0.219769",
      "1110440": "-0.101894",
      "1110441": "-0.252945",
      "1110443": "-0.2788",
      "1110447": "-0.192856",
      "1110448": "-0.212371",
      "1110449": "-0.016491",
      "1110450": "0.168201",
      "1110451": "0.151005",
      "1110453": "-0.021172",
      "1110454": "0.123918",
      "1110455": "0.039728",
      "1110456": "-0.032395",
      "1110457": "-0.19674",
      "1110458": "-0.074112",
      "1110459": "-0.061851",
      "1110460": "-0.068644",
      "1110461": "-0.177769",
      "1110463": "-0.145617",
      "1110473": "0.018772",
      "1110474": "-0.094075",
      "1110476": "-0.077373",
      "1110477": "-0.028833",
      "1110478": "-0.121759",
      "1110480": "-0.199038",
      "1110482": "-0.263742",
      "1110485": "-0.06915",
      "1110488": "-0.074548",
      "1110497": "-0.048855",
      "1110499": "0.135227",
      "1110500": "0.006548",
      "1110502": "-0.226193",
      "1110503": "-0.187468",
      "1110504": "-0.000491",
      "2220001": "-0.060048",
      "2220004": "-0.029663",
      "2220008": "-0.108262",
      "2220011": "-0.169825",
      "2220012": "0.052154",
      "2220015": "-0.121262",
      "2220017": "0.094536",
      "2220018": "-0.021336",
      "2220019": "0.110853",
      "2220021": "-0.094072",
      "2220025": "-0.159475",
      "2220026": "-0.15334",
      "2220029": "-0.145707",
      "2220040": "-0.11245",
      "2220041": "-0.156577",
      "2220043": "0.059148",
      "2220046": "-0.204083",
      "2220048": "-0.168388",
      "2220049": "-0.307489",
      "2220051": "-0.168923",
      "2220052": "-0.140406",
      "2220053": "-0.029319",
      "2220055": "-0.135177",
      "2220056": "-0.189849",
      "2220057": "-0.07858",
      "2220058": "-0.149127",
      "2220061": "-0.269425",
      "2220062": "-0.100018",
      "2220063": "-0.326085",
      "2220067": "-0.293491",
      "2220068": "-0.104865",
      "2220070": "-0.217689",
      "2220071": "0.036161",
      "2220072": "-0.005037",
      "2220073": "-0.322213",
      "2220074": "-0.086873",
      "2220075": "0.066118",
      "2220076": "0.055855",
      "2220077": "-0.193581",
      "2220079": "-0.024677",
      "2220083": "-0.239036",
      "2220084": "-0.124337",
      "2220086": "-0.159755",
      "2220087": "-0.251734",
      "2220088": "-0.076406",
      "2220089": "-0.106383",
      "2220091": "-0.157301",
      "2220092": "0.105574",
      "2220093": "-0.13395",
      "2220094": "0.064939",
      "2220095": "-0.158508",
      "2220097": "-0.126002",
      "2220098": "-0.17464",
      "2220099": "-0.035802",
      "2220100": "-0.309",
      "2220101": "-0.35276",
      "2220102": "-0.227892",
      "2220104": "-0.058002",
      "2220106": "-0.065157",
      "2220107": "-0.124378",
      "2220108": "0.134",
      "2220109": "-0.188295",
      "2220112": "-0.156634",
      "2220116": "-0.094965",
      "2220117": "0.040753",
      "2220121": "-0.178479",
      "2220122": "0.0455",
      "2220125": "-0.063376",
      "2220126": "0.170067",
      "2220129": "-0.213994",
      "2220131": "0.05769",
      "2220132": "0.389172",
      "2220133": "-0.185075",
      "2220134": "-0.112868",
      "2220135": "-0.219359",
      "2220137": "0.11001",
      "2220138": "0.277497",
      "2220139": "-0.186754",
      "2220140": "-0.12809",
      "2220141": "-0.05672",
      "2220143": "-0.03118",
      "2220144": "0.061257",
      "2220145": "0.007588",
      "2220146": "0.014862",
      "2220147": "0.070408",
      "2220148": "-0.205975",
      "2220149": "-0.259351",
      "2220150": "0.198546",
      "2220151": "-0.088765",
      "2220152": "0.025202",
      "2220153": "0.09599",
      "2220154": "-0.001744",
      "2220155": "-0.080541",
      "2220157": "0.068864",
      "2220158": "-0.174882",
      "2220159": "-0.15104",
      "2220160": "0.170342",
      "2220162": "-0.085741",
      "2220163": "-0.005087",
      "2220165": "0.019978",
      "2220166": "-0.218276",
      "2220167": "0.071933",
      "2220169": "-0.291365",
      "2220171": "-0.102252",
      "2220172": "-0.096271",
      "2220173": "0.124851",
      "2220174": "0.159419",
      "2220175": "-0.097406",
      "2220176": "0.092321",
      "2220177": "-0.055",
      "2220178": "-0.072222",
      "2220180": "-0.173489",
      "2220181": "-0.06417",
      "2220182": "-0.073404",
      "2220183": "-0.042776",
      "2220184": "-0.009389",
      "2220185": "-0.079876",
      "2220186": "-0.020796",
      "2220187": "-0.257748",
      "2220188": "-0.234377",
      "2220189": "-0.123606",
      "2220190": "-0.228956",
      "2220191": "-0.090899",
      "2220192": "-0.317607",
      "2220194": "-0.069823",
      "2220196": "-0.307729",
      "2220197": "-0.102407",
      "2220198": "-0.008654",
      "2220199": "-0.257614",
      "2220200": "-0.122156",
      "2220201": "-0.147312",
      "2220202": "-0.271409",
      "2220203": "-0.180511",
      "2220204": "-0.192663",
      "2220205": "-0.309772",
      "2220206": "-0.077223",
      "2220209": "-0.179397",
      "2220219": "-0.250869",
      "2220220": "-0.083239",
      "2220221": "-0.262941",
      "2220222": "-0.133159",
      "2220225": "0.149558",
      "2220226": "-0.173669",
      "2220233": "-0.319535",
      "2220234": "-0.156403",
      "2220235": "0.02102",
      "2220236": "-0.384919",
      "2220238": "-0.13917",
      "2220239": "-0.324053",
      "2220241": "0.015452",
      "2220242": "-0.335552",
      "2220243": "-0.214236",
      "2220248": "-0.098433",
      "2220249": "-0.079989",
      "2220250": "-0.005821",
      "2220251": "-0.204584",
      "2220252": "-0.170421",
      "2220253": "-0.00319",
      "2220254": "-0.112383",
      "2220256": "-0.159981",
      "2220257": "0.210135",
      "2220260": "-0.18298",
      "2220261": "-0.186444",
      "2220262": "-0.12191",
      "2220263": "-0.284963",
      "2220264": "-0.186371",
      "2220265": "-0.084209",
      "2220266": "-0.182479",
      "2220268": "-0.177258",
      "2220269": "-0.121008",
      "2220270": "-0.24792",
      "2220271": "-0.287764",
      "2220274": "0.009514",
      "2220275": "-0.186405",
      "2220276": "-0.069308",
      "2220277": "-0.221063",
      "2220279": "-0.124961",
      "2220280": "-0.113401",
      "2220281": "-0.190711",
      "2220282": "-0.132356",
      "2220283": "-0.073101",
      "2220285": "-0.036762",
      "2220286": "-0.127933",
      "2220287\r": "0.098534\r",
      "3330053": "-0.468313",
      "3330055": "-0.261159",
      "3330056": "-0.428257",
      "3330057": "-0.500526",
      "3330059": "-0.349352",
      "3330062": "-0.389091",
      "3330063": "-0.497683",
      "3330064": "-0.541502",
      "3330065": "-0.534003",
      "3330066": "-0.509713",
      "3330067": "-0.619875",
      "3330071": "-0.681156",
      "3330074": "-0.416027",
      "3330075": "-0.328055",
      "3330079": "-0.410434",
      "3330085": "-0.255786",
      "3330089": "-0.506377",
      "3330092": "-0.424122",
      "3330093": "-0.47103",
      "3330094": "-0.304622",
      "3330105": "-0.583388",
      "3330106": "-0.522828",
      "3330108": "-0.409765",
      "3330110": "-0.371818",
      "3330112": "-0.265127",
      "3330114": "-0.42566",
      "3330115": "-0.477506",
      "3330117": "-0.379817",
      "3330118": "-0.484228",
      "3330119": "-0.381655",
      "3330121": "-0.542303",
      "3330124": "-0.516798",
      "3330125": "-0.322547",
      "3330127": "-0.340434",
      "3330130": "-0.295271",
      "3330131": "-0.538176",
      "3330143": "-0.473647",
      "accessioncode": "Pro25G_onG3PDH570_10Ts",
      "genesymbol": "Pro25G_onG3PDH570_10Ts",
      "genesymbol_more": "Pro25G_onG3PDH570_10Ts",
      "reporterid": "10000551224"
    },
    {
      "1110001": "0.311373",
      "1110005": "0.277471",
      "1110006": "0.351579",
      "1110008": "0.21581",
      "1110009": "0.270536",
      "1110010": "0.182133",
      "1110011": "0.344704",
      "1110023": "0.202128",
      "1110025": "0.201295",
      "1110033": "0.328978",
      "1110035": "0.325727",
      "1110043": "0.23741",
      "1110044": "0.331332",
      "1110063": "0.176189",
      "1110066": "0.230643",
      "1110070": "0.18523",
      "1110071": "0.301715",
      "1110072": "0.460641",
      "1110073": "0.181866",
      "1110075": "0.606055",
      "1110076": "0.29533",
      "1110077": "0.209404",
      "1110081": "0.143755",
      "1110082": "0.212134",
      "1110083": "0.340204",
      "1110085": "0.083736",
      "1110086": "0.238484",
      "1110087": "0.183554",
      "1110088": "0.255338",
      "1110090": "0.209374",
      "1110094": "0.328841",
      "1110095": "0.459642",
      "1110096": "0.167504",
      "1110097": "0.24483",
      "1110099": "0.214232",
      "1110102": "0.437109",
      "1110103": "0.164362",
      "1110105": "0.123927",
      "1110106": "0.302673",
      "1110107": "0.459908",
      "1110109": "0.397064",
      "1110110": "0.363648",
      "1110111": "0.230655",
      "1110112": "0.243401",
      "1110113": "0.307139",
      "1110114": "0.306588",
      "1110115": "0.468558",
      "1110117": "0.252131",
      "1110119": "0.232593",
      "1110121": "0.145727",
      "1110122": "0.218152",
      "1110123": "0.285241",
      "1110125": "0.379879",
      "1110126": "0.344691",
      "1110128": "0.28786",
      "1110129": "0.196852",
      "1110130": "0.195775",
      "1110131": "0.246527",
      "1110132": "0.080917",
      "1110133": "0.179761",
      "1110134": "0.131418",
      "1110135": "0.183785",
      "1110137": "0.185269",
      "1110138": "0.188947",
      "1110139": "0.066914",
      "1110140": "0.196391",
      "1110143": "0.151231",
      "1110144": "0.314271",
      "1110145": "0.462014",
      "1110146": "0.193801",
      "1110147": "0.130844",
      "1110149": "0.214349",
      "1110150": "0.386413",
      "1110164": "0.23064",
      "1110165": "0.231894",
      "1110166": "0.115027",
      "1110180": "0.240379",
      "1110181": "0.175941",
      "1110184": "0.071482",
      "1110185": "0.108238",
      "1110187": "0.053884",
      "1110188": "0.495949",
      "1110189": "0.242494",
      "1110191": "0.188804",
      "1110192": "0.108757",
      "1110193": "0.220006",
      "1110194": "0.141336",
      "1110195": "0.264868",
      "1110196": "0.400045",
      "1110197": "0.130431",
      "1110200": "0.113758",
      "1110201": "0.283497",
      "1110202": "0.282829",
      "1110203": "0.227094",
      "1110204": "0.297904",
      "1110205": "0.289478",
      "1110206": "0.12819",
      "1110208": "0.253704",
      "1110210": "0.32257",
      "1110212": "0.0602",
      "1110214": "0.082212",
      "1110215": "0.283253",
      "1110217": "0.223045",
      "1110218": "0.240007",
      "1110219": "0.156328",
      "1110220": "0.231173",
      "1110221": "0.107047",
      "1110222": "0.130631",
      "1110223": "0.157372",
      "1110227": "0.111616",
      "1110228": "0.178386",
      "1110229": "0.066929",
      "1110230": "0.238202",
      "1110232": "0.205405",
      "1110234": "0.306141",
      "1110236": "0.231279",
      "1110237": "0.527334",
      "1110238": "0.301576",
      "1110239": "0.163695",
      "1110241": "0.237608",
      "1110242": "0.028432",
      "1110243": "-0.01446",
      "1110245": "0.14268",
      "1110246": "0.344401",
      "1110251": "0.179649",
      "1110252": "0.194764",
      "1110255": "0.26583",
      "1110256": "0.258108",
      "1110257": "0.252062",
      "1110258": "0.312563",
      "1110259": "0.393097",
      "1110260": "0.087203",
      "1110261": "0.199494",
      "1110262": "0.185369",
      "1110263": "0.108821",
      "1110264": "0.181774",
      "1110265": "0.210811",
      "1110267": "0.241844",
      "1110268": "0.375648",
      "1110272": "0.331937",
      "1110273": "0.36604",
      "1110274": "0.296113",
      "1110275": "0.171283",
      "1110279": "0.392193",
      "1110291": "0.221953",
      "1110292": "0.057921",
      "1110293": "0.260326",
      "1110294": "0.171978",
      "1110299": "0.234306",
      "1110300": "0.193117",
      "1110310": "0.190166",
      "1110319": "0.132601",
      "1110320": "0.149088",
      "1110321": "0.120815",
      "1110322": "0.186709",
      "1110334": "0.185901",
      "1110335": "0.273929",
      "1110336": "0.20352",
      "1110337": "0.396853",
      "1110338": "0.197789",
      "1110339": "0.187306",
      "1110340": "0.033428",
      "1110341": "-0.002162",
      "1110344": "0.246884",
      "1110345": "0.26182",
      "1110349": "0.20314",
      "1110350": "0.31775",
      "1110351": "0.167441",
      "1110353": "0.177001",
      "1110356": "0.242102",
      "1110357": "0.270547",
      "1110360": "0.306929",
      "1110361": "0.278576",
      "1110363": "0.462416",
      "1110366": "0.184031",
      "1110367": "0.169464",
      "1110368": "0.300835",
      "1110372": "0.401658",
      "1110373": "0.467467",
      "1110377": "0.278868",
      "1110378": "0.197808",
      "1110385": "0.213779",
      "1110386": "0.111836",
      "1110387": "0.221314",
      "1110389": "0.102516",
      "1110393": "0.18721",
      "1110394": "0.183643",
      "1110395": "0.135368",
      "1110396": "0.162461",
      "1110397": "0.068124",
      "1110398": "0.054773",
      "1110400": "0.152227",
      "1110403": "0.10999",
      "1110404": "0.044206",
      "1110405": "0.183751",
      "1110406": "0.124819",
      "1110411": "0.129009",
      "1110412": "0.182659",
      "1110413": "0.0251",
      "1110418": "0.07629",
      "1110420": "0.144167",
      "1110421": "0.096653",
      "1110422": "-0.080645",
      "1110427": "0.223542",
      "1110428": "0.201468",
      "1110429": "0.284994",
      "1110430": "0.078802",
      "1110433": "0.117346",
      "1110436": "0.249873",
      "1110437": "0.161459",
      "1110438": "0.109124",
      "1110439": "0.068473",
      "1110440": "0.177283",
      "1110441": "0.04767",
      "1110443": "0.031125",
      "1110447": "0.124445",
      "1110448": "0.091814",
      "1110449": "0.282816",
      "1110450": "0.441655",
      "1110451": "0.434331",
      "1110453": "0.276296",
      "1110454": "0.447408",
      "1110455": "0.338164",
      "1110456": "0.280967",
      "1110457": "0.158029",
      "1110458": "0.257528",
      "1110459": "0.201478",
      "1110460": "0.240869",
      "1110461": "0.157314",
      "1110463": "0.128221",
      "1110473": "0.339439",
      "1110474": "0.197854",
      "1110476": "0.184874",
      "1110477": "0.232202",
      "1110478": "0.141487",
      "1110480": "0.089471",
      "1110482": "0.021944",
      "1110485": "0.194925",
      "1110488": "0.182373",
      "1110497": "0.249914",
      "1110499": "0.419103",
      "1110500": "0.317284",
      "1110502": "0.098396",
      "1110503": "0.096067",
      "1110504": "0.276067",
      "2220001": "0.238142",
      "2220004": "0.228616",
      "2220008": "0.19809",
      "2220011": "0.151542",
      "2220012": "0.34003",
      "2220015": "0.170731",
      "2220017": "0.349886",
      "2220018": "0.233999",
      "2220019": "0.366681",
      "2220021": "0.214489",
      "2220025": "0.260619",
      "2220026": "0.14482",
      "2220029": "0.106238",
      "2220040": "0.183161",
      "2220041": "0.131482",
      "2220043": "0.308579",
      "2220046": "0.105426",
      "2220048": "0.155984",
      "2220049": "0.025328",
      "2220051": "0.054783",
      "2220052": "0.138021",
      "2220053": "0.232334",
      "2220055": "0.141602",
      "2220056": "0.116743",
      "2220057": "0.195996",
      "2220058": "0.159698",
      "2220061": "0.03534",
      "2220062": "0.177832",
      "2220063": "0.006259",
      "2220067": "-0.00906",
      "2220068": "0.155001",
      "2220070": "0.11121",
      "2220071": "0.290509",
      "2220072": "0.282493",
      "2220073": "0.016937",
      "2220074": "0.195889",
      "2220075": "0.331957",
      "2220076": "0.261254",
      "2220077": "0.077063",
      "2220079": "0.224624",
      "2220083": "0.015359",
      "2220084": "0.130862",
      "2220086": "0.067965",
      "2220087": "0.013948",
      "2220088": "0.203876",
      "2220089": "0.17877",
      "2220091": "0.145533",
      "2220092": "0.353119",
      "2220093": "0.142576",
      "2220094": "0.336774",
      "2220095": "0.126462",
      "2220097": "0.151951",
      "2220098": "0.110524",
      "2220099": "0.239698",
      "2220100": "-0.020169",
      "2220101": "-0.032284",
      "2220102": "0.066816",
      "2220104": "0.223896",
      "2220106": "0.24091",
      "2220107": "0.159773",
      "2220108": "0.362854",
      "2220109": "0.115887",
      "2220112": "0.116559",
      "2220116": "0.185813",
      "2220117": "0.322033",
      "2220121": "0.148231",
      "2220122": "0.345112",
      "2220125": "0.236169",
      "2220126": "0.442408",
      "2220129": "0.090298",
      "2220131": "0.342254",
      "2220132": "0.628203",
      "2220133": "0.150217",
      "2220134": "0.184037",
      "2220135": "0.104503",
      "2220137": "0.364396",
      "2220138": "0.548511",
      "2220139": "0.087287",
      "2220140": "0.142465",
      "2220141": "0.203291",
      "2220143": "0.193514",
      "2220144": "0.316373",
      "2220145": "0.289804",
      "2220146": "0.310529",
      "2220147": "0.338871",
      "2220148": "0.06367",
      "2220149": "0.02993",
      "2220150": "0.458774",
      "2220151": "0.118859",
      "2220152": "0.229551",
      "2220153": "0.301158",
      "2220154": "0.254009",
      "2220155": "0.173048",
      "2220157": "0.323248",
      "2220158": "0.069706",
      "2220159": "0.115101",
      "2220160": "0.381119",
      "2220162": "0.182573",
      "2220163": "0.226029",
      "2220165": "0.31915",
      "2220166": "0.062519",
      "2220167": "0.324715",
      "2220169": "0.054753",
      "2220171": "0.152289",
      "2220172": "0.151542",
      "2220173": "0.366361",
      "2220174": "0.406834",
      "2220175": "0.160796",
      "2220176": "0.319841",
      "2220177": "0.174797",
      "2220178": "0.146868",
      "2220180": "0.11145",
      "2220181": "0.155476",
      "2220182": "0.201903",
      "2220183": "0.170989",
      "2220184": "0.278686",
      "2220185": "0.14612",
      "2220186": "0.21061",
      "2220187": "0.00472",
      "2220188": "0.130741",
      "2220189": "0.219445",
      "2220190": "0.088805",
      "2220191": "0.182565",
      "2220192": "0.041446",
      "2220194": "0.24945",
      "2220196": "0.052749",
      "2220197": "0.26626",
      "2220198": "0.318068",
      "2220199": "0.127681",
      "2220200": "0.234994",
      "2220201": "0.168379",
      "2220202": "0.095023",
      "2220203": "0.180902",
      "2220204": "0.147205",
      "2220205": "0.054235",
      "2220206": "0.212837",
      "2220209": "0.155789",
      "2220219": "0.131666",
      "2220220": "0.23481",
      "2220221": "0.127761",
      "2220222": "0.17529",
      "2220225": "0.418775",
      "2220226": "0.208771",
      "2220233": "0.001451",
      "2220234": "0.143246",
      "2220235": "0.404527",
      "2220236": "0.083847",
      "2220238": "0.148238",
      "2220239": "0.098989",
      "2220241": "0.352052",
      "2220242": "0.032543",
      "2220243": "0.183286",
      "2220248": "0.166947",
      "2220249": "0.210893",
      "2220250": "0.22274",
      "2220251": "0.103331",
      "2220252": "0.106456",
      "2220253": "0.285506",
      "2220254": "0.139225",
      "2220256": "0.129712",
      "2220257": "0.476331",
      "2220260": "0.12109",
      "2220261": "0.094165",
      "2220262": "0.19028",
      "2220263": "-0.025861",
      "2220264": "0.087114",
      "2220265": "0.238467",
      "2220266": "0.116491",
      "2220268": "0.099831",
      "2220269": "0.132053",
      "2220270": "0.057747",
      "2220271": "0.036109",
      "2220274": "0.280774",
      "2220275": "0.09203",
      "2220276": "0.161104",
      "2220277": "0.04829",
      "2220279": "0.141609",
      "2220280": "0.202443",
      "2220281": "0.155035",
      "2220282": "0.134909",
      "2220283": "0.213101",
      "2220285": "0.21454",
      "2220286": "0.154749",
      "2220287\r": "0.357326\r",
      "3330053": "-0.106959",
      "3330055": "0.070798",
      "3330056": "-0.104767",
      "3330057": "-0.160771",
      "3330059": "-0.020123",
      "3330062": "-0.098659",
      "3330063": "-0.128279",
      "3330064": "-0.129654",
      "3330065": "-0.225509",
      "3330066": "-0.188702",
      "3330067": "-0.279025",
      "3330071": "-0.307123",
      "3330074": "-0.064327",
      "3330075": "-0.016961",
      "3330079": "-0.058554",
      "3330085": "0.057297",
      "3330089": "-0.152566",
      "3330092": "-0.076407",
      "3330093": "-0.184957",
      "3330094": "-0.006686",
      "3330105": "-0.297856",
      "3330106": "-0.222226",
      "3330108": "-0.11962",
      "3330110": "-0.069714",
      "3330112": "0.021155",
      "3330114": "-0.129101",
      "3330115": "-0.165733",
      "3330117": "-0.076931",
      "3330118": "-0.072492",
      "3330119": "-0.080906",
      "3330121": "-0.204538",
      "3330124": "-0.182078",
      "3330125": "0.008797",
      "3330127": "-0.022707",
      "3330130": "0.093144",
      "3330131": "-0.21617",
      "3330143": "-0.189625",
      "accessioncode": "Pro25G",
      "genesymbol": "Pro25G",
      "genesymbol_more": "Pro25G",
      "reporterid": "10005619458"
    },
    {
      "1110001": "0.305281",
      "1110005": "0.270777",
      "1110006": "0.342694",
      "1110008": "0.20984",
      "1110009": "0.266979",
      "1110010": "0.178214",
      "1110011": "0.310541",
      "1110023": "0.194538",
      "1110025": "0.193836",
      "1110033": "0.323641",
      "1110035": "0.329867",
      "1110043": "0.230645",
      "1110044": "0.320985",
      "1110063": "0.169214",
      "1110066": "0.21717",
      "1110070": "0.17003",
      "1110071": "0.300113",
      "1110072": "0.460276",
      "1110073": "0.181215",
      "1110075": "0.618793",
      "1110076": "0.296074",
      "1110077": "0.21576",
      "1110081": "0.158977",
      "1110082": "0.225221",
      "1110083": "0.342667",
      "1110085": "0.085056",
      "1110086": "0.253281",
      "1110087": "0.195827",
      "1110088": "0.267715",
      "1110090": "0.204995",
      "1110094": "0.32423",
      "1110095": "0.46611",
      "1110096": "0.171091",
      "1110097": "0.257507",
      "1110099": "0.222653",
      "1110102": "0.436973",
      "1110103": "0.163628",
      "1110105": "0.127474",
      "1110106": "0.295921",
      "1110107": "0.461276",
      "1110109": "0.389401",
      "1110110": "0.372454",
      "1110111": "0.227543",
      "1110112": "0.228104",
      "1110113": "0.303198",
      "1110114": "0.299621",
      "1110115": "0.449574",
      "1110117": "0.25155",
      "1110119": "0.227125",
      "1110121": "0.137195",
      "1110122": "0.208902",
      "1110123": "0.277131",
      "1110125": "0.341209",
      "1110126": "0.358633",
      "1110128": "0.281015",
      "1110129": "0.179784",
      "1110130": "0.19715",
      "1110131": "0.239675",
      "1110132": "0.068188",
      "1110133": "0.176023",
      "1110134": "0.124684",
      "1110135": "0.171935",
      "1110137": "0.171448",
      "1110138": "0.178623",
      "1110139": "0.058299",
      "1110140": "0.188484",
      "1110143": "0.139136",
      "1110144": "0.300041",
      "1110145": "0.459853",
      "1110146": "0.190833",
      "1110147": "0.134194",
      "1110149": "0.210924",
      "1110150": "0.381192",
      "1110164": "0.230237",
      "1110165": "0.223845",
      "1110166": "0.116504",
      "1110180": "0.235338",
      "1110181": "0.180056",
      "1110184": "0.078236",
      "1110185": "0.112041",
      "1110187": "0.060627",
      "1110188": "0.504429",
      "1110189": "0.25131",
      "1110191": "0.175482",
      "1110192": "0.098991",
      "1110193": "0.212537",
      "1110194": "0.134445",
      "1110195": "0.261663",
      "1110196": "0.397394",
      "1110197": "0.126125",
      "1110200": "0.112724",
      "1110201": "0.28142",
      "1110202": "0.27781",
      "1110203": "0.227873",
      "1110204": "0.291229",
      "1110205": "0.293653",
      "1110206": "0.117806",
      "1110208": "0.253446",
      "1110210": "0.32851",
      "1110212": "0.058817",
      "1110214": "0.076524",
      "1110215": "0.281525",
      "1110217": "0.233975",
      "1110218": "0.246489",
      "1110219": "0.153788",
      "1110220": "0.232106",
      "1110221": "0.106666",
      "1110222": "0.135263",
      "1110223": "0.165314",
      "1110227": "0.117171",
      "1110228": "0.179668",
      "1110229": "0.077517",
      "1110230": "0.234853",
      "1110232": "0.199454",
      "1110234": "0.320408",
      "1110236": "0.237605",
      "1110237": "0.526592",
      "1110238": "0.304669",
      "1110239": "0.155639",
      "1110241": "0.239662",
      "1110242": "0.027807",
      "1110243": "-0.019492",
      "1110245": "0.138768",
      "1110246": "0.346082",
      "1110251": "0.181678",
      "1110252": "0.192582",
      "1110255": "0.258808",
      "1110256": "0.253503",
      "1110257": "0.25205",
      "1110258": "0.307398",
      "1110259": "0.389188",
      "1110260": "0.092683",
      "1110261": "0.200276",
      "1110262": "0.189049",
      "1110263": "0.105281",
      "1110264": "0.17734",
      "1110265": "0.208413",
      "1110267": "0.240623",
      "1110268": "0.375138",
      "1110272": "0.334906",
      "1110273": "0.367642",
      "1110274": "0.296458",
      "1110275": "0.17776",
      "1110279": "0.392046",
      "1110291": "0.220998",
      "1110292": "0.052679",
      "1110293": "0.25831",
      "1110294": "0.174249",
      "1110299": "0.232972",
      "1110300": "0.19171",
      "1110310": "0.192448",
      "1110319": "0.129079",
      "1110320": "0.147145",
      "1110321": "0.120522",
      "1110322": "0.180569",
      "1110334": "0.183015",
      "1110335": "0.265182",
      "1110336": "0.208698",
      "1110337": "0.401779",
      "1110338": "0.192857",
      "1110339": "0.190793",
      "1110340": "0.017854",
      "1110341": "-0.002501",
      "1110344": "0.241949",
      "1110345": "0.250874",
      "1110349": "0.201896",
      "1110350": "0.325308",
      "1110351": "0.156997",
      "1110353": "0.179924",
      "1110356": "0.244661",
      "1110357": "0.263107",
      "1110360": "0.299801",
      "1110361": "0.277458",
      "1110363": "0.464374",
      "1110366": "0.177457",
      "1110367": "0.174146",
      "1110368": "0.299532",
      "1110372": "0.396401",
      "1110373": "0.480128",
      "1110377": "0.275576",
      "1110378": "0.208331",
      "1110385": "0.220092",
      "1110386": "0.101479",
      "1110387": "0.217751",
      "1110389": "0.103696",
      "1110393": "0.183871",
      "1110394": "0.187703",
      "1110395": "0.135226",
      "1110396": "0.153838",
      "1110397": "0.070062",
      "1110398": "0.057413",
      "1110400": "0.152186",
      "1110403": "0.1224",
      "1110404": "0.056733",
      "1110405": "0.18442",
      "1110406": "0.126033",
      "1110411": "0.125111",
      "1110412": "0.19033",
      "1110413": "0.022608",
      "1110418": "0.079295",
      "1110420": "0.105933",
      "1110421": "0.02368",
      "1110422": "-0.078739",
      "1110427": "0.198813",
      "1110428": "0.197968",
      "1110429": "0.276692",
      "1110430": "0.07682",
      "1110433": "0.112384",
      "1110436": "0.256792",
      "1110437": "0.161083",
      "1110438": "0.080685",
      "1110439": "0.092393",
      "1110440": "0.174021",
      "1110441": "0.071764",
      "1110443": "0.024021",
      "1110447": "0.090689",
      "1110448": "0.072015",
      "1110449": "0.286602",
      "1110450": "0.427668",
      "1110451": "0.427492",
      "1110453": "0.293875",
      "1110454": "0.411796",
      "1110455": "0.338124",
      "1110456": "0.272089",
      "1110457": "0.153146",
      "1110458": "0.251674",
      "1110459": "0.193905",
      "1110460": "0.19251",
      "1110461": "0.12911",
      "1110463": "0.134593",
      "1110473": "0.325273",
      "1110474": "0.197258",
      "1110476": "0.196374",
      "1110477": "0.245164",
      "1110478": "0.138556",
      "1110480": "0.094767",
      "1110482": "0.021671",
      "1110485": "0.200722",
      "1110488": "0.180922",
      "1110497": "0.264828",
      "1110499": "0.422095",
      "1110500": "0.320859",
      "1110502": "0.094586",
      "1110503": "0.09897",
      "1110504": "0.280238",
      "2220001": "0.229985",
      "2220004": "0.274772",
      "2220008": "0.186658",
      "2220011": "0.156253",
      "2220012": "0.33949",
      "2220015": "0.174408",
      "2220017": "0.361175",
      "2220018": "0.233708",
      "2220019": "0.356785",
      "2220021": "0.222286",
      "2220025": "0.245433",
      "2220026": "0.146346",
      "2220029": "0.113412",
      "2220040": "0.190627",
      "2220041": "0.151848",
      "2220043": "0.305029",
      "2220046": "0.107891",
      "2220048": "0.144022",
      "2220049": "0.011899",
      "2220051": "0.05256",
      "2220052": "0.129226",
      "2220053": "0.22367",
      "2220055": "0.136944",
      "2220056": "0.111048",
      "2220057": "0.183696",
      "2220058": "0.159517",
      "2220061": "0.026261",
      "2220062": "0.180307",
      "2220063": "0.006662",
      "2220067": "-0.011621",
      "2220068": "0.150914",
      "2220070": "0.106121",
      "2220071": "0.293525",
      "2220072": "0.281548",
      "2220073": "0.018772",
      "2220074": "0.194204",
      "2220075": "0.366349",
      "2220076": "0.26721",
      "2220077": "0.074769",
      "2220079": "0.225061",
      "2220083": "0.017441",
      "2220084": "0.132791",
      "2220086": "0.064267",
      "2220087": "0.016096",
      "2220088": "0.205966",
      "2220089": "0.178169",
      "2220091": "0.152823",
      "2220092": "0.360118",
      "2220093": "0.133203",
      "2220094": "0.327367",
      "2220095": "0.128382",
      "2220097": "0.162597",
      "2220098": "0.12093",
      "2220099": "0.246529",
      "2220100": "-0.026199",
      "2220101": "-0.061679",
      "2220102": "0.055915",
      "2220104": "0.202533",
      "2220106": "0.206885",
      "2220107": "0.15291",
      "2220108": "0.360705",
      "2220109": "0.105715",
      "2220112": "0.100716",
      "2220116": "0.183118",
      "2220117": "0.316459",
      "2220121": "0.148413",
      "2220122": "0.342686",
      "2220125": "0.242741",
      "2220126": "0.4495",
      "2220129": "0.079091",
      "2220131": "0.344276",
      "2220132": "0.630635",
      "2220133": "0.152315",
      "2220134": "0.178607",
      "2220135": "0.105609",
      "2220137": "0.364888",
      "2220138": "0.546607",
      "2220139": "0.079847",
      "2220140": "0.137605",
      "2220141": "0.203415",
      "2220143": "0.200999",
      "2220144": "0.298101",
      "2220145": "0.280048",
      "2220146": "0.307746",
      "2220147": "0.324096",
      "2220148": "0.052015",
      "2220149": "0.027345",
      "2220150": "0.446968",
      "2220151": "0.153178",
      "2220152": "0.228421",
      "2220153": "0.299219",
      "2220154": "0.249392",
      "2220155": "0.174299",
      "2220157": "0.333741",
      "2220158": "0.076501",
      "2220159": "0.122121",
      "2220160": "0.391236",
      "2220162": "0.190459",
      "2220163": "0.226404",
      "2220165": "0.330293",
      "2220166": "0.073217",
      "2220167": "0.326581",
      "2220169": "0.081702",
      "2220171": "0.150719",
      "2220172": "0.160544",
      "2220173": "0.35913",
      "2220174": "0.404611",
      "2220175": "0.159918",
      "2220176": "0.321622",
      "2220177": "0.167614",
      "2220178": "0.146613",
      "2220180": "0.115655",
      "2220181": "0.165564",
      "2220182": "0.267642",
      "2220183": "0.170034",
      "2220184": "0.280724",
      "2220185": "0.14266",
      "2220186": "0.214699",
      "2220187": "-0.001975",
      "2220188": "0.116087",
      "2220189": "0.215859",
      "2220190": "0.092078",
      "2220191": "0.183574",
      "2220192": "0.035345",
      "2220194": "0.25222",
      "2220196": "0.064413",
      "2220197": "0.259857",
      "2220198": "0.311587",
      "2220199": "0.126711",
      "2220200": "0.240151",
      "2220201": "0.16711",
      "2220202": "0.1066",
      "2220203": "0.194742",
      "2220204": "0.148556",
      "2220205": "0.051356",
      "2220206": "0.201368",
      "2220209": "0.1615",
      "2220219": "0.131901",
      "2220220": "0.227001",
      "2220221": "0.138792",
      "2220222": "0.172675",
      "2220225": "0.417415",
      "2220226": "0.195586",
      "2220233": "0.000931",
      "2220234": "0.132476",
      "2220235": "0.400392",
      "2220236": "0.079754",
      "2220238": "0.145346",
      "2220239": "0.092109",
      "2220241": "0.360001",
      "2220242": "0.033625",
      "2220243": "0.175429",
      "2220248": "0.156852",
      "2220249": "0.211229",
      "2220250": "0.209847",
      "2220251": "0.091778",
      "2220252": "0.081436",
      "2220253": "0.294029",
      "2220254": "0.141466",
      "2220256": "0.12975",
      "2220257": "0.46631",
      "2220260": "0.11142",
      "2220261": "0.082951",
      "2220262": "0.168436",
      "2220263": "-0.030086",
      "2220264": "0.089947",
      "2220265": "0.248787",
      "2220266": "0.121247",
      "2220268": "0.095001",
      "2220269": "0.134048",
      "2220270": "0.074181",
      "2220271": "0.045499",
      "2220274": "0.295274",
      "2220275": "0.134652",
      "2220276": "0.174626",
      "2220277": "0.05751",
      "2220279": "0.156141",
      "2220280": "0.199478",
      "2220281": "0.137635",
      "2220282": "0.120329",
      "2220283": "0.198103",
      "2220285": "0.225398",
      "2220286": "0.156343",
      "2220287\r": "0.351209\r",
      "3330053": "-0.112587",
      "3330055": "0.077331",
      "3330056": "-0.109552",
      "3330057": "-0.149806",
      "3330059": "-0.02538",
      "3330062": "-0.090189",
      "3330063": "-0.119141",
      "3330064": "-0.12093",
      "3330065": "-0.216322",
      "3330066": "-0.172308",
      "3330067": "-0.271969",
      "3330071": "-0.310695",
      "3330074": "-0.062768",
      "3330075": "-0.011025",
      "3330079": "-0.077482",
      "3330085": "0.058062",
      "3330089": "-0.165972",
      "3330092": "-0.069364",
      "3330093": "-0.180868",
      "3330094": "-0.00629",
      "3330105": "-0.301962",
      "3330106": "-0.222758",
      "3330108": "-0.12886",
      "3330110": "-0.066225",
      "3330112": "0.017932",
      "3330114": "-0.14038",
      "3330115": "-0.164887",
      "3330117": "-0.07982",
      "3330118": "-0.081687",
      "3330119": "-0.086826",
      "3330121": "-0.206353",
      "3330124": "-0.182005",
      "3330125": "0.006138",
      "3330127": "-0.031197",
      "3330130": "0.083787",
      "3330131": "-0.232442",
      "3330143": "-0.190241",
      "accessioncode": "Pro25G",
      "genesymbol": "Pro25G",
      "genesymbol_more": "Pro25G",
      "reporterid": "10005619496"
    }
  ],
  "totalNumberOfResults": 5
}

Get the sageLocation for a Expression Dataset Layer

This returns the location data for a dataset layer.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/5/sageLocation'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:04 GMT
Server: Apache-Coyote/1.1
transfer-encoding:chunked
Connection: keep-alive

{
  "path": "/Shares/external-data/DAT_030__human_liver_cohort",
  "type": "sage"
}

Get the awsEBSLocation for a Expression Dataset Layer

This returns the location data for a dataset layer.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/5/awsEBSLocation'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:04 GMT
Server: Apache-Coyote/1.1
Content-Length: 50
Connection: keep-alive

{
  "path": "snap-29d33a42 (US West)",
  "type": "awsebs"
}

Get the awsS3Location for a Expression Dataset Layer

This returns the location data for a dataset layer.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/5/awsS3Location'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:04 GMT
Server: Apache-Coyote/1.1
transfer-encoding:chunked
Connection: keep-alive

{
  "path": "https://data01.sagebase.org.s3.amazonaws.com/human_liver_cohort.expression.tar.gz?Expires=1301508125&AWSAccessKeyId=thisIsAFakeAWSAccessId&Signature=18%2FZnvDfpkOoGbLRuTIga3SXZUs%3D",
  "type": "awss3"
}

Query API Schema

Query Response Schema

The JsonSchema is an emerging standard similar to DTDs for XML.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/query/schema'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:05 GMT
Server: Apache-Coyote/1.1
transfer-encoding:chunked
Connection: keep-alive

{
  "optional": true,
  "properties": {
    "results": {
      "items": {
        "optional": true,
        "type": "object"
      },
      "optional": true,
      "type": "array"
    },
    "totalNumberOfResults": {
      "optional": true,
      "type": "integer"
    }
  },
  "type": "object"
}

REST API Schemas

Datasets List Schema

The JsonSchema is an emerging standard similar to DTDs for XML.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/schema'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:05 GMT
Server: Apache-Coyote/1.1
transfer-encoding:chunked
Connection: keep-alive

{
  "optional": true,
  "properties": {
    "paging": {
      "optional": true,
      "type": "object"
    },
    "results": {
      "items": {
        "optional": true,
        "type": "any"
      },
      "optional": true,
      "type": "array"
    },
    "totalNumberOfResults": {
      "optional": true,
      "type": "integer"
    }
  },
  "type": "object"
}

Dataset Schema

The JsonSchema is an emerging standard similar to DTDs for XML.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/schema'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:05 GMT
Server: Apache-Coyote/1.1
Content-Length: 735
Connection: keep-alive

{
  "optional": true,
  "properties": {
    "annotations": {
      "optional": true,
      "type": "string"
    },
    "creationDate": {
      "optional": true,
      "type": "number"
    },
    "creator": {
      "optional": true,
      "type": "string"
    },
    "description": {
      "optional": true,
      "type": "string"
    },
    "etag": {
      "optional": true,
      "type": "string"
    },
    "hasClinicalData": {
      "optional": true,
      "type": "boolean"
    },
    "hasExpressionData": {
      "optional": true,
      "type": "boolean"
    },
    "hasGeneticData": {
      "optional": true,
      "type": "boolean"
    },
    "id": {
      "optional": true,
      "type": "string"
    },
    "layer": {
      "optional": true,
      "type": "string"
    },
    "name": {
      "optional": true,
      "type": "string"
    },
    "releaseDate": {
      "optional": true,
      "type": "number"
    },
    "status": {
      "optional": true,
      "type": "string"
    },
    "uri": {
      "optional": true,
      "type": "string"
    },
    "version": {
      "optional": true,
      "type": "string"
    }
  },
  "type": "object"
}

Dataset Annotations Schema

The JsonSchema is an emerging standard similar to DTDs for XML.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/annotations/schema'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:05 GMT
Server: Apache-Coyote/1.1
Content-Length: 429
Connection: keep-alive

{
  "optional": true,
  "properties": {
    "creationDate": {
      "optional": true,
      "type": "number"
    },
    "dateAnnotations": {
      "optional": true,
      "type": "object"
    },
    "doubleAnnotations": {
      "optional": true,
      "type": "object"
    },
    "etag": {
      "optional": true,
      "type": "string"
    },
    "id": {
      "optional": true,
      "type": "string"
    },
    "longAnnotations": {
      "optional": true,
      "type": "object"
    },
    "stringAnnotations": {
      "optional": true,
      "type": "object"
    },
    "uri": {
      "optional": true,
      "type": "string"
    }
  },
  "type": "object"
}

Dataset Layers List Schema

The JsonSchema is an emerging standard similar to DTDs for XML.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/schema'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:05 GMT
Server: Apache-Coyote/1.1
Content-Length: 231
Connection: keep-alive

{
  "optional": true,
  "properties": {
    "paging": {
      "optional": true,
      "type": "object"
    },
    "results": {
      "items": {
        "optional": true,
        "type": "any"
      },
      "optional": true,
      "type": "array"
    },
    "totalNumberOfResults": {
      "optional": true,
      "type": "integer"
    }
  },
  "type": "object"
}

Layer Schema

The JsonSchema is an emerging standard similar to DTDs for XML.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/5/schema'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:05 GMT
Server: Apache-Coyote/1.1
transfer-encoding:chunked
Connection: keep-alive

{
  "optional": true,
  "properties": {
    "annotations": {
      "optional": true,
      "type": "string"
    },
    "creationDate": {
      "optional": true,
      "type": "number"
    },
    "description": {
      "optional": true,
      "type": "string"
    },
    "etag": {
      "optional": true,
      "type": "string"
    },
    "id": {
      "optional": true,
      "type": "string"
    },
    "locations": {
      "items": {
        "optional": true,
        "type": "string"
      },
      "optional": true,
      "type": "array"
    },
    "name": {
      "optional": true,
      "type": "string"
    },
    "platform": {
      "optional": true,
      "type": "string"
    },
    "preview": {
      "optional": true,
      "type": "string"
    },
    "processingFacility": {
      "optional": true,
      "type": "string"
    },
    "publicationDate": {
      "optional": true,
      "type": "number"
    },
    "qcBy": {
      "optional": true,
      "type": "string"
    },
    "qcDate": {
      "optional": true,
      "type": "number"
    },
    "releaseNotes": {
      "optional": true,
      "type": "string"
    },
    "tissueType": {
      "optional": true,
      "type": "string"
    },
    "type": {
      "optional": true,
      "type": "string"
    },
    "uri": {
      "optional": true,
      "type": "string"
    },
    "version": {
      "optional": true,
      "type": "string"
    }
  },
  "type": "object"
}

Layer Preview Schema

The JsonSchema is an emerging standard similar to DTDs for XML.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/5/preview/schema'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:05 GMT
Server: Apache-Coyote/1.1
transfer-encoding:chunked
Connection: keep-alive

{
  "optional": true,
  "properties": {
    "etag": {
      "optional": true,
      "type": "string"
    },
    "id": {
      "optional": true,
      "type": "string"
    },
    "preview": {
      "optional": true,
      "type": "string"
    },
    "uri": {
      "optional": true,
      "type": "string"
    }
  },
  "type": "object"
}

Layer Preview as Map Schema

The JsonSchema is an emerging standard similar to DTDs for XML.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/5/previewAsMap/schema'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:05 GMT
Server: Apache-Coyote/1.1
Content-Length: 191
Connection: keep-alive

{
  "optional": true,
  "properties": {
    "results": {
      "items": {
        "optional": true,
        "type": "object"
      },
      "optional": true,
      "type": "array"
    },
    "totalNumberOfResults": {
      "optional": true,
      "type": "integer"
    }
  },
  "type": "object"
}

Layer Locations Schema

The JsonSchema is an emerging standard similar to DTDs for XML.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/5/locations/schema'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:05 GMT
Server: Apache-Coyote/1.1
transfer-encoding:chunked
Connection: keep-alive

{
  "optional": true,
  "properties": {
    "etag": {
      "optional": true,
      "type": "string"
    },
    "id": {
      "optional": true,
      "type": "string"
    },
    "locations": {
      "items": {
        "optional": true,
        "properties": {
          "path": {
            "optional": true,
            "type": "string"
          },
          "type": {
            "optional": true,
            "type": "string"
          }
        },
        "type": "object"
      },
      "optional": true,
      "type": "array"
    },
    "uri": {
      "optional": true,
      "type": "string"
    }
  },
  "type": "object"
}

Get the sageLocation for a Dataset Layer

The JsonSchema is an emerging standard similar to DTDs for XML.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/5/sageLocation/schema'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:05 GMT
Server: Apache-Coyote/1.1
transfer-encoding:chunked
Connection: keep-alive

{
  "optional": true,
  "properties": {
    "path": {
      "optional": true,
      "type": "string"
    },
    "type": {
      "optional": true,
      "type": "string"
    }
  },
  "type": "object"
}

Get the awsEBSLocation for a Dataset Layer

The JsonSchema is an emerging standard similar to DTDs for XML.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/5/awsEBSLocation/schema'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:05 GMT
Server: Apache-Coyote/1.1
Content-Length: 130
Connection: keep-alive

{
  "optional": true,
  "properties": {
    "path": {
      "optional": true,
      "type": "string"
    },
    "type": {
      "optional": true,
      "type": "string"
    }
  },
  "type": "object"
}

Get the awsS3Location for a Dataset Layer

The JsonSchema is an emerging standard similar to DTDs for XML.

Request

curl -i -H Accept:application/json 'http://repositoryservice.sagebase.org/repo/v1/dataset/29/layer/5/awsS3Location/schema'

Response

HTTP/1.1 200 OK
Content-Type: application/json
Date: Wed, 30 Mar 2011 17:52:05 GMT
Server: Apache-Coyote/1.1
Content-Length: 130
Connection: keep-alive

{
  "optional": true,
  "properties": {
    "path": {
      "optional": true,
      "type": "string"
    },
    "type": {
      "optional": true,
      "type": "string"
    }
  },
  "type": "object"
}

REST API Usage Examples (Read/Write and slightly out of date)

This is a REST api (see Service API Design for more details as to what this means). You can create entities, updated entities, read entities, and delete entities. More advanced querying will be implemented as a separate API. Partial updates (e.g., just updating two fields in a dataset) are not supported. In a nutshell, when you update something like a dataset, you GET the dataset first, modify the properties you want to change, and then send the entire object back to the service so that this revised entity overwrites the previously stored entity.

Create a Dataset

Request:

curl -i -H Accept:application/json -H Content-Type:application/json
-d '{"name":"test dataset", "creator":"fake creator", "releaseDate":"2009-10-01", "status":"not curated"}'
http://localhost:8080/repo/v1/dataset

Response

HTTP/1.1 201 Created
ETag: 1736839268
Location: /repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYBAw
Content-Type: application/json
Transfer-Encoding: chunked
Server: Jetty(6.1.x)

{
   "name":"test dataset",
   "annotations":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw/annotations",
   "id":"agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw",
   "version":"0.0.1",
   "creator":"fake creator",
   "description":null,
   "creationDate":1296595870715,
   "status":"not curated",
   "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw",
   "etag":"1309185941",
   "releaseDate":1254355200000,
   "layers":[]
}

Update a Dataset

Note that in the example below the creator and description fields have been changed but all others remain the same.

Request:

curl -i -H Accept:application/json -H Content-Type:application/json -X PUT -H ETag:1309185941 -d '{
   "name":"test dataset",
   "annotations":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw/annotations",
   "id":"agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw",
   "version":"0.0.1",
   "creator":"updated creator",
   "description":"I just added a description",
   "creationDate":1296595870715,
   "status":"not curated",
   "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw",
   "etag":"1309185941",
   "releaseDate":1254355200000,
   "layers":[]
}
' http://localhost:8080/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw

Response

HTTP/1.1 200 OK
ETag: -852418664
Content-Type: application/json
Transfer-Encoding: chunked
Server: Jetty(6.1.x)

{
   "name":"test dataset",
   "annotations":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw/annotations",
   "id":"agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw",
   "version":"0.0.1",
   "creator":"updated creator",
   "description":"I just added a description",
   "creationDate":1296595870715,
   "status":"not curated",
   "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw",
   "etag":"-852418664",
   "releaseDate":1254355200000,
   "layers":[]
}

Add Annotations to a Dataset

First get the empty annotations container for your newly created dataset

Request

curl -i -H Accept:application/json http://localhost:8080/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw/annotations

Response

HTTP/1.1 200 OK
ETag: 923521
Content-Type: application/json
Transfer-Encoding: chunked
Server: Jetty(6.1.x)

{
   "id":"agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw",
   "creationDate":null,
   "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw/annotations",
   "etag":"923521",
   "stringAnnotations":{

   },
   "floatAnnotations":{

   },
   "dateAnnotations":{

   }
}

Then you add/modify the annotations of interest and do a PUT. Note that annotation values must always be list values even if the list is only of length one.

Request

curl -i -H Accept:application/json -H Content-Type:application/json -X PUT -H ETag:923521 -d '{
   "id":"agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw",
   "creationDate":null,
   "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw/annotations",
   "etag":"923521",
   "stringAnnotations":{
        "Experimental Design Templates":["exp-122887", "exp-97765"]
   },
   "floatAnnotations":{
        "Number of Samples":[500]
   },
   "dateAnnotations":{
        "Publication Date":["2011-01-15"]
   }
}' http://localhost:8080/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw/annotations

Response

HTTP/1.1 200 OK
ETag: -1638393853
Content-Type: application/json
Transfer-Encoding: chunked
Server: Jetty(6.1.x)

{
   "id":"agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYBww",
   "creationDate":null,
   "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYBww/annotations",
   "etag":"-1638393853",
   "stringAnnotations":{
      "Experimental Design Templates":[
         "exp-122887",
         "exp-97765"
      ]
   },
   "floatAnnotations":{
      "Number of Samples":[
         500.0
      ]
   },
   "dateAnnotations":{
      "Publication Date":[
         1295049600000
      ]
   }
}

Delete a Dataset

Request

curl -i -X DELETE http://localhost:8080/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYAQw

Response

HTTP/1.1 204 No Content
Server: Jetty(6.1.x)

Get a Layers for a Dataset

Request

curl -i -H Accept:application/json http://localhost:8080/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer

Response

HTTP/1.1 200 OK
Content-Type: application/json
Transfer-Encoding: chunked
Server: Jetty(6.1.x)

{
   "results":[
      {
         "name":"Flint HS Mice Affy",
         "annotations":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww/annotations",
         "id":"agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww",
         "type":"E",
         "version":"0.0.1",
         "description":"this is a description",
         "creationDate":1296690778880,
         "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww",
         "etag":"1424771925",
         "publicationDate":null,
         "releaseNotes":"this is a release note",
         "tissueType":"liver",
         "platform":null,
         "processingFacility":null,
         "qcBy":null,
         "qcDate":null
      },
      {
         "name":"Flint HS Mice Phenotypes",
         "annotations":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjpBww/annotations",
         "id":"agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjpBww",
         "type":"C",
         "version":"0.0.1",
         "description":"this is a description",
         "creationDate":1296693007167,
         "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjpBww",
         "etag":"1445062754",
         "publicationDate":null,
         "releaseNotes":"this is a release note",
         "tissueType":null,
         "platform":null,
         "processingFacility":null,
         "qcBy":null,
         "qcDate":null
      }
   ],
   "totalNumberOfResults":2,
   "paging":{

   }
}

Get a Layer

Request

curl -i -H Accept:application/json http://localhost:8080/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww

Response

HTTP/1.1 200 OK
ETag: 1240467407
Content-Type: application/json
Transfer-Encoding: chunked
Server: Jetty(6.1.x)

{
   "name":"Flint HS Mice Affy",
   "annotations":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww/annotations",
   "id":"agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww",
   "type":"E",
   "version":"0.0.1",
   "description":"this is a description",
   "creationDate":1296690778880,
   "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww",
   "etag":"1240467407",
   "publicationDate":null,
   "releaseNotes":"this is a release note",
   "tissueType":null,
   "platform":null,
   "processingFacility":null,
   "qcBy":null,
   "qcDate":null
}

Get annotations for a layer

Request

curl -i -H Accept:application/json http://localhost:8080/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww/annotations

Response

HTTP/1.1 200 OK
ETag: 923521
Content-Type: application/json
Transfer-Encoding: chunked
Server: Jetty(6.1.x)

{
   "id":"agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww",
   "creationDate":null,
   "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww/annotations",
   "etag":"923521",
   "stringAnnotations":{

   },
   "floatAnnotations":{

   },
   "dateAnnotations":{

   }
}

Create a layer

Request

curl -i -H Accept:application/json -H Content-Type:application/json -d '{"name":"Flint HS Mice Affy", "type":"E", "description":"this is a description", "releaseNotes":"this is a release note"}' http://localhost:8080/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer

Response

HTTP/1.1 201 Created
ETag: 1240467407
Location: /repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww
Content-Type: application/json
Transfer-Encoding: chunked
Server: Jetty(6.1.x)

{
   "name":"Flint HS Mice Affy",
   "annotations":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww/annotations",
   "id":"agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww",
   "type":"E",
   "version":"0.0.1",
   "description":"this is a description",
   "creationDate":1296690778880,
   "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww",
   "etag":"1240467407",
   "publicationDate":null,
   "releaseNotes":"this is a release note",
   "tissueType":null,
   "platform":null,
   "processingFacility":null,
   "qcBy":null,
   "qcDate":null
}

Now ask for the owning dataset and you can see the preview of the layer

Request

curl -i -H Accept:application/json http://localhost:8080/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww

Response

HTTP/1.1 200 OK
ETag: -801135512
Content-Type: application/json
Transfer-Encoding: chunked
Server: Jetty(6.1.x)

{
"name":"Flint HS Mice",
"annotations":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/annotations",
"id":"agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww",
"version":"0.0.1",
"creator":"Jonathan Flint",
"description":null,
"creationDate":1296690549675,
"status":"Future",
"uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww",
"etag":"-801135512",
"releaseDate":null,
"layers":[
{
         "id":"agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww",
         "type":"E",
         "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww"
      },{
         "id":"use this uri to make a new layer",
         "type":"hack",
         "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer"
      }
]
}

Update a Layer

In the example below we updated the tissue type.

Request

curl -i -H Accept:application/json -H Content-Type:application/json -X PUT -H ETag:1240467407 -d '
{
   "name":"Flint HS Mice Affy",
   "annotations":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww/annotations",
   "id":"agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww",
   "type":"E",
   "version":"0.0.1",
   "description":"this is a description",
   "creationDate":1296690778880,
   "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww",
   "etag":"1240467407",
   "publicationDate":null,
   "releaseNotes":"this is a release note",
   "tissueType":"liver",
   "platform":null,
   "processingFacility":null,
   "qcBy":null,
   "qcDate":null
}' http://localhost:8080/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww

Response

HTTP/1.1 200 OK
ETag: 1424771925
Content-Type: application/json
Transfer-Encoding: chunked
Server: Jetty(6.1.x)

{
   "name":"Flint HS Mice Affy",
   "annotations":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww/annotations",
   "id":"agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww",
   "type":"E",
   "version":"0.0.1",
   "description":"this is a description",
   "creationDate":1296690778880,
   "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww",
   "etag":"1424771925",
   "publicationDate":null,
   "releaseNotes":"this is a release note",
   "tissueType":"liver",
   "platform":null,
   "processingFacility":null,
   "qcBy":null,
   "qcDate":null
}

Delete a layer

Request

curl -i -X DELETE http://localhost:8080/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww

Response

HTTP/1.1 204 No Content
Server: Jetty(6.1.x)

Add annotations to a layer

Request

curl -i -H Accept:application/json -H Content-Type:application/json -X PUT -H ETag:923521 -d '
{
   "id":"agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww",
   "creationDate":null,
   "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww/annotations",
   "etag":"923521",
   "stringAnnotations":{
      "notes":["I threw away 6 samples during the curation process due to gender chromosome mismatches"]
   },
   "floatAnnotations":{

   },
   "dateAnnotations":{

   }
}' http://localhost:8080/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww/annotations

Response

HTTP/1.1 200 OK
ETag: -1897035229
Content-Type: application/json
Transfer-Encoding: chunked
Server: Jetty(6.1.x)

{
   "id":"agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww",
   "creationDate":null,
   "uri":"/repo/v1/dataset/agxkZWZsYXV4LXRlc3RyEwsSDUdBRUpET0RhdGFzZXQYUww/layer/agxkZWZsYXV4LXRlc3RyLgsSDUdBRUpET0RhdGFzZXQYUwwLEhRHQUVKRE9JbnB1dERhdGFMYXllchjoBww/annotations",
   "etag":"-1897035229",
   "stringAnnotations":{
      "notes":[
         "I threw away 6 samples during the curation process due to gender chromosome mismatches"
      ]
   },
   "floatAnnotations":{

   },
   "dateAnnotations":{

   }
}
  • No labels