forked from mpg-age-bioinformatics/htseq-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ensref
executable file
·509 lines (451 loc) · 12.1 KB
/
ensref
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
#!/bin/bash
### legal
# copyright (c) 2016, the Bioinformatics Core Facility of the Max Planck Institute for Biology of Ageing, Cologne
# <bioinformatics at age dot mpg dot de>
### about
# ensref - build and index genome data bases from ensembl
#
# base folder:
# - /<base directory>/<organism name>/<release number>/
# base files:
# - BUILD_XX_RELEASE_YY = build and release version info, empty file
# - original.gtf = original reference gtf file
# - original.*.gtf = varying reference gtf file
# - original.*.fa = dna sequences fasta files (e.g. toplevel, ...)
# - cuffcompare.gtf = original.gtf annotated with tophat/cuffcompare
# index files:
# - <dna reference level>_<aligner>, e.g.
# - toplevel_tophat2/index.fa = tophat2 index base name
# - toplevel_tophat2_cuffcompare/index.fa = tophat2/cuffcompare index base name
# log files:
# - log/*.log = stdout and stderr log of index build scripts
# - log/*.sh = index build scripts
### functions
get_organism () {
curl -#l ftp://ftp.ensembl.org/pub/current_fasta/
# alternative: ncftpls -l ftp://ftp.ensembl.org/pub/current_fasta/
}
get_releases () {
curl -#l ftp://ftp.ensembl.org/pub/ | grep release | sed 's|release-||' | sort
}
get_current () {
echo "* getting latest release"
gtf=$(curl -#l ftp://ftp.ensembl.org/pub/current_gtf/$1/ | grep gtf.gz | uniq)
relA=$(echo $gtf | cut -f2 -d.)
relB=$(echo $gtf | cut -f3 -d.)
sep=_
rel=$relA$sep$relB
echo $rel
}
### variables and options
unset LIST
unset RELEASE
unset ORGANISM
BIN=$(basename $0)
BASE="/beegfs/common/genomes"
VER_STAR="2.5.2b"
USAGE="USAGE:
$BIN [OPTIONS]
OPTIONS:
-h, --help : show this help and exist
-l, --list : return available organisms/release-ids
-b, --base, --prefix PATH : select the base directory, (default: $BASE)
-o, --organism ORGANISM : define organism, e.g. 'caenorhabditis_elegans'
-r, --release RELEASE : define release version, e.g. '81'
(default: automatic detection of current version)
--ver-star VERSION : version of STAR (default $VER_STAR)
-n, --no-slurm : use bash to run scripts, not sbatch from slurm
(not yet integrated)
-c, --cpus NUMBER : define number of CPUs (for STAR, default: 12)
(not yet integrated)
"
while [[ $# -gt 0 ]]
do
case $1 in
-h|--help)
echo "$USAGE"
exit
;;
-l|--list)
LIST=true
;;
-b|--base|--prefix)
BASE=$2
shift
;;
-o|--organism)
ORGANISM=$2
shift
;;
-r|--release)
RELEASE=$2
shift
;;
--version-star)
VER_STAR=$2
shift
;;
-n|--no-slurm)
unset SLURM
echo "* warning: option '-n' not yet integrated"
;;
-c|--cpus)
CPUS=$2
shift
echo "* warning: option '-c' not yet integrated"
;;
*)
echo "error: unsupported option '$1'. See '$(basename $0) --help'."
exit 65
;;
esac
shift
done
### check base folder
if [[ ! -d $BASE || ! -x $BASE || ! -w $BASE ]]
then
echo "error: base directory '$BASE' not found/accessable/writeable"
exit 65
fi
### load software environment
# adjust this for your environment
module purge
echo "* loading software environment"
module load slurm
module load bowtie
module load tophat
module load bwa
module load star/${VER_STAR}
#module load hisat
module load hisat
module load cufflinks
VER_STAR_ERROR=$(module load star/$VER_STAR 2>&1)
if [[ -n $VER_STAR_ERROR ]]
then
echo "error: STAR module version '$STAR_VER' not available"
exit 65
fi
### check organism
echo "* fetching organism list"
ORGANISMS=($(get_organism))
echo "* fetching release list"
RELEASES=($(get_releases))
CURRENT=${RELEASES[${#RELEASES[@]}-1]}
if [[ $LIST ]]
then
echo
echo "* available organisms:"
printf '%s\n' "${ORGANISMS[@]}" | column
echo
echo "* available releases:"
printf '%s\n' "${RELEASES[@]}" | column
echo
exit
fi
if [[ -z $ORGANISM || -z $(echo ${ORGANISMS[@]} | grep $ORGANISM) ]]
then
echo "* error: organism '$ORGANISM' not available"
exit 65
fi
### check release
if [[ ! $RELEASE ]]
then
RELEASE=$CURRENT
fi
if [[ -z $RELEASE || -z $(echo ${RELEASES[@]} | grep -o $RELEASE) ]]
then
echo "Error: release '$RELEASE' not available"
exit 65
fi
URL_GTF="ftp://ftp.ensembl.org/pub/release-$RELEASE/gtf/$ORGANISM/"
URL_DNA="ftp://ftp.ensembl.org/pub/release-$RELEASE/fasta/$ORGANISM/dna/"
TARGET=$BASE/$ORGANISM/$RELEASE
### notify
echo "* settings:
ORG : $ORGANISM
REL : $RELEASE (current: $CURRENT)
URL : $URL_GTF
DIR : $TARGET
"
### generate target directory
if [[ -d $TARGET ]]
then
echo "* target directory '$TARGET' exists"
fi
mkdir -p $TARGET
if [[ ! -x $TARGET || ! -w $TARGET ]]
then
echo "error: target directory '$TARGET' not accessable/writeable"
exit 65
fi
cd $TARGET
### download and extract
echo "* fetching file lists"
FILES_GTF=($(curl -#l $URL_GTF | grep "\.gtf\.gz$"))
FILES_DNA=($(curl -#l $URL_DNA | grep "\.dna\."))
BUILD=${FILES_GTF[0]#*.}
BUILD=${BUILD%%.*}
touch BUILD_${BUILD}_RELEASE_${RELEASE}
echo "* downloading and extracting"
echo " README (gtf)"
curl -# $URL_GTF/README > README_gtf
for FILE in ${FILES_GTF[@]}
do
FILE_UNZIP=${FILE%%.gz}
FILE_REBASED=original.${FILE_UNZIP#*.*.*.}
echo " ${FILE%%.gz} : "
#[[ -f $FILE_UNZIP ]] && echo "exists" && continue
[[ -f $FILE_REBASED ]] && echo "exists" && continue
curl -#O $URL_GTF/$FILE
srun -p dontuseme gunzip $FILE
mv $FILE_UNZIP $FILE_REBASED
done
echo " README (fasta)"
curl -# $URL_DNA/README > README_fa
mkdir -p chromosomes
for FILE in ${FILES_DNA[@]}
do
FILE_UNZIP=${FILE%%.gz}
FILE_CHROM=chromosomes/${FILE_UNZIP##*chromosome.}
FILE_REBASED=original.${FILE_UNZIP#*.*.*.}
echo " ${FILE_UNZIP} : "
[[ -f ${FILE_REBASED} || -f ${FILE_CHROM} ]] && echo "exists" && continue
[[ $FILE =~ nonchromosomal && -f chromosomes/nonchromosomal.fa ]] && echo "exists" && continue
curl -#O $URL_DNA/$FILE
srun -p dontuseme gunzip $FILE
if [[ $FILE =~ chromosome ]]
then
mv $FILE_UNZIP $FILE_CHROM
elif [[ $FILE =~ nonchromosomal ]]
then
mv $FILE_UNZIP chromosomes/nonchromosomal.fa
else
mv $FILE_UNZIP $FILE_REBASED
fi
done
### align
# original.toplevel.fa original.primary_assembly.fa
mkdir -p log
for gtf in original.gtf
do
# if adding more gtfs, PREpend label to $name
# e.g.
# label_gtf=${gtf#original.}
# label_gtf=${label_gtf%.gtf}
# [[ -z $label_gtf ]] && label_gtf="default"
#for fa in original.*.fa
# restrict to toplevel/primary_assembly
# 'alt' is not explained
for fa in original.toplevel.fa original.primary_assembly.fa
do
label_fa=${fa#original.}
label_fa=${label_fa%.fa}
#######
### bowtie2
#######
name=${label_fa}_bowtie2
if [[ -d $name ]]
then
echo "* indexing $name: skipped (remove folder to rebuild)"
else
echo "* indexing $name"
jobname=ensref_${ORGANISM}_${RELEASE}_$name
cmd="#!/bin/bash
date
which bowtie2-build-s
mkdir $name
cd $name
ln -s ../$fa index.fa
bowtie2-build-s index.fa index.fa
echo done
"
echo "$cmd" > log/${name}.sh
chmod u+x log/${name}.sh
sbatch -p dontuseme -o log/${name}.log -J $jobname log/${name}.sh
fi
#######
### bwa
#######
name=${label_fa}_bwa
if [[ -d $name ]]
then
echo "* indexing $name: skipped (remove folder to rebuild)"
else
echo "* indexing $name"
jobname=ensref_${ORGANISM}_${RELEASE}_$name
cmd="#!/bin/bash
date
which bwa
mkdir $name
cd $name
ln -s ../$fa index.fa
bwa index -a bwtsw -p index.fa index.fa
echo done
"
#bwa index -a bwtsw -p $TARGET/$name/${fa%.fa} $fa
echo "$cmd" > log/${name}.sh
chmod u+x log/${name}.sh
pid_bowtie2=$(sbatch -p dontuseme -o log/${name}.log -J $jobname log/${name}.sh)
pid_bowtie2=${pid_bowtie2##* }
fi
#######
### star
#######
name=${label_fa}_star_$VER_STAR
if [[ -d $name ]]
then
echo "* indexing $name: skipped (remove folder to rebuild)"
else
echo "* indexing $name"
jobname=ensref_${ORGANISM}_${RELEASE}_$name
cmd="#!/bin/bash
date
which STARshort
mkdir $name
cd $name
ln -s ../$fa index.fa
ln -s ../$gtf index.gtf
STARshort --runMode genomeGenerate --genomeDir ./ --genomeFastaFiles index.fa \
--runThreadN 12 --sjdbGTFfile index.gtf --sjdbOverhang 100 \
--limitGenomeGenerateRAM 124544990592
echo done
"
echo "$cmd" > log/${name}.sh
chmod u+x log/${name}.sh
sbatch -p dontuseme -N 1 -o log/${name}.log -J $jobname -n 12 --mem=150GB log/${name}.sh
fi
# #######
# ### hisat
# #######
#
# name=${label_fa}_hisat
# if [[ -d $name ]]
# then
# echo "* indexing $name: skipped (remove folder to rebuild)"
# else
# echo "* indexing $name"
# jobname=ensref_${ORGANISM}_${RELEASE}_$name
# cmd="#!/bin/bash
#date
#which hisat
#mkdir $name
#cd $name
#ln -s ../$fa index.fa
#hisat-build index.fa index.fa
#echo done
#"
# #bwa index -a bwtsw -p $TARGET/$name/${fa%.fa} $fa
# echo "$cmd" > log/${name}.sh
# chmod u+x log/${name}.sh
# sbatch -p dontuseme -o log/${name}.log -J $jobname log/${name}.sh
# fi
#######
### hisat2
#######
name=${label_fa}_hisat2
if [[ -d $name ]]
then
echo "* indexing $name: skipped (remove folder to rebuild)"
else
echo "* indexing $name"
jobname=ensref_${ORGANISM}_${RELEASE}_$name
cmd="#!/bin/bash
date
module load hisat
which hisat2
mkdir $name
cd $name
ln -s ../$fa index.fa
hisat2-build index.fa index.fa
echo done
"
#bwa index -a bwtsw -p $TARGET/$name/${fa%.fa} $fa
echo "$cmd" > log/${name}.sh
chmod u+x log/${name}.sh
sbatch -p dontuseme -o log/${name}.log -J $jobname log/${name}.sh
fi
#######
### tophat2_cuffcompare
#######
# NOTE:
# cuffcompare error 'Warning: could not parse ID or Parent from GFF line'
# can be ignored/bypassed with dropping 'gene' features from the gtf file
# e.g.
# awk -F '\t' '{if ($3 != "gene") print $0}' $gtf > ${gtf}.tmp
# see the question
# https://www.biostars.org/p/126423/
# and solution
# https://groups.google.com/forum/#!msg/tuxedo-tools-users/FTKA4qozJIc/p47AwnCXxvwJ
name=${label_fa}_tophat2_cuffcompare
if [[ -d $name ]]
then
echo "* indexing $name: skipped (remove folder to rebuild)"
else
echo "* indexing $name"
jobname=ensref_${ORGANISM}_${RELEASE}_$name
cmd="#!/bin/bash
date
which cuffcompare
which tophat2
mkdir $name
cuffcompare -V -CG -s chromosomes -r $gtf $gtf 2>&1
mv cuffcmp.combined.gtf cuffcompare.gtf
tar -jcvf cuffcompare.results.tar.bz2 cuffcmp.* --remove-files
tophat2 -o ${name}.tmp -G cuffcompare.gtf --transcriptome-index ${name}/index \
${label_fa}_bowtie2/index.fa 2>&1
rm -r ${name}.tmp
cd $name
for f in *
do
[[ \$f =~ ^index\.fa ]] && continue
mv \$f \${f/#index/index.fa}
done
echo done
"
#bwa index -a bwtsw -p $TARGET/$name/${fa%.fa} $fa
echo "$cmd" > log/${name}.sh
chmod u+x log/${name}.sh
if [[ -n $pid_bowtie2 ]]
then
sbatch -p dontuseme -o log/${name}.log -J $jobname -d afterok:$pid_bowtie2 log/${name}.sh
else
sbatch -p dontuseme -o log/${name}.log -J $jobname log/${name}.sh
fi
fi
#######
### tophat2
#######
name=${label_fa}_tophat2
if [[ -d $name ]]
then
echo "* indexing $name: skipped (remove folder to rebuild)"
else
echo "* indexing $name"
jobname=ensref_${ORGANISM}_${RELEASE}_$name
cmd="#!/bin/bash
date
which bowtie2
which tophat2
tophat2 -G $gtf -o $name --transcriptome-index $name/index ${label_fa}_bowtie2/index.fa 2>&1
cd $name
for f in *
do
[[ \$f =~ ^index\.fa ]] && continue
[[ -d \$f ]] && continue
mv \$f \${f/#index/index.fa}
done
echo done
"
echo "$cmd" > log/${name}.sh
chmod u+x log/${name}.sh
if [[ -n $pid_bowtie2 ]]
then
sbatch -p dontuseme -o log/${name}.log -J $jobname -d afterok:$pid_bowtie2 log/${name}.sh
else
sbatch -p dontuseme -o log/${name}.log -J $jobname log/${name}.sh
fi
fi
done
done
### done
echo "* done"