Skip to content

Commit

Permalink
Merge pull request #171 from uclahs-cds/hwinata-replace-print-with-me…
Browse files Browse the repository at this point in the history
…ssage

replace print with message in create.clone.genome.distribution.plot.R
  • Loading branch information
whelena authored Feb 24, 2025
2 parents 95ddb59 + 8148a55 commit 2cc38e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/create.clone.genome.distribution.plot.R
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ create.clone.genome.distribution.plot <- function(
plt.list <- list();
for (s in unique(snv.df$ID)) {
# Iterate through each sample -------------------------------------------------------------
print(paste('Plotting clone distribution across the genome for sample:', s));
message(paste('Plotting clone distribution across the genome for sample:', s));

sample.df <- droplevels(snv.df[snv.df$ID == s, ]);
sample.df <- unique(sample.df[, c('clone.id', 'genome.pos', 'SNV.id', 'ID')]);
Expand Down

0 comments on commit 2cc38e7

Please sign in to comment.