diff --git a/lib/galaxy/visualization/data_providers/genome.py b/lib/galaxy/visualization/data_providers/genome.py index 9dd59e116684..dbdae6d771b9 100644 --- a/lib/galaxy/visualization/data_providers/genome.py +++ b/lib/galaxy/visualization/data_providers/genome.py @@ -98,7 +98,10 @@ def _chrom_naming_matches(chrom1, chrom2): ) -class FeatureLocationIndexDataProvider(BaseDataProvider): +# Was previously a BaseDataProvider but it doesn't have the same interface or use any of +# the parent methods. It is also only used explicitly, constructed by name, and access with +# get_data directly using a specified query. +class FeatureLocationIndexDataProvider: """ Reads/writes/queries feature location index (FLI) datasets. """