Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: `/reg/g/psdm/etc/psconda.sh` will check if there is a -py2 flag. Yes will load Python2 environment, and otherwise it will load Python3 environment.

...

Code Block
languagebash
# PSOCAKE2 (Run 17 or older)
function psocake2 ()
{
    echo "Activating psocake py2"
    source /reg/g/psdm/etc/psconda.sh -py2
    source /reg/g/cfel/crystfel/crystfel-0.8.0/setup-sh # CrystFEL compatible version for psocake2
}

# PSOCAKE3 (Run 18 or newer)
function psocake3 ()
{
    echo "Activating psocake py3"
    source /reg/g/psdm/etc/psconda.sh -py3    
    source /reg/g/cfel/crystfel/crystfel-0.9.1/setup-sh # Crystfel compatible version for psocake3 
}

# CCP4 (version may change)
source /reg/common/package/ccp4-7.1/bin/ccp4.setup-sh
# XDS
export PATH=/reg/common/package/XDS-INTEL64_Linux_x86_64:$PATH

...