Skip to content

Commit 1e15ce6

Browse files
authored
bug fix
1 parent d1d1859 commit 1e15ce6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/run_tcav_sgd_pca.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ def pair(arg):
472472
if args.bed_seq_concepts is not None:
473473
for bed in args.bed_seq_concepts:
474474
bed_seq_df = pd.read_table(
475-
args.bed_seq_concepts,
475+
bed,
476476
header=None,
477477
usecols=[0, 1, 2, 3, 4],
478478
names=["chrom", "start", "end", "strand", "concept_name"],
@@ -499,7 +499,7 @@ def pair(arg):
499499
if args.bed_chrom_concepts is not None:
500500
for bed in args.bed_chrom_concepts:
501501
bed_chrom_df = pd.read_table(
502-
args.bed_chrom_concepts,
502+
bed,
503503
header=None,
504504
usecols=[0, 1, 2, 3, 4],
505505
names=["chrom", "start", "end", "strand", "concept_name"],

0 commit comments

Comments
 (0)