Skip to content

Commit 1851ab9

Browse files
authored
fix: instantiate Exception
1 parent 9ef6ba2 commit 1851ab9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

seqchromloader/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ def rev_comp(inp_str):
300300

301301
class BigWigInaccessible(Exception):
302302
def __init__(self, chrom, start, end, *args):
303-
super.__init__(*args)
303+
super().__init__(*args)
304304
self.chrom = chrom
305305
self.start = start
306306
self.end = end
@@ -348,4 +348,4 @@ def extract_info(chrom, start, end, label, genome_pyfasta, bigwigs, target_bam,
348348

349349
if __name__ == "__main__":
350350
chip_seq_coordinates = load_chipseq_data("Bichrom/sample_data/Ascl1.peaks", genome_sizes_file="Bichrom/sample_data/mm10.info",
351-
to_keep=None, to_filter=['chr17', 'chr11', 'chrM', 'chrUn'])
351+
to_keep=None, to_filter=['chr17', 'chr11', 'chrM', 'chrUn'])

0 commit comments

Comments
 (0)