This is a test version of Biostars. For the public version, visit https://www.biostars.org.
How Can I Specify The Species Genome Release To Use With Ensembl Variant Effect Prediction (Vep)

How can I specify which version a species genome the ensembl Variant Effect Prediction (VEP) tools should use?

I can't find it anywere in the documentation or the argument overview of the tool.

ensembl

1 answer

in their script, variant_effect_predictor.pl

in config section you can set that value (db_version):

# sets up configuration hash that is used throughout the script
sub configure {
...
    # DB options
    'species=s',               # species e.g. human, homo_sapiens
    'registry=s',              # registry file
    'host=s',                  # database host
    'port=s',                  # database port
    'user=s',                  # database user name
    'password=s',              # database password
    'db_version=i',            # Ensembl database version to use e.g. 62
    'genomes',                 # automatically sets DB params for e!Genomes
...

Thanks, I suppose that also works when using the -ofline option to use a cached genome db. Well I'll check it.

Log in to answer this question.