Skip to content

Commit bd88453

Browse files
PMBioPMBio
authored andcommitted
fixup! Format Python code with psf/black pull_request
1 parent d963841 commit bd88453

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

deeprvat/annotations/annotations.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2115,7 +2115,9 @@ 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 = [j for j in ab_splice_res.columns if "AbSplice_DNA_" in j]
2118+
absplice_columns = [
2119+
j for j in ab_splice_res.columns if "AbSplice_DNA_" in j
2120+
]
21192121
#### aggregate tissue specific ab splice scores
21202122
ab_splice_res["AbSplice_DNA"] = np.max(
21212123
ab_splice_res[absplice_columns],

0 commit comments

Comments
 (0)