Skip to content

Commit

Permalink
Fix to support sodar-core v0.10.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Mar 7, 2022
1 parent be2ed28 commit bdb49c8
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions HISTORY.rst
Expand Up @@ -113,6 +113,7 @@ Full Change List
This is achieved by performing fewer UNION queries (at most ``VARFISH_QUERY_MAX_UNION=20`` at one time).
- Documenting Clinical Beacon v1 protocol.
- Improving performance for fetching result queries (#371).
- Fix to support sodar-core v0.10.10.

-------
v0.23.9
Expand Down
4 changes: 4 additions & 0 deletions importer/plugins.py
Expand Up @@ -52,3 +52,7 @@ class BackgroundJobsPlugin(BackgroundJobsPluginPoint):
job_specs = {
ImportCaseBgJob.spec_name: ImportCaseBgJob,
}

def get_extra_data_link(self, _extra_data, _name):
"""Return a link for timeline label starting with 'extra-'"""
return None
4 changes: 4 additions & 0 deletions svs/plugins.py
Expand Up @@ -66,3 +66,7 @@ class BackgroundJobsPlugin(BackgroundJobsPluginPoint):

#: Return name-to-class mapping for background job class specializations.
job_specs = {ImportStructuralVariantBgJob.spec_name: ImportStructuralVariantBgJob}

def get_extra_data_link(self, _extra_data, _name):
"""Return a link for timeline label starting with 'extra-'"""
return None
4 changes: 4 additions & 0 deletions variants/plugins.py
Expand Up @@ -305,3 +305,7 @@ class BackgroundJobsPlugin(BackgroundJobsPluginPoint):
ClearOldKioskCasesBgJob.spec_name: ClearOldKioskCasesBgJob,
RefreshSmallVariantSummaryBgJob.spec_name: RefreshSmallVariantSummaryBgJob,
}

def get_extra_data_link(self, _extra_data, _name):
"""Return a link for timeline label starting with 'extra-'"""
return None

0 comments on commit bdb49c8

Please sign in to comment.