Last active
March 26, 2025 17:59
-
-
Save allgenesconsidered/02e443492f4738c21f54410e241dcce0 to your computer and use it in GitHub Desktop.
Pulling more reference files from the GATK servers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd /data/home/molvera/res | |
wget -c ftp://[email protected]/bundle/hg38/1000G_phase1.snps.high_confidence.hg38.vcf.gz | |
wget -c ftp://[email protected]/bundle/hg38/1000G_phase1.snps.high_confidence.hg38.vcf.gz.tbi | |
wget -c ftp://[email protected]/bundle/hg38/Mills_and_1000G_gold_standard.indels.hg38.vcf.gz | |
wget -c ftp://[email protected]/bundle/hg38/Mills_and_1000G_gold_standard.indels.hg38.vcf.gz.tbi | |
wget -c ftp://[email protected]/bundle/hg38/hapmap_3.3.hg38.vcf.gz | |
wget -c ftp://[email protected]/bundle/hg38/hapmap_3.3.hg38.vcf.gz.tbi | |
wget -c ftp://[email protected]/bundle/hg38/dbsnp_146.hg38.vcf.gz | |
wget -c ftp://[email protected]/bundle/hg38/dbsnp_146.hg38.vcf.gz.tbi | |
wget -c ftp://[email protected]/bundle/hg38/1000G_omni2.5.hg38.vcf.gz | |
wget -c ftp://[email protected]/bundle/hg38/1000G_omni2.5.hg38.vcf.gz.tbi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment