File: buildTools

package info (click to toggle)
augustus 3.4.0%2Bdfsg2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 758,480 kB
  • sloc: cpp: 65,451; perl: 21,436; python: 3,927; ansic: 1,240; makefile: 1,032; sh: 189; javascript: 32
file content (24 lines) | stat: -rwxr-xr-x 473 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash

# Build bam2wig dependencies (htslib, bfctools, samtools)

git clone https://github.com/samtools/htslib.git ${TOOLDIR}/htslib
cd ${TOOLDIR}/htslib
autoheader
autoconf
./configure
make

git clone https://github.com/samtools/bcftools.git ${TOOLDIR}/bcftools
cd ${TOOLDIR}/bcftools
autoheader
autoconf
./configure
make

git clone https://github.com/samtools/samtools.git ${TOOLDIR}/samtools
cd ${TOOLDIR}/samtools
autoheader
autoconf -Wno-syntax
./configure
make