Skip to content

Commit

Permalink
adds anndata to recommended output formats (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
saupchurch authored Sep 21, 2020
1 parent 0e2c5dd commit 7d48e44
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions rnaget-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -727,8 +727,9 @@ paths:
description: |
The response is a list of the supported data formats as a JSON formatted object unless an alternative formatting supported by the server is requested. A data provider may use any internal storage format that they wish with no restrictions from this API. To support development of interoperable clients, it is recommended that data providers MUST support at least 1 of the following common output formats:
* Tab delimited text (.tsv)
* [Loom](https://linnarssonlab.org/loompy/format/index.html) (.loom)
* Tab delimited text (tsv)
* [Loom](https://linnarssonlab.org/loompy/format/index.html) (loom)
* [anndata](https://anndata.readthedocs.io/en/latest/) (anndata)
A Tab delimited file can have any number of comment lines beginning with `#` for storing metadata. There should be one header row following the comments. Feature (genes/transcripts) names and/or ID fields should be the first columns of the header row and have the `string` type. All following columns are for the samples and will have 32-bit `float` values in each row.
Expand All @@ -740,7 +741,9 @@ paths:
ENSG00000000003 TSPAN6 12.4 15.6
```
A Loom format file will have a 32-bit `float` matrix for the expression values with samples on the column axis and features on the row axis. Associated metadata can be stored as row and column attributes as described by loom specification.
A Loom format file will have a 32-bit `float` matrix for the expression values with samples on the column axis and features on the row axis. Associated metadata can be stored as row and column attributes as described by the loom specification.
An anndata format file will have a 32-bit `float` matrix for the expression values with samples on the column axis and features on the row axis. Associated metadata can be stored as row and column attributes as described by the anndata specification.
operationId: getExpressionFormats
responses:
"200":
Expand Down

0 comments on commit 7d48e44

Please sign in to comment.