Skip to content
Snippets Groups Projects
Commit f2a499b0 authored by Floreal Cabanettes's avatar Floreal Cabanettes
Browse files

Fix return

parent 2d8f851c
No related branches found
No related tags found
No related merge requests found
...@@ -202,7 +202,7 @@ class DellyReader(SVReader): ...@@ -202,7 +202,7 @@ class DellyReader(SVReader):
# see http://bcb.io/2014/08/12/validated-whole-genome-structural-variation-detection-using-multiple-callers # see http://bcb.io/2014/08/12/validated-whole-genome-structural-variation-detection-using-multiple-callers
# TODO : should we modifiy this in order to account for individual # TODO : should we modifiy this in order to account for individual
# specific filtering (e.g pe > 5 at least for an individual) # specific filtering (e.g pe > 5 at least for an individual)
return (record.pe > 5 or record.sr > 0)) return record.pe > 5 or record.sr > 0
def bnd_merge(sef, svtype, records): def bnd_merge(sef, svtype, records):
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment