All Projects → epam → Indigo

epam / Indigo

Licence: other
Universal cheminformatics libraries, utilities and database search tools

Programming Languages

python
139335 projects - #7 most used programming language
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Indigo

Adminer Custom
Customizations for Adminer, the best database management tool written in PHP.
Stars: ✭ 99 (-32.19%)
Mutual labels:  oracle, postgresql, elasticsearch
Haproxy Configs
80+ HAProxy Configs for Hadoop, Big Data, NoSQL, Docker, Elasticsearch, SolrCloud, HBase, MySQL, PostgreSQL, Apache Drill, Hive, Presto, Impala, Hue, ZooKeeper, SSH, RabbitMQ, Redis, Riak, Cloudera, OpenTSDB, InfluxDB, Prometheus, Kibana, Graphite, Rancher etc.
Stars: ✭ 106 (-27.4%)
Mutual labels:  postgresql, elasticsearch
Spring Boot 2.x Examples
Spring Boot 2.x code examples
Stars: ✭ 104 (-28.77%)
Mutual labels:  postgresql, elasticsearch
Tunnel
PG数据同步工具(Java实现)
Stars: ✭ 122 (-16.44%)
Mutual labels:  postgresql, elasticsearch
Maha
A framework for rapid reporting API development; with out of the box support for high cardinality dimension lookups with druid.
Stars: ✭ 101 (-30.82%)
Mutual labels:  oracle, postgresql
Csv2db
The CSV to database command line loader
Stars: ✭ 102 (-30.14%)
Mutual labels:  oracle, postgresql
Opengl cmake skeleton
❤️ A ready to use cmake skeleton using GLFW, Glew and glm. 👍
Stars: ✭ 118 (-19.18%)
Mutual labels:  emscripten, webassembly
Chemfiles
Library for reading and writing chemistry files
Stars: ✭ 95 (-34.93%)
Mutual labels:  chemistry, cheminformatics
Directus
Open-Source Data Platform 🐰 — Directus wraps any SQL database with a real-time GraphQL+REST API and an intuitive app for non-technical users.
Stars: ✭ 13,190 (+8934.25%)
Mutual labels:  oracle, postgresql
Transformalize
Configurable Extract, Transform, and Load
Stars: ✭ 125 (-14.38%)
Mutual labels:  postgresql, elasticsearch
Kangaroo
SQL client and admin tool for popular databases
Stars: ✭ 127 (-13.01%)
Mutual labels:  oracle, postgresql
Cobol Js Emscripten
Stars: ✭ 101 (-30.82%)
Mutual labels:  emscripten, webassembly
Modern Wasm Starter
🛸 Run C++ code on web and create blazingly fast websites! A starter template to easily create WebAssembly packages using type-safe C++ bindings with automatic TypeScript declarations.
Stars: ✭ 140 (-4.11%)
Mutual labels:  emscripten, webassembly
Webassembly Raytracer
a performance comparison of a simple raytracer in JavaScript, asm.js, WebAssembly, and GLSL
Stars: ✭ 102 (-30.14%)
Mutual labels:  emscripten, webassembly
Stk
A Python library which allows construction and manipulation of complex molecules, as well as automatic molecular design and the creation of molecular databases.
Stars: ✭ 99 (-32.19%)
Mutual labels:  chemistry, cheminformatics
Servicestack.ormlite
Fast, Simple, Typed ORM for .NET
Stars: ✭ 1,532 (+949.32%)
Mutual labels:  oracle, postgresql
Assortedwidgets
OpenGL GUI library
Stars: ✭ 92 (-36.99%)
Mutual labels:  emscripten, webassembly
Dcmjs
dcmjs is a javascript cross-compile of dcmtk (dcmtk.org).
Stars: ✭ 92 (-36.99%)
Mutual labels:  emscripten, webassembly
Rust Wasm Webpack Tutorial
Finished example project for my guide on setting up a Webpack project with Rust and WebAssembly
Stars: ✭ 122 (-16.44%)
Mutual labels:  emscripten, webassembly
Django Zombodb
Easy Django integration with Elasticsearch through ZomboDB Postgres Extension
Stars: ✭ 136 (-6.85%)
Mutual labels:  postgresql, elasticsearch

Build Status License

EPAM Indigo projects

Copyright (c) 2009-2020 EPAM Systems, Inc.

Licensed under the Apache License version 2.0

Introduction

This repository includes:

  • Bingo: Chemistry search engine for Oracle, Microsoft SQL Server and PostgreSQL databases
  • Bingo-elastic: Set of APIs for efficient chemistry search in Elasticsearch
    • Java API. Full README is available here
    • Python API. Full README is available here
  • Indigo: Universal cheminformatics library with bindings to .NET, Java and Python, and the following tools:
    • Legio: GUI application for combinatorial chemistry
    • ChemDiff: Visual comparison of two SDF or SMILES files
    • indigo-depict: Molecule and reaction rendering utility
    • indigo-cano: Canonical SMILES generator
    • indigo-deco: R-Group deconvolution utility

Detailed documentation is available at http://lifescience.opensource.epam.com

Changelogs could be found here:

Download

https://lifescience.opensource.epam.com/download/indigo/index.html

Bindings in public repositories:

Source code organization

Main directory structure layout:

  • api: Indigo API sources
  • bingo: Bingo sources
  • build_scripts: CMake and python scripts for building all the sources
  • third_party: sources for third-party libraries
  • utils: utilities sources
  • common|graph|layout|molecule|reaction|render2d: indigo-core sources

Each project is placed in the corresponding directory with CMakeList.txt configuration file, that does not include other projects. In order to build the whole project with the correct references you need to use CMake configurations from the build_scripts directory.

Preinstalled build tools

To build the project from the sources, the following tools should be installed:

  • GIT 1.8.2+
  • GIT-LFS, so GIT can handle Large File Storage. Refer to https://github.com/git-lfs/git-lfs/wiki/Installation
  • C/C++ compiler with C++11 support
    • Linux: GCC version 4.9+ or Clang version 3.5+
    • Windows: Visual Studio 2013+ or MinGW with GCC version 4.9+
    • macOS: Clang 3.5+
  • CMake 3.0+
  • Python 2.7+
  • JDK 1.8+
  • .NET Standard 2.0
  • Maven 3.1+

Build instructions

All the CMake projects are placed in build_scripts directories. You can use them manually, or execute preconfigured scripts those do all the job.

Bingo build instructions

To generate project configuration, build the source code, and create the archives for installation, execute build_scripts/bingo-release.py:

python build_scripts/bingo-release.py --preset=linux32 --dbms=[postgres|oracle|sqlserver]

There are different cmake presets: linux32, linux64, win32, win64, mac10.7 (and also all later mac10.x versions)

There are different dbms targets:

  • postgres - PostgreSQL
  • oracle - Oracle
  • sqlserver - Microsoft SQL Server

Indigo build instructions

To generate project configuration, build the source code, and create the archives for installation, execute build_scripts/indigo-release-libs.py and build_scripts/indigo-release-utils.py:

Linux (GCC 4.9+ or Clang 3.5+)

APT-based requirements (Debian or Ubuntu):

sudo apt install cmake libfreetype6-dev libfontconfig1-dev

RPM-based requirements (RedHat, CentOS, Fedora): install Developer Toolset if your OS does not have GCC 4.9+ and then install dependencies:

sudo yum install cmake freetype-devel fontconfig-devel

Build libraries and utils:

python build_scripts/indigo-release-libs.py --preset=linux64
python build_scripts/indigo-release-utils.py --preset=linux64

Windows (Microsoft Visual Studio 2013+ or MinGW with GCC version 4.9+)

python build_scripts/indigo-release-libs.py --preset=win64-2013
python build_scripts/indigo-release-utils.py --preset=win64-2013

Mac OS (Clang 3.5+)

python build_scripts/indigo-release-libs.py --preset=mac10.14
python build_scripts/indigo-release-utils.py --preset=mac10.14

Other presets

There are different presets for the build scripts:

  • win32-2013, win64-2013: Visual Studio 2013
  • win32-2015, win64-2015: Visual Studio 2015
  • win32-2017, win64-2017: Visual Studio 2017
  • win32-2019, win64-2019: Visual Studio 2019
  • win32-mingw: MinGW
  • win64-mingw: MinGW-w64
  • linux32, linux64: GCC or Clang on Linux with C++11 support
  • linux32-universal, linux64-universal: GCC on Linux with statically linked libstdc++ for using on older Linux systems without C++11 support
  • mac10.7, mac10.8, mac10.9, mac10.10, mac10.11, mac10.12, mac10.12, mac10.13, mac10.14, mac10.15: target Mac OS X or macOS
  • mac-universal: targeting Mac OS X 10.7 as first version with C++11 support, should work on all Mac OS X 10.7+ systems

Wrappers build instructions

To generate Java, C#, or Python wrappers after building the binaries, execute:

python build_scripts/indigo-make-by-libs.py --type=[java|dotnet|python]

Available wrapper types: java, dotnet, python.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].