MINERVA
Platform Documentation

Conversion#

Conversion API provides access to MINERVA’s ability convert between different systems biology network formats and to export of layouts to different graphical formats.

Conversion to systems biology formats#

List available formats#

curl -X GET https://minerva-dev.lcsb.uni.lu/minerva/api/convert/

Convert network from an input format to an output format#

curl -X POST --data-binary @cell_designer.xml \
-H "Content-Type: text/plain" https://minerva-dev.lcsb.uni.lu/minerva/api/convert/CellDesigner_SBML:SBML

Conversion to image#

List available formats#

curl -X GET https://minerva-dev.lcsb.uni.lu/minerva/api/convert/image/

Convert network from an input format to an output image#

curl -X POST --data-binary @cell_designer.xml -H "Content-Type: text/plain" \
https://minerva-dev.lcsb.uni.lu/minerva/api/convert/image/CellDesigner_SBML:svg

Merging of maps#

This API call allows to merge few files into one. Layout of merged map files will be a simple matrix.

curl -X POST --data-binary @cd-maps.zip  -H 'Content-Type: text/plain'  https://minerva-dev.lcsb.uni.lu/minerva/api/convert/merge/CellDesigner_SBML:CellDesigner_SBML

Back to top