Skip to content

Commit

Permalink
removed unnecessary lines
Browse files Browse the repository at this point in the history
  • Loading branch information
anoronh4 committed Aug 22, 2023
1 parent c2b25c9 commit 74b4e82
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions agfusion/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -778,9 +778,6 @@ class _CommonFusionFormatBasic(_Parser):
Defined here: https://github.com/ccmbioinfo/MetaFusion/wiki/metafusion-file-formats#cff-fields
"""

def __init__(self,logger):
super().__init__(logger)

def _load_data_indices(self,infile,data_indices):
fin = open(infile, "r")
n = 0
Expand Down Expand Up @@ -825,7 +822,7 @@ def __init__(self, infile, logger):
"gene3prime_junction": 4,
}

self._load_data_indices(infile,data_indices)
self._load_data_indices(infile, data_indices)

class CommonFusionFormatReann(_CommonFusionFormatBasic):
"""
Expand All @@ -843,7 +840,7 @@ def __init__(self, infile, logger):
"gene3prime_junction": 4,
}

self._load_data_indices(infile,data_indices)
self._load_data_indices(infile, data_indices)

class CommonFusionFormatTranscript(_CommonFusionFormatBasic):
"""
Expand Down

0 comments on commit 74b4e82

Please sign in to comment.