## Description: script to launch the pipeline for getting STR detection results. Receive multiple samples: one sample per line# $1 : first argument in the command line : a list containing one sample per line, for exemple samples.listSAMPLES="$1"# Check if sample is specifiedif[-z"$SAMPLES"]thenecho"List of samples is not specified"echo"$(date +"%F_%H-%M-%S"): END"exit 1fi# Source configuration file."$(dirname"$0")/config.sh"# Create the results output directorymkdir-p"$RESULTS_OUTPUTDIR"# Launch getResults.py"$(dirname"$0")/getResults.py""$SAMPLES"# Launch launch_str_outliers.sh"$(dirname"$0")/launch_str_outliers.sh""$SAMPLES"