Skip to content

Commit

Permalink
Merge pull request #106 from nf-core/bounlu-patch-2
Browse files Browse the repository at this point in the history
fix vep_cache
  • Loading branch information
maxulysse authored Feb 12, 2024
2 parents dc05d53 + 04598f0 commit 0429e57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflows/rnavar.nf
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ if (params.vep_cache && params.annotate_tools && (params.annotate_tools.split(',
} else {
vep_annotation_cache_key = params.use_annotation_cache_keys ? "${params.vep_cache_version}_${params.vep_genome}/" : ""
}
def vep_cache_dir = "${vep_annotation_cache_key}${params.vep_species}/${params.vep_cache_version}_${params.vep_genome}"
def vep_cache_dir = "${vep_annotation_cache_key}${params.vep_cache_version}_${params.vep_genome}/${params.vep_species}"
def vep_cache_path_full = file("$params.vep_cache/$vep_cache_dir", type: 'dir')
if ( !vep_cache_path_full.exists() || !vep_cache_path_full.isDirectory() ) {
if (params.vep_cache == "s3://annotation-cache/vep_cache") {
Expand Down

0 comments on commit 0429e57

Please sign in to comment.