Skip to content

Commit

Permalink
Return absolute path based on runtime.cwd
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Markiewicz <[email protected]>
  • Loading branch information
psadil and effigies authored Dec 5, 2023
1 parent c1fa19b commit 8aba7a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mriqc/interfaces/functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def _run_interface(self, runtime):

timeseries = pd.concat((timeseries, dvars, fd, aqi, aor), axis=1)

timeseries_file = "timeseries.tsv"
timeseries_file = op.join(runtime.cwd, "timeseries.tsv")

timeseries.to_csv(timeseries_file, sep='\t', index=False, na_rep='n/a')

Expand Down

0 comments on commit 8aba7a5

Please sign in to comment.