Skip to content

Commit

Permalink
Fixed error when saving gRatioSet, moved annotation of filtered probe…
Browse files Browse the repository at this point in the history
…s from script 7 to script 6.
  • Loading branch information
Vera N. Karlbauer committed Aug 13, 2024
1 parent 6636b22 commit 2a8d81d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions scripts/6_filtering_cpgs.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ if (user_choices$array_type == "v2") {
```

```{r, save data, include=FALSE}
save(dim_gRatioSet_filtered, file = paste0(user_choices$project_name, "/processed_data/gRatioSet_clean_filtered.Rdata"))
save(gRatioSet_filtered, file = paste0(user_choices$project_name, "/processed_data/gRatioSet_clean_filtered.Rdata"))
Betas_clean_filtered <- getBeta(gRatioSet_clean_filtered) # beta values
save(Betas_clean_filtered, file = paste0(user_choices$project_name, "/processed_data/Betas_clean_filtered.Rdata"))
Expand All @@ -428,8 +428,11 @@ save(Ms_clean_filtered, file = paste0(user_choices$project_name, "/processed_dat
```

```{r, save annotations, include=FALSE}
# unfiltered
save(annotations_clean, file = paste0(user_choices$project_name, "/reports/annotations_clean.Rdata"))
# filtered
annotations_clean_filtered <- getAnnotation(gRatioSet_clean_filtered)
save(annotations_clean_filtered, file = paste0(user_choices$project_name, "/reports/annotations_clean_filtered.Rdata"))
```

## Beta values distribution report
Expand Down

0 comments on commit 2a8d81d

Please sign in to comment.