Skip to content

Commit

Permalink
tiny edit to fix a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jsalignon committed Oct 25, 2024
1 parent 31be4cf commit d4a38b6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3482,8 +3482,7 @@ process DA_split__splitting_differential_analysis_results_in_subsets {
prom_bed_df = get_prom_bed_df_table(promoters_df1, res_simple_mRNA)
}
res_filter$gene_peak =
apply(res_filter[, c('gene_name', 'peak_id')], 1, paste, collapse = '_')
res_filter$gene_peak = paste0(res_filter$gene_name, '_', res_filter$peak_id)
df_split1 = res_filter %>% dplyr::select(ET:TV) %>% .[!duplicated(.),]
Expand Down

0 comments on commit d4a38b6

Please sign in to comment.