This is the mzTab-M reference implementation and validation API service.
NOTE: This is an early development version, please use at your own risk and report issues to help improve it!
mzTab-M is intended as a reporting standard for quantitative results from metabolomics/lipodomics approaches. This format is further intended to provide local LIMS systems as well as MS metabolomics repositories a simple way to share and combine basic information.
mzTab-M has been developed with a view to support the following general tasks:
This API client was generated by the OpenAPI Generator project. By supplying the mzTab-M Specification, you can easily generate an API client, here for R:
docker run --rm \
-v $PWD:/local openapitools/openapi-generator-cli generate \
-i /local/mzTab_m_swagger.yml \
-g r \
-o /local/out/r
The output in out/r
builds the basis of this package. Please note that for this implementation, the generated code was heavily modified.
You’ll need the devtools
package in order to build the API. Make sure you have a proper CRAN repository from which you can download packages.
Install the devtools
package with the following command.
if(!require(devtools)) { install.packages("devtools") }