diff --git a/jass/__main__.py b/jass/__main__.py
index 4e0299de1a4bb7d9e486b6123122c1802b1a7ea7..07bd09a7a6fef7b4d6756cbcc164970e335c8aea 100644
--- a/jass/__main__.py
+++ b/jass/__main__.py
@@ -182,13 +182,13 @@ def w_create_inittable(args):
 
 def w_plot_manhattan(args):
     worktable_path = absolute_path_of_the_file(args.worktable_path)
-    plot_path = absolute_path_of_the_file(args.plot_path)
+    plot_path = args.plot_path
     create_global_plot(worktable_path, plot_path)
 
 
 def w_plot_quadrant(args):
     worktable_path = absolute_path_of_the_file(args.worktable_path)
-    plot_path = absolute_path_of_the_file(args.plot_path)
+    plot_path = args.plot_path
     significance_treshold = float(args.significance_treshold)
     create_quadrant_plot(
         worktable_path, plot_path, significance_treshold=significance_treshold