Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vis: fix replicates sorting #232

Merged
merged 3 commits into from
Dec 15, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add comment
  • Loading branch information
plakrisenko authored Dec 14, 2023
commit 51430a1d1fe3ad26a190abdfc8a781e69a17ebcf
1 change: 1 addition & 0 deletions petab/visualize/plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ def generate_lineplot(
replicates = np.stack(
measurements_to_plot.data_to_plot.repl.values
)
# sorts according to ascending order of conditions
cond, replicates = zip(
*sorted(
zip(
Expand Down