Last updated: 2020-06-24

Checks: 7 0

Knit directory: rss/

This reproducible R Markdown analysis was created with workflowr (version 1.6.2). The Checks tab describes the reproducibility checks that were applied when the results were created. The Past versions tab lists the development history.


Great! Since the R Markdown file has been committed to the Git repository, you know the exact version of the code that produced these results.

Great job! The global environment was empty. Objects defined in the global environment can affect the analysis in your R Markdown file in unknown ways. For reproduciblity it’s best to always run the code in an empty environment.

The command set.seed(20200623) was run prior to running the code in the R Markdown file. Setting a seed ensures that any results that rely on randomness, e.g. subsampling or permutations, are reproducible.

Great job! Recording the operating system, R version, and package versions is critical for reproducibility.

Nice! There were no cached chunks for this analysis, so you can be confident that you successfully produced the results during this run.

Great job! Using relative paths to the files within your workflowr project makes it easier to run your code on other machines.

Great! You are using Git for version control. Tracking code development and connecting the code version to the results is critical for reproducibility.

The results in this page were generated with repository version 1e806af. See the Past versions tab to see a history of the changes made to the R Markdown and HTML files.

Note that you need to be careful to ensure that all relevant files for the analysis have been committed to Git prior to generating the results (you can use wflow_publish or wflow_git_commit). workflowr only checks the R Markdown file, but you know if there are other scripts or data files that it depends on. Below is the status of the Git repository when the results were generated:


Ignored files:
    Ignored:    .Rproj.user/
    Ignored:    .spelling
    Ignored:    examples/example5/.Rhistory
    Ignored:    examples/example5/Aseg_chr16.mat
    Ignored:    examples/example5/example5_simulated_data.mat
    Ignored:    examples/example5/example5_simulated_results.mat
    Ignored:    examples/example5/ibd2015_path2641_genes_results.mat

Untracked files:
    Untracked:  docs_old/

Unstaged changes:
    Modified:   rmd/_site.yml

Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes.


These are the previous versions of the repository in which changes were made to the R Markdown (rmd/recombination.Rmd) and HTML (docs/recombination.html) files. If you’ve configured a remote Git repository (see ?wflow_git_remote), click on the hyperlinks in the table below to view the files as they were in that past version.

File Version Author Date Message
html baa426d Xiang Zhu 2020-06-23 Build site.
Rmd 7ba0e4f Xiang Zhu 2020-06-23 wflow_publish(“rmd/recombination.Rmd”)

The following example illustrates how to compute the “scaled population recombination rate” \(\rho_{ij}\) between SNPs \(i\) and \(j\) using HapMap genetic map.

We take six SNPs in chromosome 22 from HapMap CEU Phase 2, with the genetic map shown below. We also get the effective diploid population size \(N_e=11418\) from IMPUTE software document.

   position             COMBINED_rate(cM/Mb)                                Genetic_Map(cM)
1: 14431347             8.096992                                            0.00000000
2: 14432618             8.131520                                            0.01029128
3: 14433624             8.131967                                            0.01847159
4: 14433659             8.132625                                            0.01875620
5: 14433758             8.129606                                            0.01956133
6: 14434713             8.024772                                            0.02732511

To compute recombination rates from two SNPs, we use the following formula from Li and Stephens (2003):

\[ \rho = 4 \times \text{effective diploid population size} \times \text{genetic distance}. \]

For example,

As a validation, we compare our calculations above with the results from BLIMP (Wen and Stephens, 2010).

The file rmb.ceu.ch22 lists recombination rate between all adjacent markers in the panel.

library(data.table)
genetic.map.chr22 <- data.table::fread("genetic_map_chr22.txt")
legend.ceu.chr22 <- data.table::fread("legend.ceu.ch22", header = T)
rmb.ceu.chr22 <- data.table::fread("rmb.ceu.ch22")

# locate all the snps specified by the legend file
selected.pos <- intersect(genetic.map.chr22$position, legend.ceu.chr22$position)
map.index <- which(genetic.map.chr22$position %in% selected.pos)
leg.index <- which(legend.ceu.chr22$position %in% selected.pos)

# check the location is correct
location.check <- prod(genetic.map.chr22$position[map.index] == legend.ceu.chr22$position[leg.index])
if (location.check != 1) stop('locate the snps wrongly')

# calculate the shrinking coefficient: exp(-rho_{ij}/(2*m)) for adjacent (i,j)
# general formula: rho = 4 * effective population size * genetic distance
# hapmap phase 2 ceu: effective population size (Ne)=11418, haplotype size (m)=120
num.snp <- length(map.index);
ro.coef <- rep(0, num.snp);
ro.coef[1] <- 1;
map.selected <- genetic.map.chr22[map.index, ]
rcb.selected <- map.selected[[3]]
for (i in 2:num.snp){
  ro.coef[i] <- exp(-4*11418*(rcb.selected[i]/100-rcb.selected[i-1]/100)/120)
}

# compare the result with the one provided in BLIMP (Wen and Stephens, 2010)
# make sure rss compute rho in the same way as BLIMP
results <- matrix(0, nrow=num.snp, ncol=2)
results[, 1] <- unlist(rmb.ceu.chr22)
results[, 2] <- ro.coef
> head(results)
          [,1]      [,2]
[1,] 1.0000000 1.0000000
[2,] 0.9615886 0.9615886
[3,] 0.9693454 0.9693454
[4,] 0.9989173 0.9989173
[5,] 0.9969404 0.9969404
[6,] 0.9708834 0.9708834

> tail(results)
              [,1]      [,2]
[34021,] 0.9963701 0.9963701
[34022,] 0.9909937 0.9909937
[34023,] 0.9986032 0.9986032
[34024,] 0.9879030 0.9879030
[34025,] 0.9962124 0.9962124
[34026,] 0.9847357 0.9847357

> max(abs(results[,1]-results[, 2]))
[1] 4.999806e-08

devtools::session_info()
─ Session info ───────────────────────────────────────────────────────────────
 setting  value                       
 version  R version 4.0.1 (2020-06-06)
 os       macOS Catalina 10.15.5      
 system   x86_64, darwin17.0          
 ui       X11                         
 language (EN)                        
 collate  en_US.UTF-8                 
 ctype    en_US.UTF-8                 
 tz       America/Los_Angeles         
 date     2020-06-24                  

─ Packages ───────────────────────────────────────────────────────────────────
 package     * version date       lib source        
 assertthat    0.2.1   2019-03-21 [1] CRAN (R 4.0.0)
 backports     1.1.8   2020-06-17 [1] CRAN (R 4.0.0)
 callr         3.4.3   2020-03-28 [1] CRAN (R 4.0.0)
 cli           2.0.2   2020-02-28 [1] CRAN (R 4.0.0)
 crayon        1.3.4   2017-09-16 [1] CRAN (R 4.0.0)
 desc          1.2.0   2018-05-01 [1] CRAN (R 4.0.0)
 devtools      2.3.0   2020-04-10 [1] CRAN (R 4.0.0)
 digest        0.6.25  2020-02-23 [1] CRAN (R 4.0.0)
 ellipsis      0.3.1   2020-05-15 [1] CRAN (R 4.0.0)
 evaluate      0.14    2019-05-28 [1] CRAN (R 4.0.0)
 fansi         0.4.1   2020-01-08 [1] CRAN (R 4.0.0)
 fs            1.4.1   2020-04-04 [1] CRAN (R 4.0.0)
 git2r         0.27.1  2020-05-03 [1] CRAN (R 4.0.0)
 glue          1.4.1   2020-05-13 [1] CRAN (R 4.0.0)
 htmltools     0.5.0   2020-06-16 [1] CRAN (R 4.0.0)
 httpuv        1.5.4   2020-06-06 [1] CRAN (R 4.0.0)
 knitr         1.29    2020-06-23 [1] CRAN (R 4.0.0)
 later         1.1.0.1 2020-06-05 [1] CRAN (R 4.0.0)
 magrittr      1.5     2014-11-22 [1] CRAN (R 4.0.0)
 memoise       1.1.0   2017-04-21 [1] CRAN (R 4.0.0)
 pkgbuild      1.0.8   2020-05-07 [1] CRAN (R 4.0.0)
 pkgload       1.1.0   2020-05-29 [1] CRAN (R 4.0.0)
 prettyunits   1.1.1   2020-01-24 [1] CRAN (R 4.0.0)
 processx      3.4.2   2020-02-09 [1] CRAN (R 4.0.0)
 promises      1.1.1   2020-06-09 [1] CRAN (R 4.0.0)
 ps            1.3.3   2020-05-08 [1] CRAN (R 4.0.0)
 R6            2.4.1   2019-11-12 [1] CRAN (R 4.0.0)
 Rcpp          1.0.4.6 2020-04-09 [1] CRAN (R 4.0.0)
 remotes       2.1.1   2020-02-15 [1] CRAN (R 4.0.0)
 rlang         0.4.6   2020-05-02 [1] CRAN (R 4.0.0)
 rmarkdown     2.3     2020-06-18 [1] CRAN (R 4.0.0)
 rprojroot     1.3-2   2018-01-03 [1] CRAN (R 4.0.0)
 sessioninfo   1.1.1   2018-11-05 [1] CRAN (R 4.0.0)
 stringi       1.4.6   2020-02-17 [1] CRAN (R 4.0.0)
 stringr       1.4.0   2019-02-10 [1] CRAN (R 4.0.0)
 testthat      2.3.2   2020-03-02 [1] CRAN (R 4.0.0)
 usethis       1.6.1   2020-04-29 [1] CRAN (R 4.0.0)
 whisker       0.4     2019-08-28 [1] CRAN (R 4.0.0)
 withr         2.2.0   2020-04-20 [1] CRAN (R 4.0.0)
 workflowr   * 1.6.2   2020-04-30 [1] CRAN (R 4.0.0)
 xfun          0.15    2020-06-21 [1] CRAN (R 4.0.0)
 yaml          2.2.1   2020-02-01 [1] CRAN (R 4.0.0)

[1] /Library/Frameworks/R.framework/Versions/4.0/Resources/library