A set of command line executable and script importable tools to aid the Snapper Lab in managing and combining RedCap, FreezerPro, and other databases.
- Free software: MIT license
- Documentation: https://db-tools.readthedocs.io.
- TODO
Install and become familiar with conda/Anaconda.
Make sure that you have (at least) the following anaconda channels activated in your
.condarcfile (the order is kind of important too):anacondarconda-forgebiocondapandasdefaults
Fork the repository to your github by clicking the "Fork" button at the top right of this project's github page.
Clone your forked repo to your dev computer:
git clone git@github.com:YOUR_GITHUB_NAME/db_tools.git.Enter your freshly cloned Database Tools directory:
cd db_tools.Run
make helpto see most of themaketargets available.Running
make install. This creates and registers acondaenvironment named db_tools. Into that conda environment, it installs all of the needed libraries to run and develop Database Tools.To uninstall your dev environment just run
make uninstall-conda-env. All traces of the environment should be erased.Remember to activate the
condaenv before you try to use or interact with Database Tools or you will not have access to it. That is, unless you are running amaketarget. In most cases, the first step of themaketarget will be to activate the correct env for you.
This package was created with Cookiecutter and the xguse/cookiecutter-pypackage project template which is based on audreyr/cookiecutter-pypackage.