File: make_d_melanogaster.sh

package info (click to toggle)
bowtie2 2.5.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 27,556 kB
  • sloc: cpp: 64,301; perl: 7,232; sh: 1,131; python: 993; makefile: 606; ansic: 122
file content (53 lines) | stat: -rwxr-xr-x 1,313 bytes parent folder | download | duplicates (8)
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
#!/bin/sh

#
# Downloads sequence for a D. melanogaster from flybase.  Currently set
# to download 5.22, but F, REL, and IDX_NAME can be edited to reflect a
# different version number.  (But note that you will usually also have
# to change the date in REL.)
#

GENOMES_MIRROR=ftp://ftp.flybase.net/genomes/Drosophila_melanogaster
F=dmel-all-chromosome-r5.48.fasta
REL=dmel_r5.48_FB2012_06
IDX_NAME=d_melanogaster_fb5_48

get() {
	file=$1
	if ! wget --version >/dev/null 2>/dev/null ; then
		if ! curl --version >/dev/null 2>/dev/null ; then
			echo "Please install wget or curl somewhere in your PATH"
			exit 1
		fi
		curl -o `basename $1` $1
		return $?
	else
		wget -O `basename $1` $1
		return $?
	fi
}

BOWTIE_BUILD_EXE=./bowtie2-build
if [ ! -x "$BOWTIE_BUILD_EXE" ] ; then
	if ! which bowtie2-build ; then
		echo "Could not find bowtie2-build in current directory or in PATH"
		exit 1
	else
		BOWTIE_BUILD_EXE=`which bowtie2-build`
	fi
fi

if [ ! -f $F ] ; then
	FGZ=$F.gz
	get ${GENOMES_MIRROR}/$REL/fasta/$FGZ || (echo "Error getting $FGZ" && exit 1)
	gunzip $FGZ || (echo "Error unzipping $FGZ" && exit 1)
fi

CMD="${BOWTIE_BUILD_EXE} $* $F $IDX_NAME"
echo "Running $CMD"
if $CMD ; then
	echo "$IDX_NAME index built; you may remove fasta files"
else
	echo "Index building failed; see error message"
fi