Thank you so much for your help! I downloaded the GTF and FASTA files provided in your link. Consequently I followed the steps provided (here):
grep -v "#" Saccharomyces_cerevisiae.EF2.62.gtf | sort -k1,1 -k4,4n -k5,5n -t$'\t' | bgzip -c > sacCer_EF2.gtf.gz
tabix sacCer_EF2.gtf.gz
To then follow:
./vep [...] --custom Filename , Short_name , File_type , Annotation_type , Force_report_coordinates , VCF_fields
/home/silviav/ensembl-vep/./vep --custom ~/ensembl-vep/sacCer2/sacCer_EF2.gtf.gz , , gtf , overlap , 1
In the previous code, I did not understand what I should include in the argument VCF_fields. However, I run the code by itself and I got this error message:
-------------------- EXCEPTION --------------------
MSG: ERROR: No format specified for custom annotation source /home/silviav/ensembl-vep/sacCer2/sacCer_EF2.gtf.gz
STACK Bio::EnsEMBL::VEP::AnnotationSourceAdaptor::get_all_custom /home/silviav/ensembl-vep/modules/Bio/EnsEMBL/VEP/AnnotationSourceAdaptor.pm:208
STACK Bio::EnsEMBL::VEP::AnnotationSourceAdaptor::get_all /home/silviav/ensembl-vep/modules/Bio/EnsEMBL/VEP/AnnotationSourceAdaptor.pm:93
STACK Bio::EnsEMBL::VEP::BaseRunner::get_all_AnnotationSources /home/silviav/ensembl-vep/modules/Bio/EnsEMBL/VEP/BaseRunner.pm:175
STACK Bio::EnsEMBL::VEP::Runner::init /home/silviav/ensembl-vep/modules/Bio/EnsEMBL/VEP/Runner.pm:123
STACK Bio::EnsEMBL::VEP::Runner::run /home/silviav/ensembl-vep/modules/Bio/EnsEMBL/VEP/Runner.pm:194
STACK toplevel /home/silviav/ensembl-vep/./vep:227
Date (localtime) = Wed Aug 19 12:18:02 2020
Ensembl API version = 100
Once the previous code is fixed, my plan is to run:
/home/silviav/ensembl-vep/./vep -i /hosts/samples_all_merged.vcf --cache --gtf sacCer_EF2.gtf.gz --fasta Saccharomyces_cerevisiae.EF2.62.dna.toplevel.fa.gz
I hope you could let me know if I am doing the procedure correctly and what it is missing. Thank you for your constant help.