Skip to content

Commit

Permalink
some warning about numbers for technical/biological and fractions
Browse files Browse the repository at this point in the history
  • Loading branch information
ypriverol committed Jul 30, 2024
1 parent 59d365e commit 9d88135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdrf_pipelines/sdrf/sdrf.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def check_integer_columns(df, columns):
non_integer_rows = {}
for column in columns:
# Check if the column contains only integers
non_integers = df[~df[column].apply(lambda x: check_if_integer(x))].index.tolist()
non_integers = df[~df[column].apply(check_if_integer)].index.tolist()
if non_integers:
non_integer_rows[column] = non_integers
return non_integer_rows
Expand Down

0 comments on commit 9d88135

Please sign in to comment.