forked from bioconda/bioconda-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
33 lines (28 loc) · 804 Bytes
/
build.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
#!/bin/bash
mkdir -p $PREFIX/bin
if [ $PY3K -eq 1 ]
then
2to3 --write hisat2_extract_exons.py hisat2_extract_HLA_vars.py hisat2_extract_snps_haplotypes_UCSC.py hisat2_extract_splice_sites.py hisat2-build hisat2-inspect hisat2_simulate_reads.py hisat2_extract_snps_haplotypes_VCF.py
fi
for i in \
hisat2 \
hisat2-align-s \
hisat2-align-l \
hisat2-build \
hisat2-build-s \
hisat2-build-l \
hisat2-inspect \
hisat2-inspect-s \
hisat2-inspect-l \
hisat2_extract_splice_sites.py \
hisat2_extract_exons.py \
hisat2_simulate_reads.py \
hisat2_extract_HLA_vars.py \
hisat2_extract_snps_haplotypes_UCSC.py \
hisat2_extract_snps_haplotypes_VCF.py;
do
echo $i
cp $i $PREFIX/bin
chmod +x $PREFIX/bin/$i
done
cp -r example $PREFIX/bin