Skip to content

Commit

Permalink
fix: track.gencode build incorrect url
Browse files Browse the repository at this point in the history
track.gencode was adding an extra '/' to the gencode url causing it to fail.
  • Loading branch information
shihabdider authored Aug 15, 2024
1 parent 5c4bf7d commit 3df3bd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/gTrack.R
Original file line number Diff line number Diff line change
Expand Up @@ -2092,7 +2092,7 @@ track.gencode = function(gencode = NULL,

if (nchar(cached.dir)==0)
{
url <- sprintf("http://mskilab.com/gTrack/%s/", build)
url <- sprintf("http://mskilab.com/gTrack/%s", build)
cached.path <- file.path(url, "gencode.composite.rds")
cached.path.collapsed <- file.path(url, "gencode.composite.collapsed.rds")

Expand Down

0 comments on commit 3df3bd4

Please sign in to comment.