File: make_h_sapiens_ncbi37.sh

package info (click to toggle)
bowtie2 2.5.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 27,492 kB
  • sloc: cpp: 63,838; perl: 7,232; sh: 1,131; python: 987; makefile: 541; ansic: 122
file content (107 lines) | stat: -rwxr-xr-x 3,517 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
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
#!/bin/sh

#
# Downloads sequence for H. sapiens (human) from NCBI.
#
# A relatively new directory structure (as of Oct 2011) seems to have collected
# all the relevant files in one directory (MT no longer separate) and
# eliminated the alternative haplotype assembles from the main directory
#
# It's generally a good idea to consult:
# ftp://ftp.ncbi.nlm.nih.gov/genbank/genomes/Eukaryotes/vertebrates_mammals/Homo_sapiens
# To check for updates to the assembly or the FTP directory structure.
#

BASE_CHRS="\
assembled_chromosomes/FASTA/chr1.fa \
assembled_chromosomes/FASTA/chr2.fa \
assembled_chromosomes/FASTA/chr3.fa \
assembled_chromosomes/FASTA/chr4.fa \
assembled_chromosomes/FASTA/chr5.fa \
assembled_chromosomes/FASTA/chr6.fa \
assembled_chromosomes/FASTA/chr7.fa \
assembled_chromosomes/FASTA/chr8.fa \
assembled_chromosomes/FASTA/chr9.fa \
assembled_chromosomes/FASTA/chr10.fa \
assembled_chromosomes/FASTA/chr11.fa \
assembled_chromosomes/FASTA/chr12.fa \
assembled_chromosomes/FASTA/chr13.fa \
assembled_chromosomes/FASTA/chr14.fa \
assembled_chromosomes/FASTA/chr15.fa \
assembled_chromosomes/FASTA/chr16.fa \
assembled_chromosomes/FASTA/chr17.fa \
assembled_chromosomes/FASTA/chr18.fa \
assembled_chromosomes/FASTA/chr19.fa \
assembled_chromosomes/FASTA/chr20.fa \
assembled_chromosomes/FASTA/chr21.fa \
assembled_chromosomes/FASTA/chr22.fa \
assembled_chromosomes/FASTA/chrX.fa \
assembled_chromosomes/FASTA/chrY.fa"

UNLOCALIZED="\
unlocalized_scaffolds/FASTA/chr1.unlocalized.scaf.fa \
unlocalized_scaffolds/FASTA/chr4.unlocalized.scaf.fa \
unlocalized_scaffolds/FASTA/chr7.unlocalized.scaf.fa \
unlocalized_scaffolds/FASTA/chr8.unlocalized.scaf.fa \
unlocalized_scaffolds/FASTA/chr9.unlocalized.scaf.fa \
unlocalized_scaffolds/FASTA/chr11.unlocalized.scaf.fa \
unlocalized_scaffolds/FASTA/chr17.unlocalized.scaf.fa \
unlocalized_scaffolds/FASTA/chr18.unlocalized.scaf.fa \
unlocalized_scaffolds/FASTA/chr19.unlocalized.scaf.fa \
unlocalized_scaffolds/FASTA/chr21.unlocalized.scaf.fa"

UNPLACED="unplaced_scaffolds/FASTA/unplaced.scaf.fa"

CHRS_TO_INDEX="$BASE_CHRS $UNLOCALIZED $UNPLACED"

FTP_BASE=ftp://ftp.ncbi.nlm.nih.gov/genbank/genomes/Eukaryotes/vertebrates_mammals/Homo_sapiens/GRCh37/Primary_Assembly

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 $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

INPUTS=
for c in $CHRS_TO_INDEX ; do
	cbase=`basename ${c}`
	if [ ! -f $cbase ] ; then
		F=${c}.gz
		get ${FTP_BASE}/$F || (echo "Error getting $F" && exit 1)
		gunzip ${cbase}.gz || (echo "Error unzipping ${cbase}.gz" && exit 1)
	fi
	[ -n "$INPUTS" ] && INPUTS=$INPUTS,$cbase
	[ -z "$INPUTS" ] && INPUTS=$cbase
done

echo Running ${BOWTIE_BUILD_EXE} $* ${INPUTS} h_sapiens_37_asm
${BOWTIE_BUILD_EXE} $* ${INPUTS} h_sapiens_37_asm

if [ "$?" = "0" ] ; then
	echo "h_sapiens_37_asm index built:"
	echo "   h_sapiens_37_asm.1.ebwt h_sapiens_37_asm.2.ebwt"
	echo "   h_sapiens_37_asm.3.ebwt h_sapiens_37_asm.4.ebwt"
	echo "   h_sapiens_37_asm.rev.1.ebwt h_sapiens_37_asm.rev.2.ebwt"
	echo "You may remove hs_ref_chr*.fa"
else
	echo "Index building failed; see error message"
fi