Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions openapi/v1/integrationCurator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4504,6 +4504,14 @@ paths:
* `cluster=1 || cluster=2` or `cluster=1 OR cluster=2`: select all objects where cluster 1 or 2.
* `percentMito>0.2 && nCounts>=1000`: select all objects where percentMito is greater than 0.2 and nCounts is more or equal to 1000.
* `batch=BatchA && (cluster=3 || -3 < percentMito < 8)`: combine logical operators in one query.

Embedding constraints:

* UMAP
- Allowed number of dimensions per cell: **0** (absent) or **≥ 2**.
- If exactly **1** UMAP dimension is provided, the request is invalid.
- At most **3** UMAP dimensions are stored; if more than 3 are provided, only the first 3 are kept and the rest are ignored.

in: query
name: cellQuery
schema:
Expand Down
1 change: 1 addition & 0 deletions openapi/v1/integrationUser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2951,6 +2951,7 @@ paths:
* `cluster=1 || cluster=2` or `cluster=1 OR cluster=2`: select all objects where cluster 1 or 2.
* `percentMito>0.2 && nCounts>=1000`: select all objects where percentMito is greater than 0.2 and nCounts is more or equal to 1000.
* `batch=BatchA && (cluster=3 || -3 < percentMito < 8)`: combine logical operators in one query.

in: query
name: cellQuery
schema:
Expand Down
32 changes: 32 additions & 0 deletions openapi/v1/job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,22 @@ paths:
"groupAccession": "GSF1234567"
}
```

Embedding constraints:

* UMAP
- Allowed number of dimensions per cell: **0** (absent) or **≥ 2**.
- If exactly **1** UMAP dimension is provided, the request is invalid.
- At most **3** UMAP dimensions are stored; if more than 3 are provided, only the first 3 are kept and the rest are ignored.

* PCA
- Allowed number of components per cell: **0** (absent) or **≥ 2**.
- If exactly **1** PCA component is provided, the request is invalid.
- At most **100** PCA components are stored; components beyond 100 are ignored.

Notes:
- “Dimensions/components” refer to the length of the embedding vector for each cell.
- Ignoring excess dimensions/components does not cause an error; validation errors occur only when the number is exactly **1**.
operationId: startImportCells
parameters:
- description: "Load duplicate data: the data from the link(s) has already been\
Expand Down Expand Up @@ -351,6 +367,22 @@ paths:
"groupAccession": "GSF1234567"
}
```

Embedding constraints:

* UMAP
- Allowed number of dimensions per cell: **0** (absent) or **≥ 2**.
- If exactly **1** UMAP dimension is provided, the request is invalid.
- At most **3** UMAP dimensions are stored; if more than 3 are provided, only the first 3 are kept and the rest are ignored.

* PCA
- Allowed number of components per cell: **0** (absent) or **≥ 2**.
- If exactly **1** PCA component is provided, the request is invalid.
- At most **100** PCA components are stored; components beyond 100 are ignored.

Notes:
- “Dimensions/components” refer to the length of the embedding vector for each cell.
- Ignoring excess dimensions/components does not cause an error; validation errors occur only when the number is exactly **1**.
operationId: startImportCellsMultipart
requestBody:
content:
Expand Down
Loading