Skip to content

MooersLab/jupyterlabcctbxsnips

Repository files navigation

jupyterlabcctbxsnips: Templates for writing and running cctbx in Jupyter notebooks

License: MIT Version DOI

The cctbx ( Computational Crystallography Toolbox ) is a core package for computational crystallography that has been developed over the past two decades that the Lawrence-Berkley National Laboratory. It contains the open-source components of the Phenix project. It has C++ routines wrapped in Python to ease using it to develop new software tools for analyzing atomic coordinates and diffraction data. Because it can be run with Python, it can also be run from Jupyter notebooks, the de facto computing platform for data science. To ease the running of cctbx in Jupyter notebooks, we developed the jupyterlabcctbxsnips of code templates. Access to the code templates or snippets requires the editing of the Jupyter notebook from inside of JupyterLab , a browser-based IDE for Jupyter notebooks. This JupyterLab enables the writing or editing of a document in a pane next to the Jupyter notebook. This is useful for writing up documentation, protocols, tutorials, blog posts, and manuscripts next to the notebook that is being described. The document can be plain text, HTML, markdown, or LaTeX.

This readme file serves this GitHub site. There are three related sites: jupyterlabpymolpysnips, and jupyterlabpymolpysnipsplus. As you might have deduced, PyMOL and cctbx can be run together in the same Jupyter notebook. This is best done when they share the same Python interpreter so they can be called from the same Jupyter environment. See the associated GitHub Page for more information about running these two programs together and for list the snippet names and descriptions by category. The README.md contains the installation instructions for only the jupyterlabcctbxsnips and jupyterlabcctbxsnipsplus snippet libraries. These libraries were designed to be used with the jupyter-multimenu-snippets package for JupyterLab.

Table of Contents

Motivations for this project

The figure below shows part of the cascading menus for the cctbx library after it has been installed successfully. The submenus correspond to the names of subfolders in the cctbx folder in the multimenus_snippets folder, which you create inside of the Jupyter folder in your local library folder (i.e., ~/Library on the Mac). Each ultimate menu item is a Python snippet file. The selection of a snippet file by clicking on it with the left-mouse button inserts its content into a new cell below the current cell. The millerArrayFromMtz.py snippet at the bottom of the pulldown menu was selected and inserted in the figure below. Commented lines have text that describes what this snippet does. The code in this cell would be executed by entering Shift-Enter.

HTML5 Icon

The mtzObjectSummary.py snippet prints a summary of an mtz file. The data in this mtz has columns of I(+) and I(-). We use these data to make a I(+) vs I(-) scatter plot below. The mtz file contains data for SirA-like protein (DSY4693) from Desultobacterium hafniense, Northeast Structural Genomics Consortium Target DhR2A.

HTML5 Icon

The I(+) vs I(-) plot below was made after reading the X-ray data into a cctbx Miller array, a data structure designed for X-ray data. The I(+) and I(-) were eventually read into separate lists. We plot the two lists against each other in a scatter plot. This plot was adapted from an example in the ReciprocalSpaceship project from the Hekstra Lab. This new project takes a more Pythonic approach. For example, it uses the Pandas package to manage diffraction data whereas cctbx uses a special C++ data structure for diffraction data. A recent preprint about the ReciprocalSpaceship project can be found here.

HTML5 Icon

There are two advanced Matplotlib features in this plot. First, the imported MultipleLocator function enforced even distribution of the tick labels. Second, the imported FunctionFormatter added the commas to the thousandth place in the tick mark labels.

Return to Table of Contents

Technology Stack

Technology Version Description
CCTBX 2.4.0 Molecular graphics program
Python 3.7-3.9 Programming language
JupyterLab >=2.0 A IDE for editing Jupyter notebooks.
jupyterlab-snippets 0.4.0 Required extension
or this alternate pair of programs
JupyterLab 2.2.0 An IDE for editing Jupyter notebooks. Version 3.0 does not work with jupyterlab-snippets-multimenus
jupyterlab-snippets-multimenus 0.1.2 Required extension
Node.js >=10.0.0 Required by Jupyter and many JupyterLab extensions.
git 2.25.1 Eases the downloading and updating of the libraries.

Python and git are probably already installed. If not, they are best installed with a software package manager like Anaconda, homebrew (Linux, Mac), macports (Mac), fink (Mac), apt-get on Ubuntu, yum on Centos, cygwin in Windows, and so on.

cctbx is most easily installed into its own environment by using Anaconda with the command conda create -n my_env -c conda-forge cctbx-base python=3.8. This command will also install Python 3.8. cctbx also works with Python3.7 and Python 3.9, although PyMOL does not work with Python 3.9 yet. Note that the Anaconda Navigator does not support creation of new envs with Python 3.9 as of July 17, 2021, so you have to do so by the command line.

Sometimes, the planets are in alignment, and you can install cctbx-base and pymol-bundle in the same environment. This worked for me in January 2021, but by July 2021: there were too many dependency conflicts. In the latter case, install PyMOL in a separate conda env, make a Juptyer kernel for that env, and just switch kernels to use cells with PyMOL and other cells with cctbx in the same Jupyter notebook.

To install cctbx with PyMOL, see the protocols on the associatedGitHub Page.

JupyterLab needs to be version 2.2.0 for jupyterlab-snippets-multimenus to run. The current version of JupyterLab is 3.0. Note that JupyterLab>=3,0 no longer needs an external installation of Node.js .

Node.js can be downloaded from the developer's site, or it can be installed with a package manager. It needs to be more recent than version 10.0.0. On some operating systems, npm is not installed automatically with Node.js and must be installed separately.

Some of the snippets are limited to Python3 code. If you use a version of cctbx that relies on Python2, you can rewrite the snippet's code to be Python2 compliant. This often merely involves replacing the print() functions in Python3 with print statements in Python2. The python script 3to2 automates this process. Multiple versions of cctbx can operate on a computer if they are in separate environments, so you do not have to delete the Python2 version of cctbx.

Return to Table of Contents

Installation the snippet library for JupyterLab 2.0 with the jupyterlab-snippets-multimenus extension

Assuming that git, JupyterLab, jupyterlab-snippets-multimenus, and cctbx are already installed, run the following commands one line at a time. On the Mac, git is installed with the Command Line Tools. If you enter git --version in the terminal and do not get an error message, you have git installed. If you enter ls /Library/Developer/CommandLineTools and see SDKs as a subfolder, you have the command line tools installed.

Next, find the path to where the snippet library will be installed. Enter the following command to find the paths to the Jupyter libraries. There may be more than one path if you have several installations of Jupyter.

jupyter --path

Move to the first directory under Data. This will be ~/.local/share/jupyter on Linux and ~/Library/Jupyter on Mac OS.

cd ~/.local/share/jupyter 

Make the directory where the libraries will be stored and move to this directory.

mkdir multimenus_snippets
cd multimenus_snippets

Use git to clone the repos into the new folders respectively.

git clone https://github.com/MooersLab/jupyterlabcctbxsnips.git cctbx
git clone https://github.com/MooersLab/jupyterlabcctbxsnipsplus.git cctbx+

The snippets in the cctbxsnips+ library have a second copy of the code in a comment with the tab stops. Tab stops are marked as follows ${1:default value}. Tab stops are sites of parameter values that may need to be edited to customize the snippet. In most text editors, you hit the tab button to advance to the next tab stop. JupyterLab does not yet support tab stops.

Use the cctbx+ library when you need guidance in editing a snippet. The content of the active part of the snippet is the same in both libraries. The commented code in the cctbx+ snip library may annoy experienced users who do not need editing help and do not want the extra comments in their code.

As an alternative to using git, you can download the repository as a zip file by clicking on the green code button above. However, git eases the updating of the libraries at a later time. You would navigate to the multimenus_snippets/cctbx folder and then enter git pull to update the library. This is far less painful than downloading the library via as a zip file. Repeat for cctbx+, if needed. Important! Navigate back to your home directory before running JupyterLab (e.g. cd or cd ~/).

Now, fire up JupyterLab (e.g. enter jupyter lab) and use the snippets to build new cctbx scripts.

jupyter lab

Return to Table of Contents

Using the snippet library with JupyterLab >= 3.0

JupyterLab can also use the jupyterlab-snippets extension to make the snippets available via a snippets pull-down menu rather than separate pulldown menus for each snippet library as provided by jupyterlab-snippets-multimenus. This package can be installed by conda, pip, or by using the extension manager in JupyterLab.

Assuming that JupyterLab, jupyterlab-snippets, and PyMOL are already installed, run the following commands one line at a time:

jupyter --path
cd ~/.local/share/jupyter # change as per output from prior line. Use cd ~/Library/Jupyter on the Mac.
mkdir snippets
cd snippets
git clone https://github.com/MooersLab/jupyterlabcctbxsnips.git pymol
git clone https://github.com/MooersLab/jupyterlabcctbxsnipsplus.git pymol+

When you open JupyterLab, you will find a snippet pull-down menu on the JupyterLab menu-bar. There will be a cctbx sub-menu and a cctbx+ sub-menu under this pull-down menu.

JupyterLab needs to be version >=2.2.0 for jupyterlab-snippets to run. The current version of JupyterLab is >3.0.

Node.js can be downloaded from the developer's site or installed with a package manager. It needs to be more recent than version 10.0.0

Shortly, I will make available a new variant of the library that can be run in JupyterLab >=3.0 using an additional snippet manager.

Configuration Setup

The snippet library is independent of cctbx. No modification of cctbx is required.

Return to Table of Contents

Usage

The animation at the top of the page conveys the essential knowledge for usage.

Return to Table of Contents

Testing

Quick check of the installation

To verify that cctbx can be called from a Jupyter notebook. Launch JupyterLab and open a new notebook. Select the appropriate kernel. Enter in the first cell from iotbx.map_model_manager import map_model_manager and enter Shift-Return. No error message should appear.

You can also check from the terminal after activating your cctbx environment:

conda activate cctbx38
python -c 'from iotbx.map_model_manager import map_model_manager'

If all goes well, the terminal will hang for about five seconds and then return nothing. Otherwise, error messages will be printed in the terminal window.

More extensive tests

The installation of cctbx in a conda environment can be tested by running the following bash script if installed with Python3.7 (use the next code block below if you installed cctbx-base with Python 3.8).

Before doing the above, you should install pytest so that you can enable the running of additional tests:

libtbx.python -m pip install pytest

Copy the code below to a plain text file called test.sh with a text editor. Make the script executable: chmod +x test.sh. Run the script as ./test.sh. The tests will take about 30-60 minutes to run. Some tests may fail but most should pass.

#! /bin/sh
set noglob
set verbose
libtbx.python $CONDA_PREFIX/lib/python3.7/site-packages/libtbx/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.7/site-packages/iotbx/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.7/site-packages/boost_adptbx/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.7/site-packages/fable/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.7/site-packages/scitbx/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.7/site-packages/cctbx/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.7/site-packages/cctbx/run_examples.py
libtbx.python $CONDA_PREFIX/lib/python3.7/site-packages/smtbx/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.7/site-packages/cflib_adaptbx/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.7/site-packages/reduce/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.7/site-packages/mmtbx/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.7/site-packages/cctbx_website/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.7/site-packages/gltbx/run_tests.py

If cctbx was installed with Python3.8, use the following bash script.

#! /bin/sh
set noglob
set verbose
libtbx.python $CONDA_PREFIX/lib/python3.8/site-packages/libtbx/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.8/site-packages/iotbx/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.8/site-packages/boost_adptbx/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.8/site-packages/fable/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.8/site-packages/scitbx/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.8/site-packages/cctbx/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.8/site-packages/cctbx/run_examples.py
libtbx.python $CONDA_PREFIX/lib/python3.8/site-packages/smtbx/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.8/site-packages/cflib_adaptbx/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.8/site-packages/reduce/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.8/site-packages/mmtbx/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.8/site-packages/cctbx_website/run_tests.py
libtbx.python $CONDA_PREFIX/lib/python3.8/site-packages/gltbx/run_tests.py

Return to Table of Contents

Requests for new snippets

Please use the Issues tab above to request support for additional snippets or to ask questions. Alternatively, you can send e-mail to me.

Questions about cctbx should be searched in the cctbx webpages and in the archive of the cctbxbb. If no answer is found, then direct to the question to cctbxbb Mailing List. Hint: numerous examples are buried in the source code in the "examples" folders.

Return to Table of Contents

Contributing

Snippets of new code are most welcome. Send to e-mail.

  • Submit the Python code in a plain text file.
  • Write the filenames and function names in camelCase.
  • Describe what the code does in one to several sentences, an example of usage, and any citations or links to further information.

Return to Table of Contents

Bug reports

Use the Issues tab above to report bugs or send e-mail to me.

Return to Table of Contents

Roadmap

I plan to expand the library to fully cover the available functions and methods.

Return to Table of Contents

License

We use the permissive MIT license. The license information for this project is found in the License.txt file above.

Return to Table of Contents

Contact Information

I can be reached via the Issue tab above or via e-mail: blaine-mooers at ouhsc.edu.

Return to Table of Contents

Citation

If you use this library to prepare a publication, please cite the cctbx project and this site. See the Citation.md file above.

Return to Table of Contents

Update History

Version Changes Date
Version 0.3 Fixed typos in README.md 2024 April 5

Sources of funding

  • NIH: R01 CA242845
  • NIH: R01 AI088011
  • NIH: P30 CA225520 (PI: R. Mannel)
  • NIH P20GM103640 and P30GM145423 (PI: A. West)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages