We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac7f4b5 commit e039001Copy full SHA for e039001
2 files changed
genomicsdb/scripts/genomicsdb_common.py
@@ -35,16 +35,16 @@
35
def normalize_path(path):
36
if "://" in path:
37
if path.endswith("/"):
38
- return path[0:len(path)-2]
+ return path[0 : len(path) - 2]
39
else:
40
return path
41
42
# os.path.abspath removes trailing slash
43
return os.path.abspath(path)
44
45
-def join_paths(path1, path2):
46
- return path1+"/"+path2
47
+def join_paths(path1, path2):
+ return path1 + "/" + path2
48
49
50
def parse_vidmap_json(vidmap_file, intervals=None):
genomicsdb/scripts/genomicsdb_query.py
@@ -314,7 +314,7 @@ def setup():
314
"--no-cache",
315
action="store_true",
316
help="Do not use cached metadata and files with the genomicsdb query",
317
- )
+ )
318
parser.add_argument(
319
"-i",
320
"--interval",
0 commit comments