File: get

package info (click to toggle)
grabix 0.1.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,560 kB
  • sloc: ansic: 917; cpp: 320; sh: 124; python: 43; makefile: 17
file content (15 lines) | stat: -rw-r--r-- 331 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

# Get five VCF files from test suite which have the smallest file size

BASEDOWNLOADURL=https://raw.githubusercontent.com/arq5x/gemini/master/test/
VCF="test.PLs.vcf
     test.clinvar.vcf
     test.cosmic.vcf
     test.exac.vcf
     test.fusions.vcf
    "

for V in $VCF ; do
    wget --quiet ${BASEDOWNLOADURL}/$V
done