Skip to content

Commit

Permalink
put None for strand_transform in hound_ism_bed hound_ism_snp to pass …
Browse files Browse the repository at this point in the history
…test
  • Loading branch information
lruizcalico committed Apr 9, 2024
1 parent 0c8021b commit 95e0b09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/baskerville/scripts/hound_ism_bed.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def main():
alt_preds = np.array(alt_preds)

ism_scores = snps.compute_scores(
ref_preds, alt_preds, options.snp_stats, strand_transform
ref_preds, alt_preds, options.snp_stats, None
)
for snp_stat in options.snp_stats:
scores_h5[snp_stat][si, mi - mut_start, ni] = ism_scores[
Expand Down
2 changes: 1 addition & 1 deletion src/baskerville/scripts/hound_ism_snp.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def main():
alt_preds = np.array(alt_preds)

ism_scores = snps.compute_scores(
ref_preds, alt_preds, options.snp_stats, strand_transform
ref_preds, alt_preds, options.snp_stats, None
)
for snp_stat in options.snp_stats:
scores_h5[snp_stat][si, mi - mut_start, ni] = ism_scores[
Expand Down

0 comments on commit 95e0b09

Please sign in to comment.