Skip to content

Commit

Permalink
small bug fix script 4
Browse files Browse the repository at this point in the history
  • Loading branch information
NatanYusupov committed Mar 15, 2024
1 parent 1246ab6 commit 0170337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/4_check_matching_of_epigenetic_sex.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ If you have any sex mismatches, they will be displayed in the table above as red
```{r, test sex matches}
mismatch_check_df <- sex_df %>%
select(reported_sex, predicted_sex) %>%
rowwise %>%
rowwise() %>%
mutate(match = n_distinct(unlist(cur_data())) == 1) %>%
ungroup()
Expand Down

0 comments on commit 0170337

Please sign in to comment.