-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path03-QC.sh
54 lines (41 loc) · 975 Bytes
/
03-QC.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
#
#SBATCH --job-name=RNA_QC
#SBATCH --ntasks=1 # Number of cores/threads
#SBATCH --mem=2000 # Ram in Mb
#SBATCH --partition=production
#SBATCH --time=0-00:30:00
##########################################################################################
# Author: Ben Laufer
# Email: [email protected]
##########################################################################################
###################
# Run Information #
###################
start=`date +%s`
hostname
################
# Load Modules #
################
module load multiqc/1.9
###########
# MultiQC #
###########
call="multiqc
. \
--ignore alignLogs/ \
--ignore raw_sequences/ \
--config 03-multiqc_config.yaml"
echo $call
eval $call
########
# Copy #
########
mkdir GeneCounts
"$(find `.` -name '*ReadsPerGene.out.tab' -print0 | xargs -0 cp -t GeneCounts)"
###################
# Run Information #
###################
end=`date +%s`
runtime=$((end-start))
echo $runtime