-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlsf.template
28 lines (27 loc) · 944 Bytes
/
lsf.template
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
#!/usr/bin/env bash
#
# Copyright (c) 2016 10x Genomics, Inc. All rights reserved.
#
# =============================================================================
# Setup Instructions
# =============================================================================
#
# 1. Add any other necessary LSF arguments such as queue (-q) or account (-P).
# If your system requires a walltime (-W), 24 hours (24:00) is sufficient.
# We recommend you do not remove any arguments below or Martian may not run
# properly.
#
# 2. Change filename of lsf.template.example to lsf.template.
#
# =============================================================================
# Template
# =============================================================================
#
#BSUB -J __MRO_JOB_NAME__
#BSUB -n __MRO_THREADS__
#BSUB -o __MRO_STDOUT__
#BSUB -e __MRO_STDERR__
#BSUB -R "rusage[mem=__MRO_MEM_GB__]"
#BSUB -R span[hosts=1]
#BSUB -q rna
__MRO_CMD__