Architecture
BioNetDB has been implemented in a very modular way providing a three layer architecture, enabling different access levels and use cases of the system (see figure below):
Neo4j graph database in current implementation. Each BioNetDB installation comprises of one single Neo4j database. Indexes were designed to ensure an efficient response to the main expected queries.
A Java abstraction layer that deals with the peculiarities of the underlying database system and provides an API to access the data (DB Adaptor). Advanced users may directly use this API to avoid network access and web services overload thus improving the performance of their implementations. Moreover, any advanced user wanting to use any other database system will just have to implement this API plugin for the desired database system.
A set of REST Web Services API which provide an efficient high level interface to the data regardless of the programming language. Most frequent access will be through this top layer. Thus, the Web Services API can be queried either by provided clients in Python, Java and JavaScript, the Java CLI or by own user-developed methods that implement calls to the Web Services by building appropriate urls.

Last updated
Was this helpful?