Stale Cache
If the binning page shows a legend that has too many boxes, or the stats on for gc or coverage or sequence length are missing, the cache is likley stale. Fix with this… p = Project.find ‘slug’ p.contigs.select(“id”).find_in_batches do |batch| BatchTaxonomyStats.perform_async(“update”, batch.first.id, batch.last.id, “scope_type” => “Project”, “scope_id” => p.id) end # when sidekiq jobs are…