Created
June 27, 2023 11:47
-
-
Save PoisonAlien/acff9ac5d828049e52b26f4d51869e12 to your computer and use it in GitHub Desktop.
This file contains 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
pipeline_dir = "./" | |
echo "Downloading VEP cache.." 1>&2 | |
mkdir -p ${pipeline_dir}/resources/vep_cache/ | |
cd ${pipeline_dir}/resources/vep_cache/ | |
curl -O https://ftp.ensembl.org/pub/release-107/variation/indexed_vep_cache/homo_sapiens_vep_107_GRCh38.tar.gz | |
tar -xzf homo_sapiens_vep_107_GRCh38.tar.gz -C ./ | |
wget https://ftp.ensembl.org/pub/release-107/fasta/homo_sapiens/dna/Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz | |
gunzip -c Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz | bgzip > Homo_sapiens.GRCh38.dna.primary_assembly.fa.bgzip | |
mv Homo_sapiens.GRCh38.dna.primary_assembly.fa.bgzip Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz | |
samtools faidx Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment