pipeline_ehdn_outlier.sh 453 Bytes
Newer Older
1 2 3 4 5
#! /bin/sh

### ASDP PIPELINE ###
## Version: 0.0.1
## Licence: AGPLv3
6
## Author: Anne-Sophie Denommé-Pichon
7 8 9 10 11 12 13
## Description: script to launch the wrapper for qsubing outlier analysis by ExpansionHunter denovo script for STR detection

# Source configuration file
. "$(dirname "$0")/config.sh"

CASE="$1"

14
qsub -wd "$(dirname "$(readlink -f "$0")")" -pe smp 1 -q "$COMPUTE_QUEUE" -N "ehdn_outlier_$CASE" -sync y -v CASE="$CASE" wrapper_ehdn_outlier.sh
15