-
Notifications
You must be signed in to change notification settings - Fork 1
/
slurm_circtools_detect_paired.sh
executable file
·30 lines (23 loc) · 1.24 KB
/
slurm_circtools_detect_paired.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash
# @Author: Tobias Jakobi <tjakobi>
# @Email: tobias.jakobi@med.uni-heidelberg.de
# @Project: University Hospital Heidelberg, Section of Bioinformatics and Systems Cardiology
# @License: CC BY-NC-SA
#SBATCH -n 1
#SBATCH -N 1
#SBATCH -c 40
#SBATCH --mem=250G
#SBATCH -J "circtools detect"
#SBATCH --mail-type=END,FAIL,TIME_LIMIT_80
#SBATCH --mail-user=tobias.jakobi@med.uni-heidelberg.de
#SBATCH -p general
# check if we have 3 arguments
if [ ! $# == 8 ]; then
echo "Usage: $0 [Sample sheet file] [GTF file] [Genome FASTA file] [Mate 1 file] [Mate 2 file] [BAM list file] [Repeats] [target dir e.g. project/]"
exit
fi
#DCC @$1 -D -A $3 -Pi -mt1 @$4 -mt2 @$5 -B @$6 -R $7 -M -Nr 2 2 -fg -G -k -O $8 -t ${8}_DCC_temp/ -F -L 20 -T 40
#DCC @$1 -D -an $2 -A $3 -Pi -mt1 @$4 -mt2 @$5 -B @$6 -R $7 -M -Nr 2 2 -fg -G -k -O $8 -t ${8}_DCC_temp/ -F -L 20 -T 40
DCC @$1 -ss -D -an $2 -A $3 -Pi -mt1 @$4 -mt2 @$5 -B @$6 -fg -M -Nr 2 2 -G -k -O $8 -F -t ${8}_DCC_temp/ -L 20 -T 40
#DCC @$1 -D -an $2 -A $3 -Pi -mt1 @$4 -mt2 @$5 -B @$6 -M -Nr 2 2 -fg -G -k -O $8 -F -t ${8}_DCC_temp/ -L 20 -T 40
#echo /home/tjakobi/repos/dieterichlab/DCC/DCC/main.py @$1 -D -an $2 -A $3 -Pi -mt1 @$4 -mt2 @$5 -B @$6 -fg -M -Nr 2 2 -G -k -O $8 -F -t ${8}_DCC_temp/ -L 20 -T 40