Skip to content

Commit

Permalink
fix suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
rcannood committed Aug 20, 2024
1 parent db269d6 commit a41985b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bd_rhapsody/bd_rhapsody_sequence_analysis/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ def process_params(par: dict[str, Any], config, temp_dir: str) -> str:
continue
par_value = par[arg_clean_name]
if isinstance(par_value, list):
par_value_absolute = list(map(os.path.abspath, file_path))
par_value_absolute = list(map(os.path.abspath, par_value))
else:
par_value_absolute = os.path.abspath(file_path)
par_value_absolute = os.path.abspath(par_value)
par_value_absolute[arg_clean_name] = par_value_absolute

return par
Expand Down

0 comments on commit a41985b

Please sign in to comment.