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
4 changes: 2 additions & 2 deletions assets/multiqc_config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
report_comment: >
This report has been generated by the <a href="https://github.com/nf-core/crisprseq" target="_blank">nf-core/crisprseq</a>
This report has been generated by the <a href="https://github.com/nf-core/crisprseq/releases/tag/dev" target="_blank">nf-core/crisprseq</a>
analysis pipeline. For information about how to interpret these results, please see the
<a href="https://nf-co.re/crisprseq/2.0.0/docs/output" target="_blank">documentation</a>.
<a href="https://nf-co.re/crisprseq/dev/docs/output" target="_blank">documentation</a>.
report_section_order:
"nf-core-crisprseq-methods-description":
order: -1000
Expand Down
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