From 459900c0b9e576185dd76ed4f76af8bcb9defd5d Mon Sep 17 00:00:00 2001 From: tamerh Date: Mon, 14 Oct 2019 17:01:08 +0100 Subject: [PATCH] download ensembl paths --- conf/conf.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/conf.go b/conf/conf.go index 84d144c..f570d8c 100644 --- a/conf/conf.go +++ b/conf/conf.go @@ -92,9 +92,9 @@ func (c *Conf) Init(rootDir, versionTag string, optionalDatasetActive bool, outD if !exist { log.Println("Downloading ensembl path files.") - err := os.Mkdir("conf", 0700) + err := os.Mkdir("ensembl", 0700) if err != nil { - panic("Error while creating conf directory") + panic("Error while creating ensembl directory") } downloadFile(c.githubRawPath+"/ensembl/ensembl.paths.json", filepath.FromSlash(ensemblDir+"/ensembl.paths.json"))