From 67e5c6926704b0c0a2b64eb5d70b383e3e7fcaf6 Mon Sep 17 00:00:00 2001 From: Lukas Mueller Date: Tue, 10 Sep 2024 16:55:52 -0400 Subject: [PATCH] fix modulo expression. --- bin/load_images.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/load_images.pl b/bin/load_images.pl index 12c153f18b..636455f743 100644 --- a/bin/load_images.pl +++ b/bin/load_images.pl @@ -149,7 +149,7 @@ while ( my $hashref = $sth->fetchrow_hashref() ) { my $image_id = $hashref->{image_id}; my $chado_table_id = $hashref->{stock_id}; ##### table specific - if ($chado_table_id % 10000) { + if ($chado_table_id % 10000 == 0) { print STDERR "CACHING $chado_table_id\n"; } -- 2.11.4.GIT