We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7726f5f commit 1ae1037Copy full SHA for 1ae1037
1 file changed
src/sessionizer/sessionizer.py
@@ -46,6 +46,9 @@ def create_igv_session(
46
if use_relative_paths:
47
files = [os.path.relpath(path=file, start=os.path.dirname(output)) for file in files]
48
49
+ if genome_path:
50
+ genome_path = os.path.relpath(path=genome_path, start=os.path.dirname(output))
51
+
52
if not names:
53
# If names list is not provided, set it to the file name
54
names = [os.path.basename(file) for file in files]
0 commit comments