From cebdf5179e35e8dc3c707cb849b1d9b540cac316 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Wed, 8 Mar 2017 15:26:39 +0100 Subject: Add SLURM version of turbo-index script --- scripts/turbo-index-lsf | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 scripts/turbo-index-lsf (limited to 'scripts/turbo-index-lsf') diff --git a/scripts/turbo-index-lsf b/scripts/turbo-index-lsf new file mode 100644 index 00000000..00e4ec15 --- /dev/null +++ b/scripts/turbo-index-lsf @@ -0,0 +1,26 @@ +#!/bin/sh + +RUN=$1 +NOSAMPLE=`echo $RUN | sed -e 's/\-.*$//'` + +GEOM=my.geom # Name of your geometry file + +find /path/to/CXI/files/$RUN -name '*.cxi' > files-${RUN}.lst # Set location of files +list_events -i files-${RUN}.lst -g $GEOM -o events-${RUN}.lst +wc -l events-${RUN}.lst +rm -f split-events-${RUN}.lst files-${RUN}.lst +split -d -l 500 events-${RUN}.lst split-events-${RUN}.lst +rm -f events-${RUN}.lst + +for FILE in split-events-${RUN}.lst*; do + + STREAM=`echo $FILE | sed -e "s/split-events-${RUN}.lst/${RUN}.stream/"` + NAME=`echo $FILE | sed -e "s/split-events-${RUN}.lst/${NOSAMPLE}-/"` + echo "$NAME: $FILE ---> $STREAM" + + # Set indexing parameters here + bsub -q psanaq -o $NAME.log -J $NAME -n 12 -R "span[hosts=1]" \ + indexamajig \ + -i $FILE -o $STREAM -j 32 -g $GEOM --peaks=cxi + +done -- cgit v1.2.3