Content:


Introduction

These are some notes for the SEA COAST 2020 workshop running at KMUTT (Bangkok) in January 2020. We will try and keep this up-to-date as we go along.

Remember, our software is usually run from the command-line (within a terminal). You should be reasonably familiar with some basic so-called shell commands - see e.g. also here and the handout you should have received.

To keep the different program and tutorial runs organised, it might be a good idea to run everything related to autoPROC in a separate directory, e.g. doing

mkdir ~/autoPROC
cd ~/autoPROC

(the first command creates a sub-directory in your home directory and the second command changes your current working directory to that newly created one).

You should have a copy of the 2-sided autoPROC reference card in your handouts with the most commonly used command-line arguments. More details can be found in the online manual. The crucial bits to remember are:

Setup

It is very important to have everything setup to run our programs. That involves typing:

module load ccp4
module load xds
module load gphl
 

Example data

There are some local example datasets available at

~/Desktop/data

that can be used as examples for the different data processing tutorials during the workshop. After opening a terminal (click on the icon called "Terminal" on your desktop) you should be able to run autoPROC on these using e.g.

mkdir ~/autoPROC
cd ~/autoPROC
process -I ~/Desktop/data/6OE7 -d 6OE7.01 | tee 6OE7.01.lis

Let's look at the various components here:

While the job is running (should take about 5-6 minutes), you can open the main output file (summary.html) via

firefox ~/autoPROC/6OE7.01/summary.html

or putting the full path to that file into the location bar of your browser (maybe in a separate tab to the one you are currently using):

/home/li-mth04/autoPROC/6OE7.01/summary.html

(remember you need to use the correct account name: ~ will not work here and li-mth04 is only correct for one of you).

We will use this 6OE7 example during the practical tutorial - and then go through the output to show you the type of information provided by autoPROC processing with XDS.


Working with own data

This would not be fundamentally different to using the example/tutorial data mentioned above. Some additional care should be taken though - especially in checking for any beamline-specific settings. If the beamline/instrument you used for collecting your data is not listed or the instrumentation/setup has changed without us being aware of it and data processing is not working, the most common reasons (apart from poor diffraction quality) are

Have a close look at the information provided by the summary.html file, especially any warning messages that might point to problems with diffraction, crystal, instrumentation or processing.

Some potentially necessary performance tuning

To avoid issues with performance or your machine becoming nuresponsive, it might be necessary to restrict the way we are running autoPROC a bit (in order to work with the 8Gb of memory the workshop machines have). This can/might include the following flags

process -nthreads 1 ...

and/or

process -nthreads 1 xds=/usr/local/xtal/bin/xds ...

and/or

process -nthreads 1 xds=/usr/local/xtal/bin/xds autoPROC_XdsKeyword_NUMBER_OF_IMAGES_IN_CACHE=0 ...

(where ... represents any other arguments like -I or -d).