Skip to content

Commit 702093b

Browse files
committed
trips offset test
1 parent 71c3175 commit 702093b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RiboMetric/modules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -963,7 +963,7 @@ def trips_asite_prediction(
963963
asite_offsets = {}
964964
for read_length, counts in read_counts.items():
965965
# exclude counts within 10 nt of the start codon
966-
counts = {pos: count for pos, count in counts.items() if abs(pos) < 10}
966+
counts = {pos: count for pos, count in counts.items() if abs(pos) > 10}
967967
print(read_length)
968968
print(counts)
969969
if counts:

0 commit comments

Comments
 (0)