Skip to content

Commit dbca075

Browse files
- fixed figure names that were swapped
1 parent 8f7f96e commit dbca075

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

features_from_dlc/features_from_dlc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2111,8 +2111,8 @@ def process_directory(
21112111
pbar.set_description(f"Saving figure {feature}")
21122112
fig.savefig(os.path.join(outdir, f"fig_{feature.replace('_', '')}.svg"))
21132113
fig_delay.savefig(os.path.join(outdir, "fig_delays.svg"))
2114-
fig_rspness.savefig(os.path.join(outdir, "fig_response.svg"))
2115-
fig_response.savefig(os.path.join(outdir, "fig_responsiveness.svg"))
2114+
fig_rspness.savefig(os.path.join(outdir, "fig_responsiveness.svg"))
2115+
fig_response.savefig(os.path.join(outdir, "fig_response.svg"))
21162116
fig_raster.savefig(os.path.join(outdir, "fig_raster.svg"))
21172117

21182118
# save tables

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "features-from-dlc"
3-
version = "2024.12.18"
3+
version = "2025.1.8"
44
authors = [{ name = "Guillaume Le Goc", email = "g.legoc@posteo.org" }]
55
description = "Behavioral quantification from DeepLabCut tracking"
66
readme = "README.md"

0 commit comments

Comments
 (0)