This is a new version of AbPyTools which has a frontend that can be easily used in addition to the existing Python3 API. Checkout the wiki for more information.
- Provide an easy to use GUI to work with heavy and light antibody chains
- Further optimise AbPyTools python code using C/C++ backend
- Integrate machine learning algorithms for data analysis
- AbPyTools-Qt aims to provide an interface that allows any user to easily manipulate antibody sequences. By splitting work into groups it is possible to analyse several sets of antibody chains (and in future whole Fabs) with ease.
- The background integrates the existing python code from AbPyTools and uses C++ libraries such as armadillo and mlpack to optimise and scale up matrix manipulation tasks (necessary for machine learning).
AbPyTools-Qt can (in relative terms..) be easily built with cmake, which creates all required files for make. First create a build directory:
cd /path/to/AbPyTools-Qt
mkdir build
cd build
AbPyTools-Qt requires Python >= 3.5. If you have several python versions in your system, it should automatically find the required version. If this fails, or for some reason you want to use a specific version (>=3.5) you can set the python executable path with cmake:
cmake -DPYTHON_EXECUTABLE=/path/to/python ..
For those building with anaconda this could look like:
cmake -DPYTHON_EXECUTABLE=$HOME/anaconda3/bin/python ..
To use the default python interpreter just run;
cmake -DPYTHON_EXECUTABLE=`which python` ..
Note that you need to use the same environment you used to install AbPyTools!
To use a specific location of boost use the -DBOOST_ROOT flag:
cmake -DBOOST_ROOT=/path/to/boost ..
And now build (and test) the source code:
make
make test
Building from source is something for the patient. If you never used hunter before, particularly with a project that requires Qt, downloading and building all the libraries can take a long time (and cause loss of hair..)!
- Compiling boost with a python distribution from anaconda can lead to pathing issues. This issue will come up when hunter is preparing the build files, and boost will fail to find the pyconfig.h. To solve this create a symlink in the include directory, like this:
cd /your/anaconda/path/
cd include/
ln -s python3.6m python3.6
- There can be issues with the font used by Qt, but these should be resolved during build time by the cmake script. The script will automatically add the path to the Qt font directory provided by the Qt hunter installation. If you wish to change disable this behaviour run cmake like this:
cmake -DADD_QT_QPA_FONTDIR=OFF ..
- release binaries (linux)
- integrate structural analysis
- improved UI
- memory management
- clustering
-
Backend:
- fixed PCA crash bug
- switched to column major matrix representation (same as armadillo)
-
Frontend:
- added plot range settings
- user defined behaviour of unnumbered sequences
-
Installation:
- requires armadillo>=7.3
-
Backend:
- fixed numpy deprecation
- handle unnumbered sequences
- handle server connection errors
-
Frontend:
- choose what to do with unnumbered sequences
- resubmit sequences to abnum that encountered an error due to server connection issues
-
Installation:
- find abpytools python installation with cmake
- build requires abpytools>=0.2.3
- hydrophobicity matrix PCA and PC plotting
- Simple GUI to call some basic functions found in AbPyTools
- Easy(ish) installation with:
- cmake
- make
- Tests:
- Continuous integration
- Code coverage