Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PI Problem Database
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Marek Wiesner
PI Problem Database
Commits
a56d960c
Commit
a56d960c
authored
11 months ago
by
Marek Wiesner
Browse files
Options
Downloads
Patches
Plain Diff
Fix bug when reading concentration values from dataset
parent
eab2792f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/src/Dataset.py
+1
-1
1 addition, 1 deletion
scripts/src/Dataset.py
with
1 addition
and
1 deletion
scripts/src/Dataset.py
+
1
−
1
View file @
a56d960c
...
...
@@ -83,4 +83,4 @@ class Dataset:
def
get_concentration_values
(
self
)
->
list
[
float
]:
return
[
m
.
concentrationValue
for
m
in
self
.
measurements
if
m
.
concentrationValue
]
\ No newline at end of file
return
[
m
.
concentrationValue
for
m
in
self
.
measurements
if
m
.
concentrationValue
is
not
None
]
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment