{"id":17163445,"url":"https://github.com/gf712/abpytools-qt","last_synced_at":"2026-04-10T22:48:23.292Z","repository":{"id":132115754,"uuid":"122079116","full_name":"gf712/AbPyTools-Qt","owner":"gf712","description":"Qt interface of AbPyTools","archived":false,"fork":false,"pushed_at":"2018-03-23T18:02:59.000Z","size":716,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-29T21:54:56.925Z","etag":null,"topics":["antibody-numbering","antibody-sequences","cpp11","data-analysis","python3","qt5"],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gf712.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-02-19T15:06:36.000Z","updated_at":"2023-02-18T10:21:57.000Z","dependencies_parsed_at":"2023-05-27T02:30:19.422Z","dependency_job_id":null,"html_url":"https://github.com/gf712/AbPyTools-Qt","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gf712%2FAbPyTools-Qt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gf712%2FAbPyTools-Qt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gf712%2FAbPyTools-Qt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gf712%2FAbPyTools-Qt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gf712","download_url":"https://codeload.github.com/gf712/AbPyTools-Qt/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245315290,"owners_count":20595216,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["antibody-numbering","antibody-sequences","cpp11","data-analysis","python3","qt5"],"created_at":"2024-10-14T22:49:03.774Z","updated_at":"2026-04-10T22:48:18.247Z","avatar_url":"https://github.com/gf712.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/gf712/AbPyTools-Qt.svg?branch=master)](https://travis-ci.org/gf712/AbPyTools-Qt)\n  \nAbPyTools-Qt  \n============  \n  \nThis is a new version of [AbPyTools](https://github.com/gf712/AbPyTools) which has a frontend that can be easily used in addition to the existing Python3 API. Checkout the [wiki](https://github.com/gf712/AbPyTools-Qt/wiki) for more information.  \n  \nProject Mission \u0026 Summary\n=========================\n- Provide an easy to use GUI to work with heavy and light antibody chains\n- Further optimise AbPyTools python code using C/C++ backend\n- Integrate machine learning algorithms for data analysis\n\nHow does it work?\n=================\n- 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.\n- The background integrates the existing python code from [AbPyTools](https://github.com/gf712/AbPyTools) and uses C++ libraries such as [armadillo](http://arma.sourceforge.net/) and [mlpack](https://www.mlpack.org/) to optimise and scale up matrix manipulation tasks (necessary for machine learning).\n\nBuild from source\n=================\nAbPyTools-Qt can (in relative terms..) be easily built with cmake, which creates all required files for make.\nFirst create a build directory:\n```\ncd /path/to/AbPyTools-Qt\nmkdir build\ncd build\n```\n\nAbPyTools-Qt requires Python \u003e= 3.5. If you have several python versions in your system, it should automatically find the required version.\nIf this fails, or for some reason you want to use a specific version (\u003e=3.5) you can set the python executable path with cmake:\n```\ncmake -DPYTHON_EXECUTABLE=/path/to/python ..\n```\nFor those building with anaconda this could look like:\n```\ncmake -DPYTHON_EXECUTABLE=$HOME/anaconda3/bin/python ..\n```\nTo use the default python interpreter just run;\n\n```\ncmake -DPYTHON_EXECUTABLE=`which python` ..\n```\n\nNote that you need to use the same environment you used to install [AbPyTools](https://github.com/gf712/AbPyTools)!\n\nTo use a specific location of boost use the -DBOOST_ROOT flag:\n```\ncmake -DBOOST_ROOT=/path/to/boost ..\n```\n\nAnd now build (and test) the source code:\n\n```\nmake\nmake test\n```\n\nBuilding from source is something for the patient. If you never used hunter before, particularly with a project that\nrequires Qt, downloading and building all the libraries can take a long time (and cause loss of hair..)!\n\nKnown issues\n============\n- Compiling boost with a python distribution from anaconda can lead to pathing issues. This issue will come up when\nhunter is preparing the build files, and boost will fail to find the pyconfig.h. To solve this create a symlink\nin the include directory, like this:\n```\ncd /your/anaconda/path/\ncd include/\nln -s python3.6m python3.6\n```\n\n- There can be issues with the font used by Qt, but these should be resolved during build time by the cmake script.\nThe script will automatically add the path to the Qt font directory provided by the Qt hunter installation. If you wish\nto change disable this behaviour run cmake like this:\n\n`cmake -DADD_QT_QPA_FONTDIR=OFF ..`\n\nChangelog\n=========\n### v0.3 (TBA):\n- release binaries (linux)\n\n### v0.2 (TBA):\n- integrate structural analysis\n- improved UI\n- memory management\n- clustering\n\n### v0.1.2 (23/03/2018):\n- Backend:\n  - fixed PCA crash bug\n  - switched to column major matrix representation (same as armadillo)\n\n- Frontend:\n  - added plot range settings\n  - user defined behaviour of unnumbered sequences\n\n- Installation:\n  - requires armadillo\u003e=7.3\n\n### v0.1.1 (16/03/2018):\n- Backend:\n  - fixed numpy deprecation\n  - handle unnumbered sequences\n  - handle server connection errors\n\n- Frontend:\n  - choose what to do with unnumbered sequences\n  - resubmit sequences to abnum that encountered an error due to server connection issues\n\n- Installation:\n  - find abpytools python installation with cmake\n  - build requires abpytools\u003e=0.2.3\n\n### v0.1 (08/03/2018):\n- hydrophobicity matrix PCA and PC plotting\n- Simple GUI to call some basic functions found in AbPyTools\n- Easy(ish) installation with:\n  - cmake\n  - make\n- Tests:\n  - Continuous integration   \n  - Code coverage\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgf712%2Fabpytools-qt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgf712%2Fabpytools-qt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgf712%2Fabpytools-qt/lists"}