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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161 | #!/usr/bin/env bash
#### Set up
SCRIPTNAME=`basename $0`
function error()
{
local PARENT_LINENO="$1"
local MESSAGE="$2"
local CODE="${3:-1}"
if [[ -n "$MESSAGE" ]] ; then
echo "$SCRIPTNAME: Error on or near line ${PARENT_LINENO}: ${MESSAGE}; exiting with status ${CODE}"
else
echo "$SCRIPTNAME: Error on or near line ${PARENT_LINENO}; exiting with status ${CODE}"
fi
exit "${CODE}"
}
trap 'error ${LINENO}' ERR
# setting exit on error and inheriting of ERR trap
set -eE
die()
{
if [ -n "$@" ]; then
echo "$@" >&2
else
echo "FAILED" >&2
fi
exit 1
}
#### Arguments
GSIZE="3e9"
QVALUE="0.01"
NPROC="2"
KEEP_TEMP=""
# help message
help()
{
echo "usage: $SCRIPTNAME <options> <bam-file>+"
echo ""
echo "mandatory arguments:"
echo "-n NAME name of the experiment; mandatory"
echo "-g/--gtf GTF annotaion ; mandatory"
echo ""
echo "optional arguments:"
echo "-p NPROC number of processes to do in parallel; default = $NPROC"
echo "--keep-temp keep temporary files"
echo "--genome GSIZE approximate size of the genome (for MACS); default = $GSIZE"
echo "--qvalue QVALUE q-value cutoff (for MACS); default = $QVALUE"
echo "-h|--help shows this message and exit"
}
if [ $# -eq 0 ]; then
help
exit
fi
while true; do
case "$1" in
-n|--name) NAME="$2"; shift 2;;
-g|--gtf) GTF="$2"; shift 2;;
--genome) GSIZE="$2"; shift 2;;
--qvalue) QVALUE="$2"; shift 2;;
-p) NPROC="$2"; shift 2;;
--keep-temp) KEEP_TEMP="--keep-temp"; shift 1;;
-h|--help) help; exit 0;;
--) shift 1; break;;
-*) die "unrecognized option: $1";;
*) break;;
esac
done
if [ -z "$NAME" ]; then
die "NAME is not specified (try -h for details)"
fi
if [ -z "$GTF" ]; then
die "GTF is not specified (try -h for details)"
fi
BAMS=("$@")
if [ "${#BAMS}" == 0 ]; then
die "no bam files specified (try -h for details)"
fi
#### Run
echo "Calling peaks..."
macs2-stranded $KEEP_TEMP -n "${NAME}" -g "${GSIZE}" -q "${QVALUE}" "${BAMS[@]}" | sed "s/^/ /"
peaks="${NAME}"_peaks.narrowPeak
echo "Extending annotaion..."
fixed_gtf="${NAME}.`basename "${GTF}" .gtf`.fixed.gtf"
gtf-extend -g "${GTF}" -p "${peaks}" -o "${fixed_gtf}" | sed "s/^/ /"
export htseq_dir="${NAME}.htseq"
mkdir -p "${htseq_dir}"
count_bam() {
BAM="$1"
TAG=`basename "${BAM}" .bam`
fix-mm -g "${GTF}" "${BAM}" -o - | \
samtools view -h - | \
htseq-count --secondary-alignments score -s yes -t exon - "${fixed_gtf}" > "${htseq_dir}/${TAG}.htseq.out"
}
export -f count_bam
export GTF
export fixed_gtf
export KEEP_TEMP
find "${BAMS[@]}" -print0 | xargs -0 -n 1 -P "${NPROC}" bash -c 'count_bam "$@"' _
if [ -z "${KEEP_TEMP}" ]; then
rm "${fixed_gtf}"
rm "${peaks}"
fi
tags=()
htseq_outs=()
header=""
fields="1"
i=0
for bam in "${BAMS[@]}"
do
tag=`basename "${bam}" .bam`
htseq_out="${htseq_dir}/${tag}.htseq.out"
tags+=("${tag}")
htseq_outs+=("${htseq_out}")
header="${header}\t${tag}"
i=$(($i+2))
fields="${fields},${i}"
done
cat <(echo -e "${header}") \
<(paste "${htseq_outs[@]}" | cut -f "${fields}") \
> "${NAME}.cnt"
if [ -z "${KEEP_TEMP}" ]; then
for htseq_out in "${htseq_outs[@]}"
do
rm "${htseq_out}"
done
rmdir "${htseq_dir}"
fi
echo "Done"
|