Skip to content

Commit

Permalink
Fixed: "No Module named bin Error" V2
Browse files Browse the repository at this point in the history
basti committed Dec 4, 2018
1 parent 38c9bae commit 8c843fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/RegGTFExtractor.py
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ def main_script(org, wd, tissuetype=None):
parser = argparse.ArgumentParser(description='GTF-Generator from UCSC Table Browser and Ensembl Regulatory Build' )
parser.add_argument('organism', help='Source organism [ homo_sapiens or mus_musculus ]', action='store', nargs='?', type=str)
parser.add_argument('--tissue', help='Tissue- or Celltype(s)', action='store', nargs='*', type=str)
parser.add_argument('--wd', help='Working directory. default: "."', action='store', nargs='*', type=str)
parser.add_argument('--wd', help='Working directory. default: "."', action='store', default='.', type=str)
args = vars(parser.parse_args())
if args["organism"]:
print("Working Dir: " + args["wd"])

0 comments on commit 8c843fb

Please sign in to comment.