Skip to content
Snippets Groups Projects
Commit f238075d authored by kohleman's avatar kohleman
Browse files

changed 'Number of tiles' to a parameter

Background: with RTA 1.5 and the new kits there will be 120 tiles per lane

SVN: 13198
parent 9f6ded5d
No related branches found
No related tags found
No related merge requests found
......@@ -23,10 +23,9 @@ INTENSITY_FOLDER=$1
CYCLES=$2
NUMBER_OF_TILES=$3
NUMBER_OF_LANES=8
NUMBER_OF_TILES=120
#INT_NSE_DIR=$1/int_nse
PRG=`basename $0`
USAGE="Usage: ${PRG} <Path_to_Intensity_Folder> <Number_of_Cycles> \n\nEXAMPLE: ${PRG} /array0/Runs/090720_42HUDAAXX/Data/Intensities/ 38 120"
USAGE="Usage: ${PRG} <Path_to_Intensity_Folder> <Number_of_Cycles> <Number_of_Tiles>\n\nEXAMPLE: ${PRG} /array0/Runs/090720_42HUDAAXX/Data/Intensities/ 38 120"
if [ -z "${INTENSITY_FOLDER}" -o -z "${CYCLES}" -o -z "${NUMBER_OF_TILES}" ]
then
......@@ -48,4 +47,5 @@ for (( t = 1; t <= $NUMBER_OF_TILES; t++ )); do
done
# wait for the processes to end after calling 8 Lanes
wait $!
sleep 3
done
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment