Skip to content

Commit

Permalink
Changed Paths
Browse files Browse the repository at this point in the history
  • Loading branch information
basti committed Dec 4, 2018
1 parent a53aa72 commit 1285f1a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions bin/RegGTFExtractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
import os


def check_for_local_folder():
def check_for_local_folder(wd):

if not os.path.isdir("./EnsemblData"):
if not os.path.isdir(os.path.join(wd, "/EnsemblData")):

os.mkdir("./EnsemblData")
os.mkdir(os.path.join(wd, "/EnsemblData"))

if not os.path.isdir( "./UCSCData" ):
os.mkdir( "./UCSCData" )
if not os.path.isdir(os.path.join(wd, "/UCSCData" )):
os.mkdir(os.path.join(wd, "/UCSCData" ))


def main_script(org, wd, tissuetype=None):
Expand Down

0 comments on commit 1285f1a

Please sign in to comment.