Skip to content

Commit

Permalink
fix: interpret skip_libraries in sv_calling (#383)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Apr 11, 2023
1 parent 573c72f commit 60be51d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion snappy_pipeline/workflows/common/sv_calling.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ def get_result_files(self):
#: Generate all concrete output paths.
for path_tpl in result_paths_tpls:
for library_name in self.index_ngs_library_to_pedigree.keys():
yield from expand(path_tpl, mapper=[mapper], library_name=library_name)
if library_name not in self.config[self.name].get("skip_libraries", []):
yield from expand(path_tpl, mapper=[mapper], library_name=library_name)


class SvCallingGetLogFileMixin:
Expand Down

0 comments on commit 60be51d

Please sign in to comment.