Skip to content

Commit

Permalink
Fixed density report titles
Browse files Browse the repository at this point in the history
  • Loading branch information
Vera N. Karlbauer committed Mar 7, 2025
1 parent 0418f9f commit a92d462
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/3_quality_control.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ library(minfi)
knitr::opts_knit$set(root.dir = paste0(user_choices$personal_path, "/"))
knitr::opts_chunk$set(echo = FALSE)
phenotype_data <- readRDS(paste0(user_choices$project_name, "/processed_data/phenotype_data.rds"))
```

```{r load data, include=FALSE}
Expand Down Expand Up @@ -147,7 +146,7 @@ title_df <- title_df %>%
dplyr::select(arrayid, personid)
for (i in 1:ncol(RGSet_quality)){
title_df_current <- title_df %>% filter(arrayid == rownames(pData(RGSet_quality))[i] %>% pull(personid))
title_df_current <- title_df %>% filter(arrayid == rownames(pData(RGSet_quality))[i]) %>% pull(personid)
titel <- paste0(rownames(pData(RGSet_quality))[i], " / ", title_df_current)
densityPlot(as.matrix(Betas_quality[,i]), main = titel)
print(i)
Expand Down

0 comments on commit a92d462

Please sign in to comment.