File: bgziptabix

package info (click to toggle)
libvcflib 1.0.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 49,628 kB
  • sloc: cpp: 39,244; perl: 474; python: 329; ruby: 285; sh: 247; ansic: 198; makefile: 131; javascript: 94; lisp: 57
file content (14 lines) | stat: -rwxr-xr-x 289 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash
# runs bgzip on the input and tabix indexes the result

if [ $# -ne 1 ];
then  
echo usage: $0 '[file name]'
echo runs bgzip on the input and tabix indexes the result
echo "== bgzip >[file] && tabix -fp vcf [file]"
exit
fi

file=$1

bgzip >$file && tabix -fp vcf $file