-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.qsub
47 lines (32 loc) · 1.04 KB
/
example.qsub
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash -l
# Lines beginning with #$ are passed to qsub as options.
# Project, which may have dedicated resources
#$ -P mylab
# Name of job
#$ -N vntrseek_example
# File to receive standard output
#$ -o test.out
# File to receive standard error
#$ -e test.err
# Email for notifying of events
#$ -M [email protected]
# Events to notify for; (b)egin, (e)nd, (a)bort
#$ -m bea
# Request particular resources
# project dedicated resources
#$ -l buyin
# 30 hours (h)ard limit (r)un (t)ime
#$ -l h_rt=30:00:00
# Multiprocessing environment, 8 cores
#$ -pe omp 8
# load tools into envionment, you'll likely need to change this
module load samtools perl sqlite3
# change this
install=/path/to/vntrseek/install/folder
reference=/path/toi/reference/prefix
# minimum run options
$install/vntrseek.pl 100 --RUN_NAME example_run
$install/vntrseek.pl 0 20 --RUN_NAME example_run --INPUT_DIR example_data/ --REFERENCE $reference
# or if you'd like to use a config
# $install/vntrseek.pl 100 --CONFIG example.cnf
# $install/vntrseek.pl 0 20 --CONFIG example.cnf