Skip to content

Commit

Permalink
Update 03-bubble-plots.R
Browse files Browse the repository at this point in the history
  • Loading branch information
aadamk authored Oct 9, 2024
1 parent df88e83 commit c10605d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analyses/post_clustering_associations/03-bubble-plots.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dir.create(plots_dir, showWarnings = F, recursive = T)
mm_clusters <- read_tsv(file = opt$cluster_file)

# combine Multi-modal clusters with RNA-derived molecular subtypes
cat('Joining multi-omic cluster annotations with histologic data')
cat('Joining multi-omic cluster annotations with histologic data \n')
histology_file <- opt$histology_file
anno_file_rna <- read_tsv(file = histology_file) %>%
dplyr::select(Kids_First_Biospecimen_ID, molecular_subtype, CNS_region) %>%
Expand Down Expand Up @@ -52,7 +52,7 @@ anno_file$dkfz_v11_methylation_subclass <- gsub(", | ", "_", anno_file$dkfz_v11_

# generate balloon plot with at least 5 samples in a group
# Multi-modal clusters vs RNA-derived molecular subtypes
cat('Plotting multi-omic clusters in relation to known subtypes')
cat('Plotting multi-omic clusters in relation to known subtypes \n')
dat <- anno_file %>%
filter(!is.na(molecular_subtype)) %>%
group_by(molecular_subtype, mm_cluster) %>%
Expand Down

0 comments on commit c10605d

Please sign in to comment.