Skip to content

Commit

Permalink
fix: try again with circle_score >= 50
Browse files Browse the repository at this point in the history
  • Loading branch information
dlaehnemann committed Apr 17, 2024
1 parent 5a7f38c commit a4d0ae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/scripts/clean_circle_map_realign_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
# filter out low-quality circles, according to:
# https://github.com/iprada/Circle-Map/wiki/Circle-Map-Realign-output-files
circles = circles.loc[
( circles["circle_score"] >= 200 ) &
( circles["circle_score"] >= 50 ) &
( circles["discordant_reads"] > 0 ) &
( circles["split_reads"] > 0 ) &
( circles["uncovered_fraction"] < 1 )
Expand Down

0 comments on commit a4d0ae3

Please sign in to comment.