Skip to content

Latest commit

 

History

History
52 lines (39 loc) · 967 Bytes

README.md

File metadata and controls

52 lines (39 loc) · 967 Bytes

libbionetio

This lib takes a large xml file of biological networks and decompose it using category(subsystem) information. The output can be either xml or sbml format. The c++ library was developed by Hsiang-Yun Wu.

Installing

Prerequisites

$ sudo apt install cmake
$ sudo apt install libtinyxml-dev
$ sudo apt install libsbml5-dev

Clone the libbionetio repository into a directory MLIBBIONETIO.

$ cd LIBBIONETIO
$ mkdir build
$ cd build
$ cmake ../
$ make

Using libbionetio

export xml format

$ ./bionetio -f xml -i "file_path/input_file_name.xml" -o "file_path/output_path_name"

or

export sbml format

$ ./bionetio -f sbml -i "file_path/input_file_name.xml" -o "file_path/output_path_name"