Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more report plots #74

Merged
merged 10 commits into from
Sep 28, 2023
3 changes: 2 additions & 1 deletion bin/cigar_parser.R
Original file line number Diff line number Diff line change
Expand Up @@ -946,7 +946,8 @@ if (dim(alignment_info)[1] != 0){
dels <- separated_indels %>% filter(Modification == "del")
dels_count <- dim(dels)[1]
if ( t_type == "dels-out" || t_type == "dels-in"){
dels_count <- dels_count - t_reads
t_in_dels <- dels %>% filter(Ids %in% t_ids[[1]])
dels_count <- dels_count - dim(t_in_dels)[1]
}
ins <- separated_indels %>% filter(Modification == "ins")
ins_count <- dim(ins)[1]
Expand Down
Loading
Loading