Grids


Jump to API response

Grids are the core of Plotly's data API. A plot's traces reference underlying grid data. This endpoint allows API creation and manipulation of grids.

Reference

Authorization


Any user with or without a Plotly account may view public grid files. For private files, see authentication.

Grid Meta Information

The grid meta information extends the file meta information with the following fields:


write-only fields:

  • data only accessible from the create endpoint

read-write fields:

  • cols only writable from the col endpoint
  • rows only accessible from the row endpoint
  • metadata

Actions


create

To create a grid, POST to this endpoint with any of the writable grid fields included in the body of the request. The only required field is data.

The data field takes the following form:

{
    "cols":
        {
            "first column": {"data": ["a", "b", "c"], "order": 0},
            "second column": {"data": [1, 2, 3], "order": 1}
        }
}

Note: each column of the cols field is a key-value pair with the key corresponding to the column header name and the value corresponding to an object specifying the column's order and data.

Example:

// POST https://api.plotly.com/v2/grids --> 201 Created
{
    "data": {"cols": {"first": {"data": [1,2,3], "order": 0}}}
}

// POST https://api.plotly.com/v2/grids --> 201 Created
{
    "data": "{\"cols\": {\"first\": {\"data\": [1,2,3], \"order\": 0}}}",
    "parent": 932,
    "filename": "new grid"
}

Note: the integer associated with the parent field corresponds to a file with idlocal 932. This file must have filetype fold for a sucessful POST.

When creating a grid, you can optionally specify source fields to indicate where a grid has come from:

  • source_fid: the fid of a grid that was copied (and presumably edited) to produce this one

  • source_url: the URL this grid was imported from

  • source_referer: if source_url is given, you can optionally add this field to give the URL of an index page where the source_url link appears. (This could give more information about the data, or present it in alternate formats.)


upload

A raw file may be uploaded by making a POST request to the upload endpoint. This will create a new grid for a single 2D data source, or a folder containing multiple grids when there are multiple data sources (e.g. a spreadsheet with many tabs, or a zip archive). To determine which type of file has been created, check the filetype key in the response, which will either be grid or fold.

The following options may be passed as HTTP headers to control the upload.

  • X-File-Name: gives the filename of the file being uploaded. The extension is used as a first guess of the file type for parsing and will be used as the created filename if possible.

  • Plotly-World-Readable: controls the visibility of the created grid or folder. May be true or false. Defaults to false.

  • Plotly-Parent: gives the parent folder id, like for create.

  • Plotly-Parent-Path: gives the path to the parent folder, like for create.


row

The row endpoint allows you to append existing grids with new information. This endpoint requires a POST and returns a 201 Created response on success.

Examples:

// POST https://api.plotly.com/v2/grids/henreitta:88/row --> 201 Created
// Add three rows to the existing grid with fid henrietta:88
{
    "rows": [[1, 0.5], [2, 0.1], [3, 0.7]]
}


col

The col endpoint allows you to retrieve existing columns of a grid via a GET request, completely replace existing columns of a grid via a PUT request, or append existing grids with full columns of new data via a POST request. Both the GET and PUT requests require the existing columns to be specified via a uid query (see examples below) and return a 200 OK response on success. The data, name and order fields of a column can be updated via a PUT request. The POST request does not take a column query and returns a 201 Created response on success.

Example GET:

// GET https://api.plotly.com/v2/grids/henreitta:88/col?uid=some_uid --> 200 OK
// Retrieve a column with uid "some_uid"

// GET https://api.plotly.com/v2/grids/henreitta:88/col?uid=some_uid,some_other_uid --> 200 OK
// Retrieve multiple columns with uids "some_uid" and "some_other_uid"

// GET https://api.plotly.com/v2/grids/henreitta:88/col?uid=not_contained_in_grid --> 400 Bad Request
// Attempt to retrieve a column not contained in grid

Example PUT:

// PUT https://api.plotly.com/v2/grids/henreitta:88/col?uid=some_uid --> 200 OK
// Replace a column with uid "some_uid"
{
    "cols": "[{\"data\": [0, 1], \"name\": \"new name\"}]"
}

// PUT https://api.plotly.com/v2/grids/henreitta:88/col?uid=some_uid,some_other_uid --> 200 OK
// Replace multiple columns with uids "some_uid" and "some_other_uid"
{
    "cols": "[{\"data\": [0, 1], \"order\": 0}, {\"data\": [\"a\", \"b\"]}]"
}

// PUT https://api.plotly.com/v2/grids/henreitta:88/col?uid=not_contained_in_grid --> 400 Bad Request
// Attempt to replace a column not contained in grid
{
    "cols": "[{\"data\": [0, 1]}]"
}

// PUT https://api.plotly.com/v2/grids/henreitta:88/col?uid=only_one_uid_specified --> 400 Bad Request
// Attempt to update a column with multiple columns of data
{
    "cols": "[{\"data\": [0, 1]}, {\"data\": [\"a\", \"b\"]}]"
}

Note: The data to be updated via a PUT request will respect the order of the columns specified by the uids of the query.

Example POST:

// POST https://api.plotly.com/v2/grids/henreitta:88/col --> 400 Bad Request
// Add two columns
{
    "cols": [{"name": "col name 1", "data": [0, 1]}, {"name": "col name 2", "data": [9, 9]}]
}

// POST https://api.plotly.com/v2/grids/henreitta:88/col --> 201 Created
// Add two columns
{
    "cols": "[{\"name\": \"col name 1\", \"data\": [0, 1]}, {\"name\": \"col name 2\", \"data\": [9, 9]}]"
}


retrieve

The grid meta information can be retrieved by making a GET request to the grids endpoint.

Example:

// GET https://api.plotly.com/v2/grids/henrietta:88


content

The contents of a grid can be downloaded via a GET request to the content resource. The Content-Type header will be appropriately set for the response body.

Example:

// GET https://api.plotly.com/v2/grids/henrietta:88/content


destroy

To delete an grid, make a DELETE request to the grids endpoint and include the fid for the grid file. A successful response will have a status code of 204 No Content.

Example:

// DELETE https://api.plotly.com/v2/grids/henrietta:88 --> 204 No Content


partial update

To update the writable meta information of an existing grid, you make a PATCH request to the grids endpoint and include the fid for the grid file. A successful response will have a status code of 200 OK.

Example:

// PATCH https://api.plotly.com/v2/grids/henrietta:88 --> 200 OK
{
    "metadata": "{\"content\": \"copy copy copy copy copy\"}",
    "filename": "my new and unique grid name",
    "parent": 123
}


update

To completely replace the writable meta information of an existing grid, you make a PUT request to the grids endpoint and include the fid for the grid file. A successful response will have a status code of 200 OK.

Example:

// PUT https://api.plotly.com/v2/grids/henrietta:88 --> 200 OK
{
    "parent": -1,
    "world_readable": true,
    "filename": "my new and unique grid name"
    "metadata": "{\"content\": \"copy copy copy copy copy\"}",
}


drop reference

Grids may reference other files in Plotly called extras. Because extras may be referenced from many files, instead of deleting them to remove them, you may just dereference them via a POST request to this endpoint. This is a safer approach and is used to manage extras in the Plotly webapp. A successful response will have a status code of 200 OK.

Example:

// POST https://api.plotly.com/v2/grids/henrietta:88/drop_reference --> 200 OK
{
    "fid": "henrietta:99"
}


trash

A POST request to this endpoint allows for the recoverable trashing of the grid specified in the detail. A successful response will have a status code of 200 OK.

Example:

// POST https://api.plotly.com/v2/grids/henrietta:88/trash ---> 200 OK

Note: This request is idempotent. Trashing a folder that is already trashed will also succeed and return 200 OK.


restore

This endpoint allows for a trashed grid to be restored via a POST request. Only the owner of the grid has permission to restore that grid. A successful restore response will have a status code of 200 OK.

Example:

// POST https://api.plotly.com/v2/grids/henrietta:88/restore ---> 200

Note: This request is idempotent. Restoring a grid that is not yet trashed will also succeed and return 200 OK.


permanent delete

A DELETE request to this endpoint allows for the permanent deletion of the grid specified in the endpoint detail. A successful response will have a status code of 204 No Content.

Example:

// DELETE https://api.plotly.com/v2/grids/plotlvr:9/permanent_delete ---> 204 No Content


lookup

Get a grid using its path and parent instead of using its fid. If the parent is not specified, it's assumed to be a user's home folder. The path given is assumed to be relative to the parent.

By default, the user making the request is assumed to be the owner of the file being found. However, this is controlled via the user query param.

query params

Only the path param is required.

  • path (required) The '/'-delimited path specifying the grid location.
  • parent (optional) The parent id, an integer, which the path is relative to.
  • user (optional) The username of the owner of the file.

Examples:

// GET https://api.plotly.com/v2/grids/lookup?path=my_folder/my_file ---> 200 OK

// GET https://api.plotly.com/v2/grids/lookup?parent=200&path=my_file ---> 200 OK

// GET https://api.plotly.com/v2/grids/lookup?user=wonderwoman&path=her_folder/her_file ---> 200 OK

// GET https://api.plotly.com/v2/grids/lookup?user=wonderwoman&parent=22&path=her_file ---> 200 OK


GET /v2/grids/JamesLindsay:2081/col?format=api
HTTP 200 OK
Allow: GET, POST, PUT, DELETE, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "cols": [
        {
            "data": [
                -0.11627353188551093,
                0.00677611457412311,
                -0.04830254076567206,
                -0.013205476353608202,
                -0.016444641330736504,
                -0.01644464133073647,
                -0.048302540765666604,
                0.006776114574122683,
                -0.04830254076566912,
                -0.01644464133069368,
                -0.04830254076566798,
                -0.04830254076566902,
                0.006776114574125846,
                0.006776114574122354,
                -0.04830254076567251,
                -0.0483025407656665,
                0.006776114574121516,
                0.0067761145741223865,
                -0.04830254076567145,
                -0.04830254076567092,
                -0.0483025407656682,
                -0.04830254076566793,
                0.006776114574163609,
                0.006776114574123087,
                -0.048302540765672405,
                0.006776114574123404,
                -0.04830254076567129,
                -0.04830254076567051,
                0.006776114574160635,
                -0.04830254076567044,
                0.006776114574123488,
                -0.048302540765672475,
                0.0067761145741213075,
                0.006776114574123259,
                0.006776114574126394,
                -0.04830254076567076,
                0.006776114574123327,
                -0.04830254076567223,
                -0.04830254076566874,
                -0.04830254076567032,
                0.006776114574121302,
                0.006776114574158108,
                0.0067761145741214186,
                -0.016444641330716776,
                0.006776114574122928,
                0.006776114574122916,
                0.006776114574123028,
                -0.11627353188551075,
                0.006776114574122397,
                0.006776114574125879,
                0.006776114574125015,
                -0.01644464133073627,
                0.006776114574136471,
                0.006776114574123479,
                -0.04830254076567122,
                0.006776114574125518,
                -0.04830254076567075,
                0.0067761145741227135,
                -0.04830254076566921,
                -0.016444641330694964,
                -0.01644464133070144,
                0.006776114574122938,
                -0.048302540765668624,
                -0.04830254076567179,
                -0.016444641330696414,
                -0.011332373951041277,
                0.006776114574123011,
                -0.04830254076567199,
                0.006776114574123267,
                -0.04830254076566677,
                -0.04830254076567105,
                0.006776114574122921,
                0.1093761860085719,
                -0.016444641330694187,
                -0.015316528623782848,
                -0.04830254076566646,
                0.00677611457412263,
                0.006776114574123023,
                -0.0164446413306938,
                0.00677611457413484,
                0.006776114574122982,
                0.006776114574122924,
                0.006776114574125417,
                0.006776114574121573,
                0.006776114574122689,
                -0.11627353188551073,
                0.006776114574123041,
                -0.04830254076567064,
                0.006776114574123176,
                0.006776114574123209,
                0.00677611457412329,
                -0.019351148130293767,
                0.006776114574122877,
                0.006776114574123303,
                0.006776114574123016,
                0.006776114574164882,
                0.006776114574124014,
                0.00677611457412282,
                -0.01644464133073645,
                0.006776114574123174,
                0.006776114574135217,
                0.00677611457412326,
                0.006776114574123113,
                -0.0790407497583847,
                0.00677611457412325,
                0.006776114574125434,
                -0.04830254076567122,
                0.006776114574114848,
                0.006776114574126311,
                0.006776114574123282,
                0.006776114574123483,
                0.006776114574123363,
                0.006776114574123938,
                0.00677611457412306,
                0.006776114574123715,
                -0.048302540765667056,
                0.006776114574123238,
                0.00677611457412315,
                -0.04830254076566654,
                0.006776114574125153,
                0.006776114574121372,
                0.0067761145741231515,
                0.0067761145741233155,
                0.006776114574123136,
                0.006776114574123627,
                0.10937618600857099,
                0.0067761145741230926,
                0.0067761145741229226,
                0.0067761145741232,
                0.006776114574123102,
                0.006776114574164624,
                0.006776114574123443,
                0.006776114574123256,
                -0.016444641330736313,
                0.006776114574131346,
                0.00677611457412311,
                0.006776114574122994,
                0.022720900951003913,
                -0.11627353188551089,
                0.0067761145741233935,
                0.006776114574122794,
                0.006776114574123301,
                0.006776114574121709,
                0.0067761145741239495,
                -0.01644464133073686,
                0.006776114574122693,
                0.006776114574124834,
                0.00677611457412247,
                0.006776114574122409,
                0.006776114574123288,
                0.006776114574091133,
                -0.015915150912861095,
                0.0067761145741249505,
                -0.1162735318855107,
                0.0067761145741241065,
                0.006776114574123002,
                0.006776114574092228,
                0.006776114574122397,
                0.006776114574123253,
                -0.116273531885511,
                0.00677611457412245,
                0.00677611457412148,
                0.006776114574122913,
                0.00677611457412322,
                0.0067761145741229755,
                0.0067761145741260945,
                -0.03330200721085115,
                -0.016444641330736847,
                -0.06092550412996551,
                0.006776114574123459,
                0.006776114574122954,
                0.006776114574123341,
                -0.1162735318855112,
                0.006776114574122297,
                0.0067761145741238515,
                0.006776114574123344,
                -0.04830254076566842,
                0.006776114574123206,
                0.006776114574122234,
                0.006776114574126268,
                0.006776114574123514,
                0.20204825924509723,
                -0.016444641330736295,
                0.006776114574123124,
                0.0067761145740908605,
                0.006776114574122602,
                0.00677611457412138,
                0.006776114574123035,
                0.0067761145741232,
                0.20204825924509745,
                0.006776114574122888,
                -0.01644464133073644,
                0.006776114574092724,
                -0.04830254076567127,
                0.20204825924509764,
                -0.048302540765666625,
                -0.04830254076566996,
                0.10937618600857232,
                0.006776114574122861,
                0.006776114574121283,
                0.006776114574122857,
                0.0067761145741263105,
                0.006776114574121364,
                0.006776114574123275,
                0.006776114574123236,
                0.00677611457412299,
                0.006776114574123176,
                0.0067761145741232305,
                -0.048302540765671385,
                0.006776114574093026,
                0.006776114574121435,
                0.0067761145741224715,
                -0.04830254076567129,
                0.10937618600857164,
                0.109376186008571,
                0.006776114574126355,
                -0.015668978380331162,
                0.006776114574123271,
                -0.048302540765669096,
                0.006776114574123358,
                0.006776114574124876,
                0.006776114574122331,
                -0.04830254076566856,
                0.006776114574123244,
                0.006776114574124733,
                0.20204825924509776,
                0.006776114574123105,
                0.20204825924509756,
                0.006776114574122918,
                -0.006075507546592503,
                0.006776114574124031,
                0.006776114574123334,
                -0.008079368428953165,
                -0.11627353188551119,
                0.006776114574123169,
                0.006776114574123534,
                0.006776114574123297,
                0.006776114574121806,
                0.006776114574123094,
                0.0067761145741236616,
                0.006776114574125572,
                0.0067761145741229625,
                0.006776114574119222,
                0.006776114574123062,
                -0.04830254076567141,
                -0.016444641330736535,
                0.006776114574123023,
                0.006776114574123155,
                -0.016444641330736736,
                0.006776114574121266,
                0.10937618600857105,
                -0.048302540765666827,
                -0.015293904211713267,
                -0.04830254076567218,
                0.006776114574123245,
                -0.01644464133073653,
                0.006776114574123289,
                0.10937618600857148,
                0.006776114574114808,
                0.006776114574122801,
                -0.04830254076566742,
                0.10937618600857245,
                -0.04830254076566971,
                0.0067761145741231585,
                0.006776114574123079,
                0.006776114574122754,
                -0.04830254076567198,
                0.00677611457412294,
                0.006776114574121593,
                0.006776114574123072,
                -0.010028569562912955,
                0.006776114574122804,
                0.006776114574123154,
                -0.016444641330736573
            ],
            "order": 0,
            "uid": "96069c",
            "name": "2015_cluster_1_component 2"
        },
        {
            "data": [
                "Sample_GW16-5-F1-A-1",
                "Sample_GW16-5-F1-A-11",
                "Sample_GW16-5-F1-A-2",
                "Sample_GW16-5-F1-A-4",
                "Sample_GW16-5-F1-A-5",
                "Sample_GW16-5-F1-A-6",
                "Sample_GW16-5-F1-A-9",
                "Sample_GW16-5-F1-B-1",
                "Sample_GW16-5-F1-B-10",
                "Sample_GW16-5-F1-B-11",
                "Sample_GW16-5-F1-B-3",
                "Sample_GW16-5-F1-B-4",
                "Sample_GW16-5-F1-B-9",
                "Sample_GW16-5-F1-C-1",
                "Sample_GW16-5-F1-C-3",
                "Sample_GW16-5-F1-C-5",
                "Sample_GW16-5-F1-C-7",
                "Sample_GW16-5-F1-C-8",
                "Sample_GW16-5-F1-C-9",
                "Sample_GW16-5-F1-D-1",
                "Sample_GW16-5-F1-D-11",
                "Sample_GW16-5-F1-D-9",
                "Sample_GW16-5-F1-E-1",
                "Sample_GW16-5-F1-E-3",
                "Sample_GW16-5-F1-E-5",
                "Sample_GW16-5-F1-E-6",
                "Sample_GW16-5-F1-E-8",
                "Sample_GW16-5-F1-E-9",
                "Sample_GW16-5-F1-F-1",
                "Sample_GW16-5-F1-F-10",
                "Sample_GW16-5-F1-F-12",
                "Sample_GW16-5-F1-F-2",
                "Sample_GW16-5-F1-F-3",
                "Sample_GW16-5-F1-F-6",
                "Sample_GW16-5-F1-F-7",
                "Sample_GW16-5-F1-G-10",
                "Sample_GW16-5-F1-G-11",
                "Sample_GW16-5-F1-G-2",
                "Sample_GW16-5-F1-G-4",
                "Sample_GW16-5-F1-G-6",
                "Sample_GW16-5-F1-G-8",
                "Sample_GW16-5-F1-H-10",
                "Sample_GW16-5-F1-H-11",
                "Sample_GW16-5-F1-H-2",
                "Sample_GW16-5-F1-H-3",
                "Sample_GW16-5-F1-H-4",
                "Sample_GW16-5-F1-H-5",
                "Sample_GW16-5-F1-H-7",
                "Sample_GW16-5-F1-H-8",
                "Sample_GW16-5-F1-H-9",
                "Sample_GW16-5-F2-A-1",
                "Sample_GW16-5-F2-A-12",
                "Sample_GW16-5-F2-A-2",
                "Sample_GW16-5-F2-A-4",
                "Sample_GW16-5-F2-A-9",
                "Sample_GW16-5-F2-B-1",
                "Sample_GW16-5-F2-B-12",
                "Sample_GW16-5-F2-B-4",
                "Sample_GW16-5-F2-C-2",
                "Sample_GW16-5-F2-C-3",
                "Sample_GW16-5-F2-C-4",
                "Sample_GW16-5-F2-C-7",
                "Sample_GW16-5-F2-D-1",
                "Sample_GW16-5-F2-D-12",
                "Sample_GW16-5-F2-D-3",
                "Sample_GW16-5-F2-D-4",
                "Sample_GW16-5-F2-D-7",
                "Sample_GW16-5-F2-D-8",
                "Sample_GW16-5-F2-E-7",
                "Sample_GW16-5-F2-E-9",
                "Sample_GW16-5-F2-F-2",
                "Sample_GW16-5-F2-F-3",
                "Sample_GW16-5-F2-F-6",
                "Sample_GW16-5-F2-G-1",
                "Sample_GW16-5-F2-G-11",
                "Sample_GW16-5-F2-G-4",
                "Sample_GW16-5-F2-G-6",
                "Sample_GW16-5-F2-G-9",
                "Sample_GW16-5-F2-H-1",
                "Sample_GW16-5-F2-H-10",
                "Sample_GW16-5-F2-H-11",
                "Sample_GW16-5-F2-H-12",
                "Sample_GW16-5-F2-H-2",
                "Sample_GW16-5-F2-H-3",
                "Sample_GW16-5-F2-H-6",
                "Sample_GW16-5-F2-H-7",
                "Sample_GW16-5-F2-H-8",
                "Sample_GW16-5-F2-H-9",
                "Sample_GW16-5-V1-A-10",
                "Sample_GW16-5-V1-A-11",
                "Sample_GW16-5-V1-A-12",
                "Sample_GW16-5-V1-A-2",
                "Sample_GW16-5-V1-A-4",
                "Sample_GW16-5-V1-A-6",
                "Sample_GW16-5-V1-B-10",
                "Sample_GW16-5-V1-B-12",
                "Sample_GW16-5-V1-B-2",
                "Sample_GW16-5-V1-B-3",
                "Sample_GW16-5-V1-B-8",
                "Sample_GW16-5-V1-C-10",
                "Sample_GW16-5-V1-C-12",
                "Sample_GW16-5-V1-C-4",
                "Sample_GW16-5-V1-C-5",
                "Sample_GW16-5-V1-C-9",
                "Sample_GW16-5-V1-D-10",
                "Sample_GW16-5-V1-D-11",
                "Sample_GW16-5-V1-D-5",
                "Sample_GW16-5-V1-D-6",
                "Sample_GW16-5-V1-D-7",
                "Sample_GW16-5-V1-D-8",
                "Sample_GW16-5-V1-D-9",
                "Sample_GW16-5-V1-E-1",
                "Sample_GW16-5-V1-E-12",
                "Sample_GW16-5-V1-E-2",
                "Sample_GW16-5-V1-E-3",
                "Sample_GW16-5-V1-E-6",
                "Sample_GW16-5-V1-E-7",
                "Sample_GW16-5-V1-E-8",
                "Sample_GW16-5-V1-F-12",
                "Sample_GW16-5-V1-F-5",
                "Sample_GW16-5-V1-F-6",
                "Sample_GW16-5-V1-F-8",
                "Sample_GW16-5-V1-G-1",
                "Sample_GW16-5-V1-G-10",
                "Sample_GW16-5-V1-G-11",
                "Sample_GW16-5-V1-G-2",
                "Sample_GW16-5-V1-G-5",
                "Sample_GW16-5-V1-G-6",
                "Sample_GW16-5-V1-G-7",
                "Sample_GW16-5-V1-G-8",
                "Sample_GW16-5-V1-G-9",
                "Sample_GW16-5-V1-H-11",
                "Sample_GW16-5-V1-H-12",
                "Sample_GW16-5-V1-H-4",
                "Sample_GW16-5-V1-H-5",
                "Sample_GW16-5-V1-H-6",
                "Sample_GW16-5-V1-H-7",
                "Sample_GW16-5-V1-H-9",
                "Sample_GW16-5-V2-A-1",
                "Sample_GW16-5-V2-A-10",
                "Sample_GW16-5-V2-A-12",
                "Sample_GW16-5-V2-A-4",
                "Sample_GW16-5-V2-A-6",
                "Sample_GW16-5-V2-A-7",
                "Sample_GW16-5-V2-A-9",
                "Sample_GW16-5-V2-B-10",
                "Sample_GW16-5-V2-B-11",
                "Sample_GW16-5-V2-B-3",
                "Sample_GW16-5-V2-B-7",
                "Sample_GW16-5-V2-B-8",
                "Sample_GW16-5-V2-C-1",
                "Sample_GW16-5-V2-C-10",
                "Sample_GW16-5-V2-C-2",
                "Sample_GW16-5-V2-C-5",
                "Sample_GW16-5-V2-C-7",
                "Sample_GW16-5-V2-D-1",
                "Sample_GW16-5-V2-D-10",
                "Sample_GW16-5-V2-D-12",
                "Sample_GW16-5-V2-D-2",
                "Sample_GW16-5-V2-D-5",
                "Sample_GW16-5-V2-E-10",
                "Sample_GW16-5-V2-E-12",
                "Sample_GW16-5-V2-E-4",
                "Sample_GW16-5-V2-E-6",
                "Sample_GW16-5-V2-E-8",
                "Sample_GW16-5-V2-F-1",
                "Sample_GW16-5-V2-F-10",
                "Sample_GW16-5-V2-F-2",
                "Sample_GW16-5-V2-F-5",
                "Sample_GW16-5-V2-F-7",
                "Sample_GW16-5-V2-F-9",
                "Sample_GW16-5-V2-G-10",
                "Sample_GW16-5-V2-G-12",
                "Sample_GW16-5-V2-G-2",
                "Sample_GW16-5-V2-G-3",
                "Sample_GW16-5-V2-G-4",
                "Sample_GW16-5-V2-G-6",
                "Sample_GW16-5-V2-G-7",
                "Sample_GW16-5-V2-G-8",
                "Sample_GW16-5-V2-G-9",
                "Sample_GW16-5-V2-H-10",
                "Sample_GW16-5-V2-H-11",
                "Sample_GW16-5-V2-H-2",
                "Sample_GW16-5-V2-H-3",
                "Sample_GW16-5-V2-H-4",
                "Sample_GW16-5-V2-H-6",
                "Sample_GW16-5-V2-H-7",
                "Sample_GW16-5-V2-H-8",
                "Sample_GW16-5-V2-H-9",
                "Sample_S37-A11-from-1771039001-A11-GW18-SVZ",
                "Sample_S37-A12-from-1771039001-A12-GW18-SVZ",
                "Sample_S37-A6-from-1771039001-A6-GW18-SVZ",
                "Sample_S37-A7-from-1771039001-A7-GW18-SVZ",
                "Sample_S37-B1-from-1771039001-B1-GW18-SVZ",
                "Sample_S37-B12-from-1771039001-B12-GW18-SVZ",
                "Sample_S37-B4-from-1771039001-B4-GW18-SVZ",
                "Sample_S37-B5-from-1771039001-B5-GW18-SVZ",
                "Sample_S37-B7-from-1771039001-B7-GW18-SVZ",
                "Sample_S37-C1-from-1771039001-C1-GW18-SVZ",
                "Sample_S37-C2-from-1771039001-C2-GW18-SVZ",
                "Sample_S37-C4-from-1771039001-C4-GW18-SVZ",
                "Sample_S37-C5-from-1771039001-C5-GW18-SVZ",
                "Sample_S37-C7-from-1771039001-C7-GW18-SVZ",
                "Sample_S37-C9-from-1771039001-C9-GW18-SVZ",
                "Sample_S37-D1-from-1771039001-D1-GW18-SVZ",
                "Sample_S37-D3-from-1771039001-D3-GW18-SVZ",
                "Sample_S37-D5-from-1771039001-D5-GW18-SVZ",
                "Sample_S37-D7-from-1771039001-D7-GW18-SVZ",
                "Sample_S37-D8-from-1771039001-D8-GW18-SVZ",
                "Sample_S37-D9-from-1771039001-D9-GW18-SVZ",
                "Sample_S37-E1-from-1771039001-E1-GW18-SVZ",
                "Sample_S37-E4-from-1771039001-E4-GW18-SVZ",
                "Sample_S37-E6-from-1771039001-E6-GW18-SVZ",
                "Sample_S37-E7-from-1771039001-E7-GW18-SVZ",
                "Sample_S37-E8-from-1771039001-E8-GW18-SVZ",
                "Sample_S37-E9-from-1771039001-E9-GW18-SVZ",
                "Sample_S37-F1-from-1771039001-F1-GW18-SVZ",
                "Sample_S37-F11-from-1771039001-F11-GW18-SVZ",
                "Sample_S37-F3-from-1771039001-F3-GW18-SVZ",
                "Sample_S37-F4-from-1771039001-F4-GW18-SVZ",
                "Sample_S37-F6-from-1771039001-F6-GW18-SVZ",
                "Sample_S37-F8-from-1771039001-F8-GW18-SVZ",
                "Sample_S37-G10-from-1771039001-G10-GW18-SVZ",
                "Sample_S37-G11-from-1771039001-G11-GW18-SVZ",
                "Sample_S37-G12-from-1771039001-G12-GW18-SVZ",
                "Sample_S37-G2-from-1771039001-G2-GW18-SVZ",
                "Sample_S37-G3-from-1771039001-G3-GW18-SVZ",
                "Sample_S37-G4-from-1771039001-G4-GW18-SVZ",
                "Sample_S37-G6-from-1771039001-G6-GW18-SVZ",
                "Sample_S37-G9-from-1771039001-G9-GW18-SVZ",
                "Sample_S37-H1-from-1771039001-H1-GW18-SVZ",
                "Sample_S37-H10-from-1771039001-H10-GW18-SVZ",
                "Sample_S37-H11-from-1771039001-H11-GW18-SVZ",
                "Sample_S37-H12-from-1771039001-H12-GW18-SVZ",
                "Sample_S37-H3-from-1771039001-H3-GW18-SVZ",
                "Sample_S37-H5-from-1771039001-H5-GW18-SVZ",
                "Sample_S37-H6-from-1771039001-H6-GW18-SVZ",
                "Sample_S37-H7-from-1771039001-H7-GW18-SVZ",
                "Sample_S37-H8-from-1771039001-H8-GW18-SVZ",
                "Sample_S37-H9-from-1771039001-H9-GW18-SVZ",
                "Sample_S38-A1-from-1771039002-A1-GW18-VZ",
                "Sample_S38-A4-from-1771039002-A4-GW18-VZ",
                "Sample_S38-A6-from-1771039002-A6-GW18-VZ",
                "Sample_S38-A8-from-1771039002-A8-GW18-VZ",
                "Sample_S38-B11-from-1771039002-B11-GW18-VZ",
                "Sample_S38-B12-from-1771039002-B12-GW18-VZ",
                "Sample_S38-B3-from-1771039002-B3-GW18-VZ",
                "Sample_S38-B6-from-1771039002-B6-GW18-VZ",
                "Sample_S38-B9-from-1771039002-B9-GW18-VZ",
                "Sample_S38-C8-from-1771039002-C8-GW18-VZ",
                "Sample_S38-D1-from-1771039002-D1-GW18-VZ",
                "Sample_S38-D10-from-1771039002-D10-GW18-VZ",
                "Sample_S38-D12-from-1771039002-D12-GW18-VZ",
                "Sample_S38-D2-from-1771039002-D2-GW18-VZ",
                "Sample_S38-D3-from-1771039002-D3-GW18-VZ",
                "Sample_S38-D6-from-1771039002-D6-GW18-VZ",
                "Sample_S38-D9-from-1771039002-D9-GW18-VZ",
                "Sample_S38-E1-from-1771039002-E1-GW18-VZ",
                "Sample_S38-E10-from-1771039002-E10-GW18-VZ",
                "Sample_S38-E12-from-1771039002-E12-GW18-VZ",
                "Sample_S38-E3-from-1771039002-E3-GW18-VZ",
                "Sample_S38-E4-from-1771039002-E4-GW18-VZ",
                "Sample_S38-F10-from-1771039002-F10-GW18-VZ",
                "Sample_S38-F12-from-1771039002-F12-GW18-VZ",
                "Sample_S38-F3-from-1771039002-F3-GW18-VZ",
                "Sample_S38-F4-from-1771039002-F4-GW18-VZ",
                "Sample_S38-F9-from-1771039002-F9-GW18-VZ",
                "Sample_S38-G1-from-1771039002-G1-GW18-VZ",
                "Sample_S38-G10-from-1771039002-G10-GW18-VZ",
                "Sample_S38-G11-from-1771039002-G11-GW18-VZ",
                "Sample_S38-G3-from-1771039002-G3-GW18-VZ",
                "Sample_S38-H1-from-1771039002-H1-GW18-VZ",
                "Sample_S38-H10-from-1771039002-H10-GW18-VZ",
                "Sample_S38-H7-from-1771039002-H7-GW18-VZ"
            ],
            "order": 1,
            "uid": "52d60e",
            "name": "2015_cluster_1_text"
        },
        {
            "data": [
                -0.018846475783240415,
                0.00720431659655351,
                0.07065538183266752,
                -0.01755899685196772,
                -0.021573314727367204,
                -0.021573314727367218,
                0.07065538183266612,
                0.007204316596553472,
                0.07065538183266695,
                -0.021573314727355224,
                0.0706553818326664,
                0.07065538183266669,
                0.007204316596561009,
                0.007204316596558378,
                0.07065538183266779,
                0.07065538183266633,
                0.007204316596552111,
                0.0072043165965557585,
                0.0706553818326682,
                0.07065538183266748,
                0.07065538183266627,
                0.07065538183266679,
                0.007204316596584103,
                0.007204316596553587,
                0.07065538183266787,
                0.007204316596553312,
                0.07065538183266741,
                0.07065538183266734,
                0.007204316596582012,
                0.07065538183266758,
                0.007204316596553626,
                0.07065538183266762,
                0.007204316596561431,
                0.007204316596553469,
                0.007204316596555203,
                0.07065538183266773,
                0.007204316596553341,
                0.07065538183266892,
                0.0706553818326668,
                0.07065538183266731,
                0.007204316596561247,
                0.007204316596580048,
                0.007204316596551956,
                -0.02157331472736133,
                0.007204316596553412,
                0.007204316596553427,
                0.007204316596553609,
                -0.018846475783240443,
                0.007204316596550899,
                0.007204316596561039,
                0.007204316596551517,
                -0.021573314727367246,
                0.007204316596549967,
                0.007204316596553523,
                0.0706553818326675,
                0.007204316596560537,
                0.07065538183266719,
                0.007204316596554064,
                0.07065538183266659,
                -0.0215733147273556,
                -0.021573314727357257,
                0.00720431659655375,
                0.0706553818326669,
                0.07065538183266856,
                -0.021573314727356248,
                -0.01523764906319319,
                0.007204316596553517,
                0.07065538183266853,
                0.007204316596553947,
                0.07065538183266577,
                0.07065538183266791,
                0.007204316596553549,
                0.08190553210126847,
                -0.021573314727355568,
                -0.020175237433677336,
                0.07065538183266588,
                0.007204316596553956,
                0.007204316596553524,
                -0.021573314727355526,
                0.007204316596545828,
                0.007204316596553739,
                0.007204316596553693,
                0.007204316596542405,
                0.007204316596552099,
                0.007204316596554505,
                -0.01884647578323978,
                0.007204316596554275,
                0.0706553818326683,
                0.007204316596553482,
                0.007204316596553367,
                0.007204316596553365,
                -0.025175367195477083,
                0.007204316596553375,
                0.007204316596553535,
                0.007204316596554032,
                0.007204316596585051,
                0.007204316596560298,
                0.007204316596553443,
                -0.021573314727367322,
                0.007204316596553602,
                0.007204316596545622,
                0.007204316596553569,
                0.0072043165965534174,
                0.03018036801708986,
                0.00720431659655381,
                0.007204316596542231,
                0.07065538183266758,
                0.007204316596541576,
                0.007204316596555083,
                0.00720431659655376,
                0.007204316596553278,
                0.007204316596553637,
                0.007204316596560497,
                0.007204316596553863,
                0.007204316596553296,
                0.07065538183266566,
                0.007204316596553467,
                0.007204316596553667,
                0.0706553818326655,
                0.007204316596551576,
                0.007204316596559179,
                0.007204316596553326,
                0.007204316596553805,
                0.007204316596553466,
                0.007204316596553444,
                0.0819055321012686,
                0.007204316596553377,
                0.007204316596553606,
                0.007204316596553735,
                0.007204316596553346,
                0.007204316596584838,
                0.007204316596553278,
                0.007204316596553791,
                -0.02157331472736737,
                0.007204316596554865,
                0.007204316596553873,
                0.0072043165965538156,
                -0.08489091802802833,
                -0.018846475783240463,
                0.0072043165965535155,
                0.007204316596553675,
                0.007204316596553443,
                0.00720431659655329,
                0.0072043165965545945,
                -0.021573314727367277,
                0.0072043165965545,
                0.007204316596557255,
                0.0072043165965535415,
                0.007204316596554332,
                0.0072043165965530506,
                0.007204316596568565,
                -0.020917113865608957,
                0.007204316596543323,
                -0.01884647578323989,
                0.007204316596559802,
                0.00720431659655345,
                0.007204316596568085,
                0.007204316596555681,
                0.007204316596553654,
                -0.018846475783240068,
                0.007204316596555281,
                0.007204316596553413,
                0.007204316596553736,
                0.007204316596553032,
                0.007204316596553682,
                0.007204316596547864,
                0.05337464345422598,
                -0.02157331472736741,
                -0.0071287665400547925,
                0.007204316596553491,
                0.007204316596553915,
                0.0072043165965534695,
                -0.018846475783240266,
                0.007204316596554177,
                0.007204316596554794,
                0.007204316596553715,
                0.07065538183266666,
                0.007204316596553992,
                0.007204316596558438,
                0.007204316596547535,
                0.007204316596553583,
                0.006378641407381471,
                -0.02157331472736732,
                0.007204316596553757,
                0.007204316596568658,
                0.007204316596553567,
                0.007204316596559209,
                0.007204316596553684,
                0.007204316596553467,
                0.006378641407381598,
                0.007204316596553594,
                -0.02157331472736729,
                0.007204316596568161,
                0.07065538183266783,
                0.006378641407381574,
                0.07065538183266555,
                0.07065538183266706,
                0.08190553210126843,
                0.007204316596553556,
                0.007204316596553452,
                0.007204316596553854,
                0.0072043165965550255,
                0.007204316596550815,
                0.007204316596553129,
                0.0072043165965541625,
                0.007204316596553539,
                0.007204316596553594,
                0.0072043165965534044,
                0.07065538183266713,
                0.007204316596567972,
                0.00720431659655087,
                0.0072043165965553334,
                0.07065538183266788,
                0.0819055321012685,
                0.08190553210126872,
                0.007204316596547457,
                -0.020612030671407055,
                0.007204316596554277,
                0.0706553818326668,
                0.007204316596553769,
                0.007204316596557318,
                0.007204316596554053,
                0.0706553818326662,
                0.007204316596553493,
                0.007204316596556796,
                0.0063786414073815426,
                0.007204316596553658,
                0.006378641407381442,
                0.007204316596553796,
                -0.008722780902734938,
                0.007204316596554402,
                0.0072043165965532735,
                -0.01120617851189263,
                -0.018846475783240328,
                0.007204316596553699,
                0.007204316596553154,
                0.007204316596553014,
                0.007204316596554801,
                0.00720431659655399,
                0.007204316596553318,
                0.007204316596542052,
                0.007204316596553442,
                0.007204316596555605,
                0.007204316596553551,
                0.07065538183266792,
                -0.021573314727367295,
                0.007204316596553481,
                0.007204316596553435,
                -0.021573314727367104,
                0.007204316596554852,
                0.08190553210126861,
                0.0706553818326663,
                -0.020147198855083294,
                0.07065538183266847,
                0.007204316596553605,
                -0.02157331472736718,
                0.007204316596553207,
                0.08190553210126854,
                0.007204316596541462,
                0.007204316596553953,
                0.07065538183266612,
                0.08190553210126843,
                0.07065538183266701,
                0.007204316596553209,
                0.007204316596553885,
                0.007204316596553549,
                0.07065538183266859,
                0.007204316596553595,
                0.007204316596555016,
                0.007204316596553127,
                -0.013621835945248151,
                0.0072043165965537505,
                0.007204316596553531,
                -0.02157331472736714
            ],
            "order": 2,
            "uid": "a6d42b",
            "name": "2015_cluster_1_z"
        },
        {
            "data": [
                -0.0018931633148357475,
                -0.013299106478130079,
                -0.04842861717894478,
                0.006174824707307344,
                0.009331694252430418,
                0.009331694252430486,
                -0.048428617178944706,
                -0.013299106478129727,
                -0.04842861717894427,
                0.009331694252347433,
                -0.048428617178944096,
                -0.04842861717894431,
                -0.013299106478117858,
                -0.013299106478124009,
                -0.04842861717894452,
                -0.04842861717894459,
                -0.013299106478127919,
                -0.013299106478133732,
                -0.048428617178943804,
                -0.04842861717894426,
                -0.048428617178944186,
                -0.048428617178944366,
                -0.013299106478140987,
                -0.013299106478130244,
                -0.04842861717894462,
                -0.013299106478130145,
                -0.0484286171789443,
                -0.04842861717894427,
                -0.01329910647814026,
                -0.04842861717894429,
                -0.01329910647812935,
                -0.04842861717894434,
                -0.013299106478132417,
                -0.013299106478129815,
                -0.013299106478136116,
                -0.04842861717894405,
                -0.013299106478129468,
                -0.04842861717894345,
                -0.048428617178944054,
                -0.048428617178944686,
                -0.013299106478132343,
                -0.01329910647813968,
                -0.013299106478127706,
                0.009331694252391857,
                -0.013299106478129853,
                -0.01329910647813006,
                -0.013299106478130188,
                -0.0018931633148357172,
                -0.013299106478130141,
                -0.013299106478117986,
                -0.013299106478129574,
                0.009331694252430118,
                -0.013299106478102134,
                -0.013299106478130247,
                -0.048428617178944526,
                -0.013299106478118643,
                -0.04842861717894422,
                -0.01329910647812971,
                -0.04842861717894457,
                0.0093316942523494,
                0.009331694252362424,
                -0.013299106478129626,
                -0.048428617178944096,
                -0.048428617178943756,
                0.009331694252352656,
                0.004349311042047633,
                -0.0132991064781299,
                -0.04842861717894362,
                -0.013299106478130405,
                -0.0484286171789447,
                -0.04842861717894433,
                -0.013299106478129881,
                -0.07387507963730905,
                0.009331694252347391,
                0.008232242797057563,
                -0.04842861717894471,
                -0.013299106478130257,
                -0.013299106478130145,
                0.009331694252347774,
                -0.013299106478121268,
                -0.013299106478129857,
                -0.013299106478129919,
                -0.013299106478121738,
                -0.013299106478130124,
                -0.013299106478130013,
                -0.0018931633148357913,
                -0.013299106478130518,
                -0.04842861717894412,
                -0.013299106478129893,
                -0.013299106478129891,
                -0.01329910647812945,
                0.012164357257490653,
                -0.013299106478130138,
                -0.013299106478130094,
                -0.013299106478130368,
                -0.013299106478141311,
                -0.013299106478141955,
                -0.013299106478130037,
                0.009331694252429891,
                -0.013299106478129777,
                -0.013299106478121174,
                -0.013299106478130256,
                -0.013299106478130152,
                -0.027384102704764452,
                -0.013299106478130252,
                -0.013299106478121847,
                -0.048428617178944734,
                -0.013299106478138568,
                -0.013299106478135982,
                -0.013299106478130212,
                -0.01329910647813014,
                -0.013299106478130467,
                -0.013299106478142073,
                -0.013299106478130021,
                -0.013299106478129865,
                -0.0484286171789444,
                -0.013299106478129586,
                -0.013299106478130294,
                -0.04842861717894472,
                -0.013299106478129517,
                -0.013299106478132098,
                -0.01329910647812994,
                -0.013299106478130101,
                -0.013299106478129976,
                -0.013299106478129395,
                -0.07387507963730913,
                -0.013299106478130257,
                -0.013299106478130141,
                -0.013299106478130394,
                -0.013299106478130011,
                -0.013299106478141264,
                -0.013299106478129829,
                -0.013299106478130037,
                0.009331694252430153,
                -0.01329910647813707,
                -0.01329910647812994,
                -0.01329910647812993,
                -0.06938839600853501,
                -0.0018931633148358117,
                -0.013299106478129694,
                -0.013299106478129857,
                -0.013299106478130027,
                -0.013299106478131442,
                -0.01329910647813131,
                0.009331694252430377,
                -0.013299106478130157,
                -0.013299106478132053,
                -0.01329910647813002,
                -0.013299106478129987,
                -0.013299106478129917,
                -0.013299106478127307,
                0.008815656265271737,
                -0.013299106478132176,
                -0.0018931633148357378,
                -0.013299106478141455,
                -0.013299106478130027,
                -0.01329910647812735,
                -0.01329910647813369,
                -0.013299106478130141,
                -0.001893163314835714,
                -0.013299106478132173,
                -0.013299106478131695,
                -0.013299106478130042,
                -0.013299106478129753,
                -0.013299106478130401,
                -0.013299106478125907,
                -0.03886118310160526,
                0.009331694252430247,
                -0.007023584059175454,
                -0.013299106478130155,
                -0.013299106478130287,
                -0.013299106478130134,
                -0.0018931633148358083,
                -0.013299106478130087,
                -0.013299106478132136,
                -0.013299106478130263,
                -0.048428617178944144,
                -0.013299106478130172,
                -0.013299106478123952,
                -0.013299106478125567,
                -0.013299106478129647,
                0.18574664027827778,
                0.009331694252430368,
                -0.013299106478130101,
                -0.01329910647812732,
                -0.013299106478130159,
                -0.013299106478132181,
                -0.013299106478130046,
                -0.0132991064781302,
                0.185746640278278,
                -0.013299106478129503,
                0.009331694252430226,
                -0.0132991064781274,
                -0.04842861717894426,
                0.18574664027827767,
                -0.04842861717894474,
                -0.048428617178944276,
                -0.07387507963730859,
                -0.013299106478129622,
                -0.013299106478131355,
                -0.013299106478130098,
                -0.013299106478135732,
                -0.013299106478130204,
                -0.013299106478130136,
                -0.013299106478130701,
                -0.013299106478129761,
                -0.013299106478130023,
                -0.013299106478130044,
                -0.0484286171789443,
                -0.013299106478127327,
                -0.013299106478130122,
                -0.013299106478132473,
                -0.04842861717894452,
                -0.07387507963730894,
                -0.07387507963730901,
                -0.013299106478125693,
                0.00857573808380319,
                -0.013299106478130663,
                -0.04842861717894427,
                -0.013299106478129782,
                -0.013299106478132016,
                -0.01329910647813007,
                -0.04842861717894429,
                -0.01329910647813019,
                -0.013299106478131921,
                0.18574664027827786,
                -0.01329910647812964,
                0.18574664027827806,
                -0.013299106478129784,
                -0.0007739974563207416,
                -0.013299106478131203,
                -0.013299106478129987,
                0.001178952590013224,
                -0.0018931633148358336,
                -0.01329910647813011,
                -0.013299106478129838,
                -0.013299106478129857,
                -0.013299106478131397,
                -0.013299106478129999,
                -0.013299106478129845,
                -0.013299106478121598,
                -0.013299106478130063,
                -0.013299106478125886,
                -0.013299106478130223,
                -0.048428617178944124,
                0.009331694252430536,
                -0.013299106478129832,
                -0.01329910647812996,
                0.009331694252430309,
                -0.013299106478129432,
                -0.07387507963730935,
                -0.04842861717894439,
                0.00821019318922875,
                -0.04842861717894386,
                -0.013299106478130292,
                0.009331694252430077,
                -0.013299106478129947,
                -0.07387507963730912,
                -0.013299106478138619,
                -0.013299106478130027,
                -0.04842861717894412,
                -0.07387507963730898,
                -0.048428617178944235,
                -0.013299106478129936,
                -0.013299106478130077,
                -0.013299106478130145,
                -0.04842861717894383,
                -0.013299106478129968,
                -0.013299106478131395,
                -0.013299106478130256,
                0.0030786315939409854,
                -0.013299106478129959,
                -0.013299106478130016,
                0.009331694252430437
            ],
            "order": 3,
            "uid": "4b35dd",
            "name": "2015_cluster_1_component 1"
        },
        {
            "data": [
                0.006776114574123087,
                0.006776114574121283,
                0.019382235848825858,
                0.03721218244200575,
                0.006776114574124847,
                0.03721218244200571,
                0.03721218244200586,
                0.03229759751842187,
                0.03721218244200602,
                0.006776114574126263,
                0.03721218244200593,
                0.03494939327216523,
                0.006776114574113504,
                0.006776114574113503,
                0.0067761145741137094,
                0.03721218244200592,
                -0.01644464133073692,
                0.006776114574122345,
                0.0067761145741310445,
                -0.07419344352001513,
                0.20204825924509778,
                0.006776114574131986,
                0.006776114574122905
            ],
            "order": 4,
            "uid": "541fc8",
            "name": "neural progenitor_cluster_1_component 2"
        },
        {
            "data": [
                "GW16_6",
                "NPC_1",
                "NPC_10",
                "NPC_11",
                "NPC_12",
                "NPC_13",
                "NPC_14",
                "NPC_15",
                "NPC_2",
                "NPC_3",
                "NPC_4",
                "NPC_5",
                "NPC_6",
                "NPC_7",
                "NPC_8",
                "NPC_9",
                "GW16_22",
                "GW16_3",
                "GW21_8",
                "GW21+3_15",
                "GW21+3_4",
                "GW21+3_2",
                "GW16_6"
            ],
            "order": 5,
            "uid": "182112",
            "name": "neural progenitor_cluster_1_text"
        },
        {
            "data": [
                0.007204316596553362,
                0.007204316596553368,
                -0.06560717607938864,
                -0.16859087721091334,
                0.007204316596542956,
                -0.1685908772109132,
                -0.16859087721091318,
                -0.14020480536763408,
                -0.16859087721091334,
                0.007204316596554967,
                -0.1685908772109133,
                -0.15552126971811045,
                0.007204316596539314,
                0.007204316596539308,
                0.007204316596539586,
                -0.1685908772109132,
                -0.02157331472736774,
                0.007204316596550658,
                0.007204316596558085,
                -0.009937716783335632,
                0.006378641407381585,
                0.007204316596554823,
                0.0072043165965537705
            ],
            "order": 6,
            "uid": "5188a4",
            "name": "neural progenitor_cluster_1_z"
        },
        {
            "data": [
                -0.013299106478130249,
                -0.013299106478131354,
                -0.05764390792729973,
                -0.12036466273318494,
                -0.013299106478132249,
                -0.12036466273318489,
                -0.12036466273318505,
                -0.10307653041299422,
                -0.12036466273318501,
                -0.013299106478135765,
                -0.12036466273318502,
                -0.11240480463953845,
                -0.01329910647813998,
                -0.013299106478139986,
                -0.013299106478139722,
                -0.12036466273318504,
                0.00933169425243065,
                -0.013299106478130134,
                -0.013299106478129596,
                -0.005793727924425159,
                0.18574664027827806,
                -0.013299106478137587,
                -0.013299106478130108
            ],
            "order": 7,
            "uid": "cdb361",
            "name": "neural progenitor_cluster_1_component 1"
        },
        {
            "data": [
                0.006776114574123261,
                -0.01644464133073639,
                -0.016444641330737305,
                0.006776114574122957,
                -0.016444641330736445,
                -0.016444641330736944,
                0.10937618600857203,
                -0.016444641330736347,
                0.006776114574131762,
                -0.01644464133073651,
                -0.016444641330737426,
                -0.01644464133073719,
                0.006776114574124995,
                -0.016444641330736986,
                -0.01644464133073701,
                0.006776114574125015,
                -0.016444641330736615,
                0.0067761145741308685,
                0.006776114574131168
            ],
            "order": 8,
            "uid": "cf450f",
            "name": "radial glia_cluster_1_component 2"
        },
        {
            "data": [
                "GW16_11",
                "GW16_13",
                "GW16_15",
                "GW16_17",
                "GW16_18",
                "GW16_20",
                "GW16_25",
                "GW16_4",
                "GW16_11",
                "GW16_13",
                "GW16_15",
                "GW16_16",
                "GW16_17",
                "GW16_18",
                "GW16_20",
                "GW16_25",
                "GW16_4",
                "GW21_4",
                "GW21_5"
            ],
            "order": 9,
            "uid": "ef702d",
            "name": "radial glia_cluster_1_text"
        },
        {
            "data": [
                0.007204316596553497,
                -0.021573314727366594,
                -0.02157331472736821,
                0.007204316596553565,
                -0.02157331472736729,
                -0.021573314727367007,
                0.08190553210126839,
                -0.021573314727367385,
                0.0072043165965549215,
                -0.021573314727366552,
                -0.021573314727368308,
                -0.0215733147273668,
                0.007204316596542578,
                -0.021573314727367055,
                -0.021573314727366812,
                0.007204316596543153,
                -0.021573314727367184,
                0.007204316596558027,
                0.007204316596558203
            ],
            "order": 10,
            "uid": "0b7397",
            "name": "radial glia_cluster_1_z"
        },
        {
            "data": [
                -0.013299106478130221,
                0.009331694252429945,
                0.009331694252431333,
                -0.013299106478130257,
                0.009331694252430156,
                0.009331694252430443,
                -0.07387507963730947,
                0.009331694252430375,
                -0.013299106478137484,
                0.009331694252429985,
                0.009331694252431402,
                0.009331694252430535,
                -0.013299106478132377,
                0.009331694252430347,
                0.009331694252430578,
                -0.013299106478132225,
                0.009331694252430507,
                -0.013299106478129616,
                -0.013299106478129742
            ],
            "order": 11,
            "uid": "c1b424",
            "name": "radial glia_cluster_1_component 1"
        },
        {
            "data": [
                -0.1162735318855106,
                -0.04830254076567108,
                -0.04830254076566652,
                -0.04830254076566835,
                -0.04830254076566965,
                -0.04830254076566645,
                0.006776114574122248,
                0.006776114574122968,
                -0.11627353188551073,
                0.0067761145741192215,
                0.006776114574135024,
                -0.059585297821503486,
                0.006776114574136499,
                -0.11627353188551123,
                -0.11627353188551105,
                0.006776114574119,
                0.006776114574121219,
                0.006776114574136336,
                0.006776114574123897,
                0.006776114574123035,
                0.006776114574136053,
                0.006776114574123244
            ],
            "order": 12,
            "uid": "dbc759",
            "name": "newborn neuron_cluster_1_component 2"
        },
        {
            "data": [
                "GW16_12",
                "GW16_23",
                "GW16_26",
                "GW16_5",
                "GW16_7",
                "GW16_9",
                "GW16_1",
                "GW16_10",
                "GW16_12",
                "GW16_2",
                "GW16_23",
                "GW16_24",
                "GW16_26",
                "GW16_5",
                "GW16_7",
                "GW16_8",
                "GW16_9",
                "GW21_1",
                "GW21_2",
                "GW21_3",
                "GW21_7",
                "GW16_21"
            ],
            "order": 13,
            "uid": "d79f10",
            "name": "newborn neuron_cluster_1_text"
        },
        {
            "data": [
                -0.018846475783239842,
                0.07065538183266824,
                0.07065538183266588,
                0.0706553818326664,
                0.07065538183266715,
                0.0706553818326658,
                0.0072043165965583605,
                0.007204316596553657,
                -0.01884647578324009,
                0.007204316596555617,
                0.007204316596545657,
                -0.006845031988255249,
                0.007204316596549982,
                -0.018846475783239888,
                -0.018846475783240307,
                0.0072043165965557515,
                0.0072043165965548625,
                0.007204316596550073,
                0.0072043165965546985,
                0.007204316596553802,
                0.007204316596550132,
                0.007204316596553628
            ],
            "order": 14,
            "uid": "7cf62d",
            "name": "newborn neuron_cluster_1_z"
        },
        {
            "data": [
                -0.0018931633148355788,
                -0.048428617178944054,
                -0.048428617178944686,
                -0.048428617178944235,
                -0.048428617178944276,
                -0.04842861717894479,
                -0.013299106478124254,
                -0.013299106478129931,
                -0.0018931633148355203,
                -0.013299106478125872,
                -0.013299106478121011,
                -0.007147812916558917,
                -0.01329910647810213,
                -0.0018931633148359054,
                -0.0018931633148356938,
                -0.01329910647812589,
                -0.013299106478129425,
                -0.013299106478102287,
                -0.013299106478132084,
                -0.01329910647813011,
                -0.013299106478102776,
                -0.013299106478129928
            ],
            "order": 15,
            "uid": "cfe0ef",
            "name": "newborn neuron_cluster_1_component 1"
        },
        {
            "data": [
                0.006776114574123006,
                -0.11627353188551141,
                -0.1162735318855116,
                -0.1162735318855119,
                -0.1162735318855117,
                -0.06441747636337918,
                -0.11627353188551139,
                -0.11627353188551194,
                -0.11627353188551143
            ],
            "order": 16,
            "uid": "f57daf",
            "name": "maturing neuron_cluster_1_component 2"
        },
        {
            "data": [
                "GW21_6",
                "GW21+3_1",
                "GW21+3_12",
                "GW21+3_13",
                "GW21+3_14",
                "GW21+3_16",
                "GW21+3_6",
                "GW21+3_7",
                "GW21+3_8"
            ],
            "order": 17,
            "uid": "adfce5",
            "name": "maturing neuron_cluster_1_text"
        },
        {
            "data": [
                0.0072043165965537375,
                -0.01884647578324032,
                -0.01884647578324089,
                -0.018846475783240682,
                -0.018846475783240814,
                -0.007868050611700343,
                -0.018846475783240293,
                -0.01884647578324043,
                -0.018846475783240557
            ],
            "order": 18,
            "uid": "4eed18",
            "name": "maturing neuron_cluster_1_z"
        },
        {
            "data": [
                -0.013299106478129976,
                -0.001893163314835908,
                -0.0018931633148355498,
                -0.001893163314835744,
                -0.0018931633148356122,
                -0.006699899774267874,
                -0.0018931633148357658,
                -0.0018931633148357653,
                -0.0018931633148356435
            ],
            "order": 19,
            "uid": "bbe6ea",
            "name": "maturing neuron_cluster_1_component 1"
        },
        {
            "data": [
                0.03174955377151659,
                0.03174955377151898,
                0.03174955377151681,
                0.031749553771512416,
                0.03174955377151759,
                0.03174955377151792,
                0.031749553771518495,
                0.03174955377151846,
                0.03174955377151304,
                0.03174955377151275,
                0.03174955377151254,
                0.03174955377151289,
                0.031749553771516476,
                0.03174955377152585,
                0.031749553771516316,
                0.03174955377151818,
                0.031749553771513075,
                0.031749553771518974,
                0.03174955377152472,
                0.03174955377151277,
                0.03174955377151898,
                0.031749553771517294,
                0.031749553771522894,
                0.031749553771517385,
                0.031749553771521444,
                0.03174955377151509,
                0.03174955377151897,
                0.03174955377151409,
                0.03174955377151431,
                0.031749553771519036,
                0.03174955377151452,
                0.03174955377151531,
                0.03174955377151476,
                0.03174955377151673,
                0.03174955377151395,
                0.03174955377152279,
                0.03174955377151405,
                0.03174955377151227,
                0.03174955377151706,
                0.03174955377151762,
                0.03174955377151284,
                0.03174955377151482,
                0.03174955377151768,
                0.03174955377151323,
                0.031749553771514664,
                0.03174955377151282,
                0.03174955377151297,
                0.031749553771516954,
                0.03174955377151713,
                0.031749553771522325,
                0.03174955377151523,
                0.03174955377151757,
                0.031749553771515074,
                0.03174955377151314,
                0.031749553771516774,
                0.03174955377151637,
                0.03174955377151734,
                0.0317495537715182,
                0.03174955377151308,
                0.03174955377151686,
                0.03174955377151327,
                0.031749553771516684,
                0.03174955377151348,
                0.03174955377151342,
                0.031749553771515414,
                0.03174955377151445,
                0.031749553771523276,
                0.03174955377151687,
                0.03174955377151208,
                0.03174955377151699,
                0.03174955377151398,
                0.03174955377152211,
                0.0317495537715131,
                0.03174955377151298,
                0.020560317189823287,
                0.03174955377151233,
                0.03174955377151225,
                0.03174955377151393,
                0.03174955377151204,
                0.03174955377151734,
                0.03174955377151273,
                0.03174955377151212,
                0.03174955377151557,
                0.0317495537715168,
                0.03174955377151446,
                0.031749553771512194,
                0.03174955377151247,
                0.03174955377151278,
                0.03174955377151563,
                0.03174955377151601,
                0.03174955377151849,
                0.031749553771512395,
                0.03174955377151719,
                0.03174955377151659,
                0.03174955377151271,
                0.031749553771513644,
                0.022290404273156914,
                0.03174955377152583,
                0.03174955377151924,
                0.03174955377151728,
                0.03174955377151388,
                0.03174955377151217,
                0.031749553771513166,
                0.031749553771520424,
                0.031749553771525794,
                0.03174955377151594,
                0.031749553771514956,
                0.03174955377151805,
                0.03174955377151731,
                0.03174955377151731,
                0.031749553771522665,
                0.0317495537715133,
                0.03174955377151614,
                0.031749553771520736,
                0.03174955377151497,
                0.031749553771519466,
                0.031749553771513776,
                0.03174955377151729,
                0.031749553771512104,
                0.031749553771516406,
                0.031749553771518904,
                0.031749553771514304,
                0.031749553771518925,
                0.031749553771525066,
                0.03174955377151318,
                0.01849920896313109,
                0.031749553771514775,
                0.03174955377151514,
                0.031749553771513665,
                0.03174955377152074,
                0.03174955377152003,
                0.03174955377152019,
                0.03174955377151377,
                0.031749553771520396,
                0.03174955377151448,
                0.03174955377151194,
                0.031749553771514734,
                0.031749553771512756,
                0.0317495537715132,
                0.031749553771516864,
                0.031749553771524865,
                0.03174955377151631,
                0.031749553771515,
                0.03174955377152521,
                0.03174955377151415,
                0.031749553771516156,
                0.03174955377151361,
                0.031749553771517794,
                0.03174955377151561,
                0.03174955377151431,
                0.03174955377151771,
                0.020305395113390273,
                0.03174955377151188,
                0.031749553771518974,
                0.031749553771517516,
                0.031749553771512264,
                -0.005375033289114315,
                0.03174955377151352,
                0.03174955377151597,
                0.03174955377151537,
                0.03174955377151625,
                0.031749553771516344,
                0.03174955377151188,
                0.03174955377151245,
                0.03174955377151933,
                0.015481055863806171,
                0.018406871234923444,
                0.03174955377151237,
                0.03174955377151219,
                0.03174955377152525,
                0.018328575245388175,
                0.03174955377151213,
                0.031749553771515705,
                0.03174955377151457,
                0.03174955377152045,
                0.03174955377151653,
                0.031749553771518745,
                0.03174955377151449,
                0.03174955377151316,
                0.031749553771514775,
                0.031749553771515476,
                0.03174955377151471,
                0.0317495537715152,
                0.031749553771517836,
                0.03174955377151537,
                0.03174955377151727,
                0.031749553771518085,
                0.031749553771518266,
                0.031749553771516656,
                0.03174955377151651,
                0.03174955377151844,
                0.031749553771514546,
                0.031749553771514956,
                0.03174955377151731,
                0.03174955377151689,
                0.016241676010063225,
                0.03174955377151302,
                0.031749553771516524,
                0.031749553771517905,
                0.03174955377151847,
                0.017007852751939865,
                0.03174955377151991,
                0.03174955377151566,
                0.031749553771514366,
                0.031749553771513166,
                0.03174955377151971,
                0.03174955377151666
            ],
            "order": 20,
            "uid": "2565f9",
            "name": "2015_cluster_2_component 2"
        },
        {
            "data": [
                "Sample_GW16-5-F1-A-10",
                "Sample_GW16-5-F1-A-7",
                "Sample_GW16-5-F1-A-8",
                "Sample_GW16-5-F1-B-12",
                "Sample_GW16-5-F1-B-2",
                "Sample_GW16-5-F1-B-6",
                "Sample_GW16-5-F1-B-7",
                "Sample_GW16-5-F1-C-10",
                "Sample_GW16-5-F1-C-12",
                "Sample_GW16-5-F1-C-2",
                "Sample_GW16-5-F1-C-4",
                "Sample_GW16-5-F1-C-6",
                "Sample_GW16-5-F1-D-10",
                "Sample_GW16-5-F1-D-3",
                "Sample_GW16-5-F1-D-5",
                "Sample_GW16-5-F1-D-6",
                "Sample_GW16-5-F1-E-10",
                "Sample_GW16-5-F1-E-7",
                "Sample_GW16-5-F1-F-11",
                "Sample_GW16-5-F1-F-9",
                "Sample_GW16-5-F1-G-12",
                "Sample_GW16-5-F1-G-3",
                "Sample_GW16-5-F1-G-5",
                "Sample_GW16-5-F1-G-7",
                "Sample_GW16-5-F1-H-1",
                "Sample_GW16-5-F2-A-10",
                "Sample_GW16-5-F2-A-11",
                "Sample_GW16-5-F2-A-3",
                "Sample_GW16-5-F2-A-5",
                "Sample_GW16-5-F2-A-6",
                "Sample_GW16-5-F2-A-7",
                "Sample_GW16-5-F2-A-8",
                "Sample_GW16-5-F2-B-10",
                "Sample_GW16-5-F2-B-11",
                "Sample_GW16-5-F2-B-2",
                "Sample_GW16-5-F2-B-3",
                "Sample_GW16-5-F2-B-5",
                "Sample_GW16-5-F2-B-6",
                "Sample_GW16-5-F2-B-7",
                "Sample_GW16-5-F2-B-8",
                "Sample_GW16-5-F2-B-9",
                "Sample_GW16-5-F2-C-1",
                "Sample_GW16-5-F2-C-10",
                "Sample_GW16-5-F2-C-11",
                "Sample_GW16-5-F2-C-12",
                "Sample_GW16-5-F2-C-5",
                "Sample_GW16-5-F2-C-6",
                "Sample_GW16-5-F2-C-8",
                "Sample_GW16-5-F2-C-9",
                "Sample_GW16-5-F2-D-10",
                "Sample_GW16-5-F2-D-11",
                "Sample_GW16-5-F2-D-2",
                "Sample_GW16-5-F2-D-5",
                "Sample_GW16-5-F2-D-6",
                "Sample_GW16-5-F2-D-9",
                "Sample_GW16-5-F2-E-1",
                "Sample_GW16-5-F2-E-10",
                "Sample_GW16-5-F2-E-11",
                "Sample_GW16-5-F2-E-12",
                "Sample_GW16-5-F2-E-2",
                "Sample_GW16-5-F2-E-3",
                "Sample_GW16-5-F2-E-4",
                "Sample_GW16-5-F2-E-5",
                "Sample_GW16-5-F2-E-6",
                "Sample_GW16-5-F2-E-8",
                "Sample_GW16-5-F2-F-1",
                "Sample_GW16-5-F2-F-10",
                "Sample_GW16-5-F2-F-11",
                "Sample_GW16-5-F2-F-12",
                "Sample_GW16-5-F2-F-4",
                "Sample_GW16-5-F2-F-5",
                "Sample_GW16-5-F2-F-7",
                "Sample_GW16-5-F2-F-8",
                "Sample_GW16-5-F2-F-9",
                "Sample_GW16-5-F2-G-10",
                "Sample_GW16-5-F2-G-12",
                "Sample_GW16-5-F2-G-2",
                "Sample_GW16-5-F2-G-5",
                "Sample_GW16-5-F2-G-7",
                "Sample_GW16-5-F2-G-8",
                "Sample_GW16-5-F2-H-4",
                "Sample_GW16-5-F2-H-5",
                "Sample_GW16-5-V1-A-3",
                "Sample_GW16-5-V1-A-8",
                "Sample_GW16-5-V1-A-9",
                "Sample_GW16-5-V1-B-11",
                "Sample_GW16-5-V1-B-6",
                "Sample_GW16-5-V1-B-7",
                "Sample_GW16-5-V1-C-1",
                "Sample_GW16-5-V1-C-11",
                "Sample_GW16-5-V1-C-3",
                "Sample_GW16-5-V1-C-7",
                "Sample_GW16-5-V1-D-3",
                "Sample_GW16-5-V1-D-4",
                "Sample_GW16-5-V1-E-10",
                "Sample_GW16-5-V1-E-11",
                "Sample_GW16-5-V1-E-4",
                "Sample_GW16-5-V1-E-9",
                "Sample_GW16-5-V1-F-1",
                "Sample_GW16-5-V1-F-2",
                "Sample_GW16-5-V1-F-3",
                "Sample_GW16-5-V1-F-7",
                "Sample_GW16-5-V1-F-9",
                "Sample_GW16-5-V1-G-3",
                "Sample_GW16-5-V2-A-11",
                "Sample_GW16-5-V2-A-2",
                "Sample_GW16-5-V2-A-3",
                "Sample_GW16-5-V2-A-5",
                "Sample_GW16-5-V2-A-8",
                "Sample_GW16-5-V2-B-1",
                "Sample_GW16-5-V2-B-12",
                "Sample_GW16-5-V2-B-2",
                "Sample_GW16-5-V2-B-4",
                "Sample_GW16-5-V2-B-5",
                "Sample_GW16-5-V2-B-6",
                "Sample_GW16-5-V2-B-9",
                "Sample_GW16-5-V2-C-11",
                "Sample_GW16-5-V2-C-12",
                "Sample_GW16-5-V2-C-3",
                "Sample_GW16-5-V2-C-4",
                "Sample_GW16-5-V2-C-6",
                "Sample_GW16-5-V2-C-8",
                "Sample_GW16-5-V2-C-9",
                "Sample_GW16-5-V2-D-11",
                "Sample_GW16-5-V2-D-3",
                "Sample_GW16-5-V2-D-4",
                "Sample_GW16-5-V2-D-6",
                "Sample_GW16-5-V2-D-9",
                "Sample_GW16-5-V2-E-1",
                "Sample_GW16-5-V2-E-11",
                "Sample_GW16-5-V2-E-2",
                "Sample_GW16-5-V2-E-3",
                "Sample_GW16-5-V2-E-5",
                "Sample_GW16-5-V2-E-7",
                "Sample_GW16-5-V2-E-9",
                "Sample_GW16-5-V2-F-11",
                "Sample_GW16-5-V2-F-12",
                "Sample_GW16-5-V2-F-3",
                "Sample_GW16-5-V2-F-4",
                "Sample_GW16-5-V2-G-1",
                "Sample_GW16-5-V2-G-11",
                "Sample_GW16-5-V2-G-5",
                "Sample_GW16-5-V2-H-1",
                "Sample_GW16-5-V2-H-12",
                "Sample_GW16-5-V2-H-5",
                "Sample_S37-A1-from-1771039001-A1-GW18-SVZ",
                "Sample_S37-A10-from-1771039001-A10-GW18-SVZ",
                "Sample_S37-A2-from-1771039001-A2-GW18-SVZ",
                "Sample_S37-A3-from-1771039001-A3-GW18-SVZ",
                "Sample_S37-A4-from-1771039001-A4-GW18-SVZ",
                "Sample_S37-A8-from-1771039001-A8-GW18-SVZ",
                "Sample_S37-A9-from-1771039001-A9-GW18-SVZ",
                "Sample_S37-B10-from-1771039001-B10-GW18-SVZ",
                "Sample_S37-B2-from-1771039001-B2-GW18-SVZ",
                "Sample_S37-B3-from-1771039001-B3-GW18-SVZ",
                "Sample_S37-B6-from-1771039001-B6-GW18-SVZ",
                "Sample_S37-B8-from-1771039001-B8-GW18-SVZ",
                "Sample_S37-B9-from-1771039001-B9-GW18-SVZ",
                "Sample_S37-C10-from-1771039001-C10-GW18-SVZ",
                "Sample_S37-C11-from-1771039001-C11-GW18-SVZ",
                "Sample_S37-C3-from-1771039001-C3-GW18-SVZ",
                "Sample_S37-C6-from-1771039001-C6-GW18-SVZ",
                "Sample_S37-D10-from-1771039001-D10-GW18-SVZ",
                "Sample_S37-D11-from-1771039001-D11-GW18-SVZ",
                "Sample_S37-D2-from-1771039001-D2-GW18-SVZ",
                "Sample_S37-D4-from-1771039001-D4-GW18-SVZ",
                "Sample_S37-D6-from-1771039001-D6-GW18-SVZ",
                "Sample_S37-E10-from-1771039001-E10-GW18-SVZ",
                "Sample_S37-E11-from-1771039001-E11-GW18-SVZ",
                "Sample_S37-E12-from-1771039001-E12-GW18-SVZ",
                "Sample_S37-E2-from-1771039001-E2-GW18-SVZ",
                "Sample_S37-E3-from-1771039001-E3-GW18-SVZ",
                "Sample_S37-E5-from-1771039001-E5-GW18-SVZ",
                "Sample_S37-F10-from-1771039001-F10-GW18-SVZ",
                "Sample_S37-F12-from-1771039001-F12-GW18-SVZ",
                "Sample_S37-F2-from-1771039001-F2-GW18-SVZ",
                "Sample_S37-F5-from-1771039001-F5-GW18-SVZ",
                "Sample_S37-F7-from-1771039001-F7-GW18-SVZ",
                "Sample_S37-F9-from-1771039001-F9-GW18-SVZ",
                "Sample_S37-G1-from-1771039001-G1-GW18-SVZ",
                "Sample_S37-G5-from-1771039001-G5-GW18-SVZ",
                "Sample_S37-G7-from-1771039001-G7-GW18-SVZ",
                "Sample_S37-G8-from-1771039001-G8-GW18-SVZ",
                "Sample_S37-H2-from-1771039001-H2-GW18-SVZ",
                "Sample_S37-H4-from-1771039001-H4-GW18-SVZ",
                "Sample_S38-A3-from-1771039002-A3-GW18-VZ",
                "Sample_S38-B10-from-1771039002-B10-GW18-VZ",
                "Sample_S38-C1-from-1771039002-C1-GW18-VZ",
                "Sample_S38-C10-from-1771039002-C10-GW18-VZ",
                "Sample_S38-C11-from-1771039002-C11-GW18-VZ",
                "Sample_S38-C4-from-1771039002-C4-GW18-VZ",
                "Sample_S38-C5-from-1771039002-C5-GW18-VZ",
                "Sample_S38-C6-from-1771039002-C6-GW18-VZ",
                "Sample_S38-C7-from-1771039002-C7-GW18-VZ",
                "Sample_S38-D11-from-1771039002-D11-GW18-VZ",
                "Sample_S38-D7-from-1771039002-D7-GW18-VZ",
                "Sample_S38-E2-from-1771039002-E2-GW18-VZ",
                "Sample_S38-E8-from-1771039002-E8-GW18-VZ",
                "Sample_S38-E9-from-1771039002-E9-GW18-VZ",
                "Sample_S38-F11-from-1771039002-F11-GW18-VZ",
                "Sample_S38-F7-from-1771039002-F7-GW18-VZ",
                "Sample_S38-F8-from-1771039002-F8-GW18-VZ",
                "Sample_S38-G7-from-1771039002-G7-GW18-VZ",
                "Sample_S38-G9-from-1771039002-G9-GW18-VZ",
                "Sample_S38-H11-from-1771039002-H11-GW18-VZ",
                "Sample_S38-H4-from-1771039002-H4-GW18-VZ",
                "Sample_S38-H8-from-1771039002-H8-GW18-VZ"
            ],
            "order": 21,
            "uid": "f4131c",
            "name": "2015_cluster_2_text"
        },
        {
            "data": [
                0.004620624993845718,
                0.004620624993842723,
                0.004620624993846171,
                0.0046206249938507814,
                0.004620624993846844,
                0.004620624993847754,
                0.0046206249938462425,
                0.004620624993842661,
                0.004620624993850705,
                0.004620624993850899,
                0.004620624993850432,
                0.004620624993849874,
                0.004620624993846134,
                0.004620624993842077,
                0.0046206249938459355,
                0.0046206249938457716,
                0.004620624993850144,
                0.004620624993846913,
                0.004620624993843128,
                0.004620624993850196,
                0.004620624993846301,
                0.004620624993835824,
                0.0046206249938437385,
                0.00462062499384247,
                0.004620624993844214,
                0.004620624993848573,
                0.004620624993846497,
                0.004620624993849356,
                0.004620624993848485,
                0.004620624993845352,
                0.004620624993847142,
                0.0046206249938452815,
                0.004620624993845768,
                0.004620624993846057,
                0.004620624993849798,
                0.004620624993844581,
                0.0046206249938465505,
                0.004620624993850605,
                0.0046206249938461515,
                0.004620624993843794,
                0.0046206249938503885,
                0.00462062499384901,
                0.004620624993845228,
                0.004620624993849533,
                0.004620624993847129,
                0.004620624993850664,
                0.00462062499384916,
                0.004620624993846174,
                0.004620624993845545,
                0.0046206249938448235,
                0.004620624993846251,
                0.004620624993846491,
                0.004620624993847583,
                0.004620624993848832,
                0.004620624993847453,
                0.00462062499384617,
                0.004620624993845886,
                0.004620624993845673,
                0.0046206249938487666,
                0.004620624993848109,
                0.004620624993848134,
                0.004620624993845352,
                0.0046206249938488125,
                0.0046206249938502576,
                0.004620624993846966,
                0.0046206249938455365,
                0.004620624993843054,
                0.004620624993847942,
                0.004620624993850752,
                0.004620624993845359,
                0.004620624993845658,
                0.004620624993844061,
                0.0046206249938485315,
                0.0046206249938501994,
                0.005778236341179916,
                0.004620624993851304,
                0.004620624993850941,
                0.004620624993850449,
                0.0046206249938509966,
                0.004620624993846251,
                0.004620624993849399,
                0.004620624993851257,
                0.0046206249938474005,
                0.004620624993845897,
                0.004620624993848352,
                0.004620624993850995,
                0.004620624993850035,
                0.004620624993850577,
                0.0046206249938470475,
                0.004620624993846715,
                0.00462062499384179,
                0.004620624993850706,
                0.004620624993844761,
                0.004620624993846007,
                0.004620624993850703,
                0.004620624993849785,
                0.005599245717026094,
                0.004620624993842278,
                0.0046206249938443794,
                0.004620624993844805,
                0.004620624993849002,
                0.004620624993851178,
                0.0046206249938504475,
                0.0046206249938406,
                0.004620624993842452,
                0.00462062499384824,
                0.004620624993846025,
                0.004620624993842679,
                0.004620624993845148,
                0.004620624993844408,
                0.00462062499384316,
                0.004620624993849968,
                0.00462062499384825,
                0.004620624993845262,
                0.004620624993846516,
                0.004620624993843739,
                0.0046206249938490354,
                0.0046206249938478185,
                0.004620624993851235,
                0.004620624993846644,
                0.004620624993846909,
                0.004620624993850044,
                0.004620624993845844,
                0.004620624993842989,
                0.004620624993848477,
                0.005991473612005119,
                0.00462062499384769,
                0.004620624993846722,
                0.004620624993849898,
                0.004620624993840745,
                0.004620624993846392,
                0.004620624993840509,
                0.004620624993848242,
                0.004620624993841772,
                0.004620624993848502,
                0.004620624993851177,
                0.004620624993847826,
                0.004620624993850219,
                0.004620624993849951,
                0.004620624993844651,
                0.004620624993842897,
                0.004620624993838086,
                0.004620624993847707,
                0.004620624993842911,
                0.004620624993850064,
                0.004620624993836178,
                0.00462062499384745,
                0.00462062499384272,
                0.004620624993846687,
                0.004620624993847395,
                0.004620624993842582,
                0.005804609962491992,
                0.004620624993851293,
                0.0046206249938461185,
                0.004620624993845083,
                0.004620624993851002,
                0.035244596714557014,
                0.004620624993849522,
                0.0046206249938377615,
                0.004620624993845618,
                0.004620624993835696,
                0.004620624993844691,
                0.004620624993851183,
                0.004620624993850645,
                0.004620624993846043,
                0.00630372443003555,
                0.0060010266499734965,
                0.0046206249938508534,
                0.004620624993851492,
                0.00462062499384262,
                0.006009126963634364,
                0.004620624993850594,
                0.004620624993846613,
                0.004620624993845978,
                0.004620624993845653,
                0.004620624993834923,
                0.004620624993845207,
                0.004620624993846393,
                0.004620624993850023,
                0.00462062499384572,
                0.004620624993845657,
                0.004620624993848285,
                0.004620624993839807,
                0.004620624993846169,
                0.004620624993844089,
                0.0046206249938467794,
                0.004620624993842079,
                0.004620624993843484,
                0.0046206249938398666,
                0.0046206249938397555,
                0.004620624993843907,
                0.004620624993846451,
                0.004620624993847732,
                0.004620624993837486,
                0.004620624993836403,
                0.006225032509823057,
                0.004620624993848786,
                0.00462062499384528,
                0.00462062499384032,
                0.004620624993846516,
                0.006145765717671665,
                0.0046206249938415475,
                0.004620624993843383,
                0.004620624993846709,
                0.00462062499384971,
                0.004620624993842442,
                0.004620624993848046
            ],
            "order": 22,
            "uid": "9a8b73",
            "name": "2015_cluster_2_z"
        },
        {
            "data": [
                -0.03550178192812703,
                -0.03550178192812374,
                -0.035501781928125635,
                -0.035501781928129986,
                -0.035501781928124525,
                -0.035501781928123935,
                -0.0355017819281234,
                -0.035501781928124365,
                -0.035501781928130166,
                -0.03550178192812985,
                -0.035501781928129826,
                -0.035501781928129694,
                -0.035501781928126815,
                -0.03550178192811522,
                -0.03550178192812603,
                -0.035501781928124566,
                -0.03550178192812986,
                -0.03550178192812282,
                -0.0355017819281164,
                -0.03550178192813001,
                -0.035501781928122464,
                -0.03550178192812729,
                -0.03550178192811857,
                -0.03550178192812528,
                -0.0355017819281202,
                -0.03550178192812692,
                -0.03550178192812264,
                -0.035501781928129576,
                -0.03550178192812849,
                -0.03550178192812331,
                -0.035501781928128424,
                -0.03550178192812729,
                -0.035501781928127946,
                -0.03550178192812549,
                -0.035501781928128986,
                -0.03550178192811883,
                -0.035501781928128764,
                -0.03550178192812982,
                -0.03550178192812511,
                -0.035501781928124615,
                -0.035501781928129486,
                -0.035501781928126926,
                -0.03550178192812442,
                -0.03550178192812964,
                -0.035501781928128036,
                -0.03550178192812986,
                -0.03550178192812872,
                -0.035501781928124865,
                -0.03550178192812577,
                -0.035501781928119376,
                -0.03550178192812756,
                -0.03550178192812457,
                -0.03550178192812736,
                -0.035501781928129916,
                -0.035501781928125524,
                -0.03550178192812719,
                -0.03550178192812449,
                -0.03550178192812378,
                -0.035501781928129646,
                -0.035501781928124664,
                -0.03550178192812853,
                -0.035501781928125704,
                -0.035501781928128834,
                -0.0355017819281293,
                -0.03550178192812682,
                -0.03550178192812789,
                -0.03550178192811787,
                -0.035501781928125586,
                -0.03550178192812934,
                -0.035501781928126315,
                -0.03550178192812904,
                -0.03550178192811904,
                -0.03550178192812865,
                -0.035501781928129396,
                -0.02555397352284706,
                -0.0355017819281299,
                -0.03550178192812959,
                -0.03550178192812923,
                -0.03550178192812943,
                -0.035501781928125156,
                -0.0355017819281295,
                -0.03550178192812967,
                -0.03550178192812789,
                -0.03550178192812693,
                -0.03550178192812785,
                -0.035501781928129576,
                -0.03550178192812961,
                -0.03550178192812971,
                -0.03550178192812756,
                -0.0355017819281276,
                -0.03550178192812502,
                -0.03550178192812934,
                -0.03550178192812653,
                -0.03550178192812709,
                -0.03550178192812946,
                -0.03550178192812835,
                -0.027092110169053527,
                -0.03550178192811527,
                -0.03550178192812299,
                -0.03550178192812645,
                -0.0355017819281286,
                -0.03550178192812959,
                -0.03550178192812973,
                -0.03550178192812255,
                -0.03550178192811522,
                -0.035501781928125614,
                -0.03550178192812698,
                -0.03550178192812545,
                -0.03550178192812537,
                -0.03550178192812629,
                -0.03550178192811896,
                -0.03550178192812947,
                -0.035501781928126405,
                -0.03550178192812095,
                -0.03550178192812774,
                -0.03550178192812317,
                -0.035501781928128286,
                -0.03550178192812512,
                -0.03550178192812963,
                -0.03550178192812604,
                -0.0355017819281229,
                -0.035501781928128806,
                -0.03550178192812314,
                -0.0355017819281161,
                -0.0355017819281287,
                -0.023721542007793764,
                -0.03550178192812801,
                -0.03550178192812757,
                -0.03550178192812941,
                -0.035501781928121645,
                -0.035501781928121874,
                -0.03550178192812344,
                -0.03550178192812837,
                -0.035501781928122846,
                -0.03550178192812793,
                -0.03550178192812951,
                -0.035501781928128175,
                -0.03550178192812982,
                -0.035501781928129666,
                -0.03550178192812575,
                -0.035501781928116136,
                -0.035501781928127515,
                -0.035501781928127044,
                -0.03550178192811587,
                -0.035501781928129125,
                -0.03550178192812803,
                -0.03550178192812908,
                -0.03550178192812597,
                -0.03550178192812692,
                -0.035501781928128334,
                -0.03550178192812616,
                -0.025327334649312066,
                -0.03550178192812932,
                -0.03550178192812255,
                -0.03550178192812443,
                -0.03550178192812908,
                -0.041496670924623856,
                -0.03550178192812895,
                -0.03550178192812789,
                -0.03550178192812766,
                -0.035501781928127495,
                -0.03550178192812589,
                -0.03550178192812927,
                -0.035501781928130215,
                -0.03550178192812277,
                -0.021038248241453172,
                -0.02363944900510114,
                -0.03550178192812916,
                -0.03550178192813026,
                -0.035501781928115886,
                -0.023569839832294107,
                -0.03550178192812955,
                -0.035501781928127266,
                -0.035501781928128195,
                -0.03550178192812129,
                -0.035501781928127495,
                -0.03550178192812337,
                -0.035501781928128334,
                -0.0355017819281297,
                -0.03550178192812849,
                -0.03550178192812751,
                -0.03550178192812735,
                -0.035501781928128244,
                -0.03550178192812424,
                -0.03550178192812801,
                -0.035501781928124636,
                -0.03550178192812431,
                -0.03550178192812579,
                -0.035501781928126704,
                -0.03550178192812682,
                -0.035501781928124004,
                -0.03550178192812829,
                -0.03550178192812784,
                -0.035501781928126544,
                -0.035501781928127335,
                -0.021714478780409864,
                -0.03550178192812907,
                -0.035501781928125815,
                -0.03550178192812593,
                -0.035501781928123886,
                -0.022395649419447473,
                -0.03550178192812409,
                -0.035501781928127446,
                -0.03550178192812903,
                -0.03550178192812993,
                -0.0355017819281227,
                -0.035501781928125725
            ],
            "order": 23,
            "uid": "aab646",
            "name": "2015_cluster_2_component 1"
        },
        {
            "data": [
                0.03174955377151926,
                0.023263577495844012,
                0.03174955377151726,
                0.031749553771518606,
                0.03174955377151319,
                0.031749553771513915,
                0.0317495537715165
            ],
            "order": 24,
            "uid": "023690",
            "name": "newborn neuron_cluster_2_component 2"
        },
        {
            "data": [
                "GW16_1",
                "GW16_10",
                "GW16_19",
                "GW16_2",
                "GW16_21",
                "GW16_24",
                "GW16_8"
            ],
            "order": 25,
            "uid": "56908f",
            "name": "newborn neuron_cluster_2_text"
        },
        {
            "data": [
                0.004620624993845508,
                0.005498563569746541,
                0.004620624993844906,
                0.004620624993846591,
                0.004620624993849541,
                0.0046206249938481915,
                0.004620624993846972
            ],
            "order": 26,
            "uid": "f7e590",
            "name": "newborn neuron_cluster_2_z"
        },
        {
            "data": [
                -0.035501781928122485,
                -0.027957311355379863,
                -0.03550178192812661,
                -0.03550178192812303,
                -0.03550178192812944,
                -0.035501781928128744,
                -0.035501781928125926
            ],
            "order": 27,
            "uid": "77f5d4",
            "name": "newborn neuron_cluster_2_component 1"
        },
        {
            "data": [
                0.005042868454533714
            ],
            "order": 28,
            "uid": "b6de27",
            "name": "neural progenitor_cluster_3_component 2"
        },
        {
            "data": [
                "GW21+3_11"
            ],
            "order": 29,
            "uid": "e637da",
            "name": "neural progenitor_cluster_3_text"
        },
        {
            "data": [
                0.049280925160851106
            ],
            "order": 30,
            "uid": "eca459",
            "name": "neural progenitor_cluster_3_z"
        },
        {
            "data": [
                -9.958743814101188e-05
            ],
            "order": 31,
            "uid": "07fc3f",
            "name": "neural progenitor_cluster_3_component 1"
        },
        {
            "data": [
                0.005042868454533716
            ],
            "order": 32,
            "uid": "28d577",
            "name": "newborn neuron_cluster_3_component 2"
        },
        {
            "data": [
                "GW16_19"
            ],
            "order": 33,
            "uid": "a410b6",
            "name": "newborn neuron_cluster_3_text"
        },
        {
            "data": [
                0.04928092516085114
            ],
            "order": 34,
            "uid": "2aa6aa",
            "name": "newborn neuron_cluster_3_z"
        },
        {
            "data": [
                -9.95874381410119e-05
            ],
            "order": 35,
            "uid": "732bc3",
            "name": "newborn neuron_cluster_3_component 1"
        },
        {
            "data": [
                0.005042868454533713,
                0.005042868454533715,
                0.005042868454533715,
                0.005042868454533715
            ],
            "order": 36,
            "uid": "d6aaf2",
            "name": "maturing neuron_cluster_3_component 2"
        },
        {
            "data": [
                "GW21+3_10",
                "GW21+3_3",
                "GW21+3_5",
                "GW21+3_9"
            ],
            "order": 37,
            "uid": "07c878",
            "name": "maturing neuron_cluster_3_text"
        },
        {
            "data": [
                0.049280925160851086,
                0.0492809251608511,
                0.0492809251608511,
                0.04928092516085113
            ],
            "order": 38,
            "uid": "e6e4de",
            "name": "maturing neuron_cluster_3_z"
        },
        {
            "data": [
                -9.958743814101185e-05,
                -9.958743814101191e-05,
                -9.95874381410119e-05,
                -9.95874381410119e-05
            ],
            "order": 39,
            "uid": "46fe9a",
            "name": "maturing neuron_cluster_3_component 1"
        },
        {
            "data": [
                0.0038038781158035518,
                0.0038038781158036845,
                0.0038038781158036537,
                0.003803878115803529,
                0.003803878115803709,
                0.0038038781158036667,
                0.0038038781158035934,
                0.003803878115803615,
                0.003803878115803715
            ],
            "order": 40,
            "uid": "d03900",
            "name": "2015_cluster_4_component 2"
        },
        {
            "data": [
                "Sample_GW16-5-V1-D-2",
                "Sample_GW16-5-V1-H-3",
                "Sample_GW16-5-V2-D-7",
                "Sample_GW16-5-V2-D-8",
                "Sample_GW16-5-V2-F-6",
                "Sample_S37-A5-from-1771039001-A5-GW18-SVZ",
                "Sample_S37-B11-from-1771039001-B11-GW18-SVZ",
                "Sample_S37-D12-from-1771039001-D12-GW18-SVZ",
                "Sample_S38-D8-from-1771039002-D8-GW18-VZ"
            ],
            "order": 41,
            "uid": "d80646",
            "name": "2015_cluster_4_text"
        },
        {
            "data": [
                0.05768800398898099,
                0.057688003988981204,
                0.057688003988981135,
                0.0576880039889813,
                0.057688003988981315,
                0.05768800398898131,
                0.05768800398898129,
                0.05768800398898118,
                0.05768800398898136
            ],
            "order": 42,
            "uid": "405b51",
            "name": "2015_cluster_4_z"
        },
        {
            "data": [
                0.13860924457109766,
                0.13860924457109766,
                0.13860924457109786,
                0.13860924457109822,
                0.13860924457109802,
                0.1386092445710981,
                0.13860924457109794,
                0.13860924457109808,
                0.13860924457109802
            ],
            "order": 43,
            "uid": "d921a7",
            "name": "2015_cluster_4_component 1"
        },
        {
            "data": [
                0.003803878115803643
            ],
            "order": 44,
            "uid": "04a963",
            "name": "neural progenitor_cluster_4_component 2"
        },
        {
            "data": [
                "GW16_3"
            ],
            "order": 45,
            "uid": "897fbb",
            "name": "neural progenitor_cluster_4_text"
        },
        {
            "data": [
                0.05768800398898119
            ],
            "order": 46,
            "uid": "703c73",
            "name": "neural progenitor_cluster_4_z"
        },
        {
            "data": [
                0.13860924457109816
            ],
            "order": 47,
            "uid": "adeb56",
            "name": "neural progenitor_cluster_4_component 1"
        },
        {
            "data": [
                -0.007434310431065738,
                -0.007434310431065044,
                -0.0074343104310688685,
                -0.007434310431069264,
                -0.00743431043112294,
                -0.00743431043107912,
                -0.007434310431068946,
                -0.007434310431149774,
                -0.007434310431067341,
                -0.007434310431067165,
                -0.007434310431140349,
                -0.0074343104310792656,
                -0.007434310431070698,
                -0.007434310431076504,
                -0.007434310431069078,
                -0.007434310431069121,
                -0.007434310431069046,
                -0.0074343104311224446,
                -0.0074343104310688555,
                -0.00743431043106737,
                -0.0074343104311165465,
                -0.007434310431069546,
                -0.007434310431069251,
                -0.0074343104310651805,
                -0.007434310431066984,
                -0.007434310431097049,
                -0.00743431043114909,
                -0.007434310431146189,
                -0.0074343104310692545,
                -0.007434310431068183,
                -0.00743431043106914,
                -0.007434310431141471,
                -0.007434310431067847,
                -0.007434310431069329,
                -0.007434310431069006,
                -0.007434310431065673,
                -0.007434310431096768,
                -0.007434310431068929,
                -0.007434310431069148,
                -0.007434310431149364,
                -0.007434310431147105,
                -0.007434310431137473,
                -0.007434310431148936,
                -0.007434310431065581,
                -0.007434310431068302,
                -0.0074343104310693265,
                -0.007434310431069314,
                -0.0004881967732108111,
                -0.007434310431068964,
                -0.0074343104310678546,
                -0.00743431043106942,
                -0.007434310431069316,
                -0.0074343104311099285,
                -0.007434310431069431,
                -0.007434310431068018,
                -0.0074343104310693915,
                -0.00743431043111508,
                -0.0074343104311005515,
                -0.007434310431070346,
                -0.0074343104310692,
                -0.007434310431075626,
                -0.007434310431110898,
                -0.007434310431069188,
                -0.007434310431069101,
                -0.007434310431084806,
                -0.007434310431068696,
                -0.007434310431108959,
                -0.007434310431067095,
                -0.007434310431067427,
                -0.007434310431087644,
                -0.007434310431069169,
                -0.0074343104310691235,
                -0.007434310431088999,
                -0.00743431043106893,
                -0.007434310431137292,
                -0.0074343104311344185,
                -0.007434310431069766,
                -0.0074343104310696274,
                -0.00743431043106924,
                -0.007434310431090877,
                -0.011521226949101864,
                -0.007434310431069135,
                -0.007434310431111661,
                -0.00743431043106938,
                -0.007434310431069783,
                -0.007434310431073248
            ],
            "order": 48,
            "uid": "c8f83f",
            "name": "2015_cluster_5_component 2"
        },
        {
            "data": [
                "Sample_GW16-5-F1-A-12",
                "Sample_GW16-5-F1-A-3",
                "Sample_GW16-5-F1-B-5",
                "Sample_GW16-5-F1-B-8",
                "Sample_GW16-5-F1-C-11",
                "Sample_GW16-5-F1-D-12",
                "Sample_GW16-5-F1-D-2",
                "Sample_GW16-5-F1-D-4",
                "Sample_GW16-5-F1-D-7",
                "Sample_GW16-5-F1-D-8",
                "Sample_GW16-5-F1-E-11",
                "Sample_GW16-5-F1-E-12",
                "Sample_GW16-5-F1-E-2",
                "Sample_GW16-5-F1-E-4",
                "Sample_GW16-5-F1-F-4",
                "Sample_GW16-5-F1-F-5",
                "Sample_GW16-5-F1-F-8",
                "Sample_GW16-5-F1-G-1",
                "Sample_GW16-5-F1-G-9",
                "Sample_GW16-5-F1-H-12",
                "Sample_GW16-5-F1-H-6",
                "Sample_GW16-5-F2-G-3",
                "Sample_GW16-5-V1-A-1",
                "Sample_GW16-5-V1-A-5",
                "Sample_GW16-5-V1-A-7",
                "Sample_GW16-5-V1-B-1",
                "Sample_GW16-5-V1-B-4",
                "Sample_GW16-5-V1-B-5",
                "Sample_GW16-5-V1-B-9",
                "Sample_GW16-5-V1-C-2",
                "Sample_GW16-5-V1-C-6",
                "Sample_GW16-5-V1-C-8",
                "Sample_GW16-5-V1-D-1",
                "Sample_GW16-5-V1-D-12",
                "Sample_GW16-5-V1-E-5",
                "Sample_GW16-5-V1-F-10",
                "Sample_GW16-5-V1-F-11",
                "Sample_GW16-5-V1-F-4",
                "Sample_GW16-5-V1-G-12",
                "Sample_GW16-5-V1-G-4",
                "Sample_GW16-5-V1-H-1",
                "Sample_GW16-5-V1-H-10",
                "Sample_GW16-5-V1-H-2",
                "Sample_GW16-5-V1-H-8",
                "Sample_GW16-5-V2-F-8",
                "Sample_S37-C12-from-1771039001-C12-GW18-SVZ",
                "Sample_S37-C8-from-1771039001-C8-GW18-SVZ",
                "Sample_S38-A10-from-1771039002-A10-GW18-VZ",
                "Sample_S38-A11-from-1771039002-A11-GW18-VZ",
                "Sample_S38-A12-from-1771039002-A12-GW18-VZ",
                "Sample_S38-A2-from-1771039002-A2-GW18-VZ",
                "Sample_S38-A5-from-1771039002-A5-GW18-VZ",
                "Sample_S38-A7-from-1771039002-A7-GW18-VZ",
                "Sample_S38-A9-from-1771039002-A9-GW18-VZ",
                "Sample_S38-B1-from-1771039002-B1-GW18-VZ",
                "Sample_S38-B2-from-1771039002-B2-GW18-VZ",
                "Sample_S38-B4-from-1771039002-B4-GW18-VZ",
                "Sample_S38-B5-from-1771039002-B5-GW18-VZ",
                "Sample_S38-B7-from-1771039002-B7-GW18-VZ",
                "Sample_S38-B8-from-1771039002-B8-GW18-VZ",
                "Sample_S38-C12-from-1771039002-C12-GW18-VZ",
                "Sample_S38-C2-from-1771039002-C2-GW18-VZ",
                "Sample_S38-C3-from-1771039002-C3-GW18-VZ",
                "Sample_S38-C9-from-1771039002-C9-GW18-VZ",
                "Sample_S38-D4-from-1771039002-D4-GW18-VZ",
                "Sample_S38-D5-from-1771039002-D5-GW18-VZ",
                "Sample_S38-E11-from-1771039002-E11-GW18-VZ",
                "Sample_S38-E5-from-1771039002-E5-GW18-VZ",
                "Sample_S38-E6-from-1771039002-E6-GW18-VZ",
                "Sample_S38-E7-from-1771039002-E7-GW18-VZ",
                "Sample_S38-F1-from-1771039002-F1-GW18-VZ",
                "Sample_S38-F2-from-1771039002-F2-GW18-VZ",
                "Sample_S38-F5-from-1771039002-F5-GW18-VZ",
                "Sample_S38-F6-from-1771039002-F6-GW18-VZ",
                "Sample_S38-G12-from-1771039002-G12-GW18-VZ",
                "Sample_S38-G2-from-1771039002-G2-GW18-VZ",
                "Sample_S38-G4-from-1771039002-G4-GW18-VZ",
                "Sample_S38-G5-from-1771039002-G5-GW18-VZ",
                "Sample_S38-G6-from-1771039002-G6-GW18-VZ",
                "Sample_S38-G8-from-1771039002-G8-GW18-VZ",
                "Sample_S38-H12-from-1771039002-H12-GW18-VZ",
                "Sample_S38-H2-from-1771039002-H2-GW18-VZ",
                "Sample_S38-H3-from-1771039002-H3-GW18-VZ",
                "Sample_S38-H5-from-1771039002-H5-GW18-VZ",
                "Sample_S38-H6-from-1771039002-H6-GW18-VZ",
                "Sample_S38-H9-from-1771039002-H9-GW18-VZ"
            ],
            "order": 49,
            "uid": "44d4b5",
            "name": "2015_cluster_5_text"
        },
        {
            "data": [
                -0.06376835957058807,
                -0.06376835957058839,
                -0.0637683595705837,
                -0.06376835957058406,
                -0.06376835957072256,
                -0.06376835957061136,
                -0.06376835957058404,
                -0.06376835957079091,
                -0.06376835957058585,
                -0.06376835957058759,
                -0.06376835957076742,
                -0.06376835957061167,
                -0.06376835957058875,
                -0.06376835957060369,
                -0.0637683595705824,
                -0.06376835957058317,
                -0.06376835957058329,
                -0.0637683595707209,
                -0.06376835957058447,
                -0.06376835957058787,
                -0.06376835957071142,
                -0.0637683595705837,
                -0.0637683595705853,
                -0.06376835957058793,
                -0.06376835957058782,
                -0.06376835957065502,
                -0.0637683595707899,
                -0.06376835957078228,
                -0.0637683595705828,
                -0.0637683595705858,
                -0.06376835957058255,
                -0.0637683595707696,
                -0.06376835957058652,
                -0.06376835957058363,
                -0.06376835957058348,
                -0.06376835957058798,
                -0.06376835957065409,
                -0.06376835957058359,
                -0.06376835957058329,
                -0.06376835957079062,
                -0.0637683595707846,
                -0.06376835957075996,
                -0.06376835957078898,
                -0.0637683595705883,
                -0.06376835957058513,
                -0.06376835957058723,
                -0.06376835957058238,
                -0.029076626207249087,
                -0.06376835957058467,
                -0.06376835957058721,
                -0.06376835957058495,
                -0.06376835957058333,
                -0.06376835957068952,
                -0.06376835957058301,
                -0.06376835957058626,
                -0.06376835957058297,
                -0.06376835957070272,
                -0.06376835957066494,
                -0.06376835957058644,
                -0.06376835957058358,
                -0.06376835957060212,
                -0.06376835957069096,
                -0.06376835957058244,
                -0.06376835957058402,
                -0.06376835957062554,
                -0.06376835957058465,
                -0.06376835957068709,
                -0.06376835957058713,
                -0.06376835957058742,
                -0.06376835957063204,
                -0.06376835957058487,
                -0.0637683595705824,
                -0.06376835957064321,
                -0.06376835957058374,
                -0.06376835957075963,
                -0.0637683595707519,
                -0.06376835957058268,
                -0.0637683595705833,
                -0.06376835957058236,
                -0.063768359570641,
                -0.044629481357523815,
                -0.06376835957058342,
                -0.06376835957069368,
                -0.0637683595705821,
                -0.0637683595705826,
                -0.06376835957059612
            ],
            "order": 50,
            "uid": "145350",
            "name": "2015_cluster_5_z"
        },
        {
            "data": [
                -0.00837189795049854,
                -0.008371897950498551,
                -0.00837189795049962,
                -0.008371897950500218,
                -0.008371897950573267,
                -0.008371897950513437,
                -0.008371897950500033,
                -0.008371897950609783,
                -0.008371897950498575,
                -0.008371897950498045,
                -0.00837189795059728,
                -0.008371897950513607,
                -0.008371897950502322,
                -0.00837189795051006,
                -0.008371897950499788,
                -0.008371897950499965,
                -0.008371897950499951,
                -0.008371897950572917,
                -0.008371897950499788,
                -0.008371897950498093,
                -0.008371897950566101,
                -0.008371897950500128,
                -0.00837189795050033,
                -0.00837189795049847,
                -0.008371897950497973,
                -0.008371897950538052,
                -0.008371897950609566,
                -0.008371897950604995,
                -0.008371897950499689,
                -0.008371897950499231,
                -0.008371897950499549,
                -0.008371897950598194,
                -0.008371897950498974,
                -0.008371897950499883,
                -0.008371897950499972,
                -0.00837189795049825,
                -0.00837189795053762,
                -0.008371897950499618,
                -0.008371897950499916,
                -0.008371897950610172,
                -0.008371897950606774,
                -0.008371897950593258,
                -0.00837189795060892,
                -0.008371897950498442,
                -0.008371897950499486,
                -0.00837189795050078,
                -0.008371897950499835,
                -0.010780337559922316,
                -0.008371897950499592,
                -0.00837189795049848,
                -0.00837189795050014,
                -0.008371897950499498,
                -0.008371897950555731,
                -0.008371897950499665,
                -0.008371897950498829,
                -0.008371897950499876,
                -0.008371897950562718,
                -0.008371897950542963,
                -0.008371897950501419,
                -0.008371897950500067,
                -0.008371897950508637,
                -0.008371897950556649,
                -0.008371897950499784,
                -0.008371897950499438,
                -0.00837189795052139,
                -0.008371897950499379,
                -0.00837189795055425,
                -0.008371897950498076,
                -0.008371897950498142,
                -0.00837189795052514,
                -0.008371897950500062,
                -0.008371897950499666,
                -0.008371897950529124,
                -0.008371897950500043,
                -0.008371897950593067,
                -0.008371897950589027,
                -0.00837189795049987,
                -0.008371897950499588,
                -0.008371897950499526,
                -0.00837189795052963,
                -0.00034188171602511956,
                -0.008371897950499767,
                -0.008371897950557722,
                -0.008371897950499438,
                -0.008371897950499677,
                -0.00837189795050539
            ],
            "order": 51,
            "uid": "f1b8f3",
            "name": "2015_cluster_5_component 1"
        },
        {
            "data": [
                -0.007434310431095409,
                -0.007434310431067132,
                -0.007434310431122568
            ],
            "order": 52,
            "uid": "2c58c8",
            "name": "neural progenitor_cluster_5_component 2"
        },
        {
            "data": [
                "GW16_14",
                "GW16_22",
                "GW16_14"
            ],
            "order": 53,
            "uid": "507238",
            "name": "neural progenitor_cluster_5_text"
        },
        {
            "data": [
                -0.06376835957066072,
                -0.06376835957058721,
                -0.06376835957072516
            ],
            "order": 54,
            "uid": "8d9e88",
            "name": "neural progenitor_cluster_5_z"
        },
        {
            "data": [
                -0.008371897950538155,
                -0.008371897950498051,
                -0.008371897950573698
            ],
            "order": 55,
            "uid": "164012",
            "name": "neural progenitor_cluster_5_component 1"
        },
        {
            "data": [
                -0.007434310431075815
            ],
            "order": 56,
            "uid": "756f8e",
            "name": "radial glia_cluster_5_component 2"
        },
        {
            "data": [
                "GW16_16"
            ],
            "order": 57,
            "uid": "041a42",
            "name": "radial glia_cluster_5_text"
        },
        {
            "data": [
                -0.06376835957060169
            ],
            "order": 58,
            "uid": "b02ef1",
            "name": "radial glia_cluster_5_z"
        },
        {
            "data": [
                -0.0083718979505092
            ],
            "order": 59,
            "uid": "4a1cb1",
            "name": "radial glia_cluster_5_component 1"
        }
    ]
}