Skip to content

Commit

Permalink
Merge pull request #236 from smithlabcode/fixing-default-name-roi
Browse files Browse the repository at this point in the history
roi default region name
  • Loading branch information
andrewdavidsmith committed Jun 25, 2024
2 parents ec3559a + 77d54f3 commit 6bdc24d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/roimethstat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ process_chrom(const bool report_more_info, const char level_code,
r.set_score(level_code == 'w' ? lc.mean_meth_weighted()
: (level_code == 'u' ? lc.mean_meth()
: lc.fractional_meth()));
r.set_name("X_" +
r.set_name(r.get_name() + "_" +
std::to_string((level_code == 'w'
? lc.coverage()
: (level_code == 'u' ? lc.sites_covered
Expand Down

0 comments on commit 6bdc24d

Please sign in to comment.