Skip to content

Commit d963841

Browse files
committed
minor changes to annotations.py to avoid recursion
1 parent 7841aa9 commit d963841

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deeprvat/annotations/annotations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2115,7 +2115,7 @@ def aggregate_and_concat_absplice(
21152115
logger.info(f"Reading file {chrom_file}")
21162116
# ab_splice_res = pd.read_parquet(abs_splice_res_dir/ chrom_file).reset_index()
21172117
ab_splice_res = pd.read_table(abs_splice_res_dir / chrom_file).reset_index()
2118-
absplice_columns = [i for i in ab_splice_res.columns if "AbSplice_DNA" in i]
2118+
absplice_columns = [j for j in ab_splice_res.columns if "AbSplice_DNA_" in j]
21192119
#### aggregate tissue specific ab splice scores
21202120
ab_splice_res["AbSplice_DNA"] = np.max(
21212121
ab_splice_res[absplice_columns],

0 commit comments

Comments
 (0)