Skip to content

Commit

Permalink
Merge pull request #74 from mirpedrol/more-report-plots
Browse files Browse the repository at this point in the history
Add more report plots
  • Loading branch information
mirpedrol authored Sep 28, 2023
2 parents 2aabcf5 + 10c7c74 commit 4fcf214
Show file tree
Hide file tree
Showing 7 changed files with 734 additions and 10 deletions.
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

0 comments on commit 4fcf214

Please sign in to comment.