Skip to content

Commit 0429e57

Browse files
authored
Merge pull request nf-core#106 from nf-core/bounlu-patch-2
fix vep_cache
2 parents dc05d53 + 04598f0 commit 0429e57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workflows/rnavar.nf

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ if (params.vep_cache && params.annotate_tools && (params.annotate_tools.split(',
156156
} else {
157157
vep_annotation_cache_key = params.use_annotation_cache_keys ? "${params.vep_cache_version}_${params.vep_genome}/" : ""
158158
}
159-
def vep_cache_dir = "${vep_annotation_cache_key}${params.vep_species}/${params.vep_cache_version}_${params.vep_genome}"
159+
def vep_cache_dir = "${vep_annotation_cache_key}${params.vep_cache_version}_${params.vep_genome}/${params.vep_species}"
160160
def vep_cache_path_full = file("$params.vep_cache/$vep_cache_dir", type: 'dir')
161161
if ( !vep_cache_path_full.exists() || !vep_cache_path_full.isDirectory() ) {
162162
if (params.vep_cache == "s3://annotation-cache/vep_cache") {

0 commit comments

Comments
 (0)