Last updated: 2020-10-16

Checks: 7 0

Knit directory: NRCRI_2020GS/

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(20200421) 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 c5c0337. 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:    .DS_Store
    Ignored:    .Rhistory
    Ignored:    .Rproj.user/
    Ignored:    analysis/.DS_Store
    Ignored:    data/.DS_Store
    Ignored:    output/.DS_Store

Untracked files:
    Untracked:  CrossValidationFunction_PlusNRCRI_2020GSnotes.gslides
    Untracked:  data/DatabaseDownload_2020Oct13/
    Untracked:  data/chr1_RefPanelAndGSprogeny_ReadyForGP_72719.fam
    Untracked:  output/Kinship_AA_NRCRI_2020April27.rds
    Untracked:  output/Kinship_AD_NRCRI_2020April27.rds
    Untracked:  output/Kinship_AD_NRCRI_2020Oct15.rds
    Untracked:  output/Kinship_A_NRCRI_2020April27.rds
    Untracked:  output/Kinship_A_NRCRI_2020Oct15.rds
    Untracked:  output/Kinship_DD_NRCRI_2020April27.rds
    Untracked:  output/Kinship_D_NRCRI_2020April27.rds
    Untracked:  output/Kinship_D_NRCRI_2020Oct15.rds
    Untracked:  workflowr_log.R

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 (analysis/09-GetGBLUPs.Rmd) and HTML (docs/09-GetGBLUPs.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 12bd17b wolfemd 2020-10-16 Build site.
Rmd 977f389 wolfemd 2020-10-16 Publish NRCRI imputations for 2020 (DCas20_5510 and DCas20_5440) plus a

Previous step

  1. Check prediction accuracy: Evaluate prediction accuracy with cross-validation.
    • Compare prediction accuracy with vs. without IITA’s training data to augment.

Objective

Current Step

  1. Genomic prediction: Predict genomic BLUPs (GEBV and GETGV) for all selection candidates using all available data.

Set-up

cd /home/jj332_cas/marnin/NRCRI_2020GS/; 
export OMP_NUM_THREADS=1 # activate multithread OpenBLAS 
library(tidyverse); library(magrittr); 
source(here::here("code","gsFunctions.R"))
blups_nrcri<-readRDS(file=here::here("output","nrcri_blupsForModelTraining_twostage_asreml_2020Oct13.rds"))
blups_iita<-readRDS(file=here::here("data","iita_blupsForModelTraining_twostage_asreml.rds"))
A<-readRDS(file=here::here("output","Kinship_A_NRCRI_2020Oct15.rds"))
D<-readRDS(file=here::here("output","Kinship_D_NRCRI_2020Oct15.rds"))
AD<-readRDS(file=here::here("output","Kinship_AD_NRCRI_2020Oct15.rds"))

blups_nrcri %<>% 
  select(Trait,blups) %>% 
  unnest(blups) %>% 
  select(-`std error`) %>% 
  filter(GID %in% rownames(A))
blups_iita %<>% 
  select(Trait,blups) %>% 
  unnest(blups) %>% 
  select(-`std error`) %>% 
  filter(GID %in% rownames(A),
         !grepl("TMS13F|TMS14F|TMS15F|2013_|TMS16F|TMS17F|TMS18F",GID))

blups<-blups_nrcri %>%
  nest(TrainingData=-Trait) %>% 
  mutate(Dataset="NRCRIalone") %>% 
  bind_rows(blups_nrcri %>% 
              bind_rows(blups_iita %>% filter(Trait %in% blups_nrcri$Trait)) %>% 
              nest(TrainingData=-Trait) %>% 
              mutate(Dataset="IITAaugmented"))
rm(blups_nrcri,blups_iita)

runGenomicPredictions

cbsurobbins (112 cores; 512GB)

Model A

options(future.globals.maxSize= 1500*1024^2)
predModelA<-runGenomicPredictions(blups,modelType="A",grms=list(A=A),gid="GID",ncores=13)
saveRDS(predModelA,file = here::here("output","genomicPredictions_ModelA_twostage_NRCRI_2020Oct15.rds"))

Model ADE

options(future.globals.maxSize= 3000*1024^2)
predModelADE<-runGenomicPredictions(blups,modelType="ADE",grms=list(A=A,D=D,AD=AD),gid="GID",ncores=13)
saveRDS(predModelADE,file = here::here("output","genomicPredictions_ModelADE_twostage_NRCRI_2020Oct15.rds"))

Write GEBVs to disk

rm(list=ls()); gc()
          used (Mb) gc trigger (Mb) limit (Mb) max used (Mb)
Ncells  685802 36.7    1236858 66.1         NA  1236858 66.1
Vcells 1261819  9.7    8388608 64.0     102400  1997701 15.3
library(tidyverse); library(magrittr);
predModelA<-readRDS(file = here::here("output","genomicPredictions_ModelA_twostage_NRCRI_2020Oct15.rds"))
predModelADE<-readRDS(file = here::here("output","genomicPredictions_ModelADE_twostage_NRCRI_2020Oct15.rds"))
traits<-c("CGM","CGMS1","CGMS2","MCMDS","DM","PLTHT","BRNHT1","HI","logFYLD","logTOPYLD","logRTNO")
unique_gids<-predModelA %>% 
  dplyr::select(genomicPredOut) %>% 
  unnest(genomicPredOut) %>% 
  select(-varcomps) %>% 
  unnest(gblups) %$% 
  GID %>% 
  unique

c1a<-unique_gids %>% 
  grep("c1a",.,value = T,ignore.case = T) %>% 
  union(.,unique_gids %>% 
          grep("^F",.,value = T,ignore.case = T) %>% 
          grep("c1b",.,value = T,ignore.case = T,invert = T))
c1b<-unique_gids%>% grep("c1b",.,value = T,ignore.case = T)
c2a<-unique_gids %>% 
  grep("C2a",.,value = T,ignore.case = T) %>% 
  grep("NR17",.,value = T,ignore.case = T)
c2b<-unique_gids %>% 
  grep("C2b",.,value = T,ignore.case = T) %>% 
  .[!. %in% c(c1a,c1b,c2a)]
c3a<-unique_gids %>% 
  grep("C3a",.,value = T,ignore.case = T) %>% 
  .[!. %in% c(c1a,c1b,c2a,c2b)]
nrTP<-setdiff(unique_gids,unique(c(c1a,c1b,c2a,c2b,c3a)))
## Format and write GEBV
predModelA %>% 
  select(Trait,Dataset,genomicPredOut) %>% 
  unnest(genomicPredOut) %>% 
  select(-varcomps) %>% 
  unnest(gblups) %>% 
  select(-GETGV,-contains("PEV")) %>%
  spread(Trait,GEBV) %>% 
  mutate(Group=case_when(GID %in% nrTP ~ "nrTP",
                         GID %in% c1a ~ "C1a",
                         GID %in% c1b ~ "C1b",
                         GID %in% c2a ~ "C2a",
                         GID %in% c2b ~ "C2b",
                         GID %in% c3a ~ "C3a")) %>% 
  select(Dataset,Group,any_of(traits)) %>% 
  arrange(desc(Group)) %>% 
  write.csv(., file = here::here("output","GEBV_NRCRI_ModelA_2020Oct15.csv"), row.names = F)

## Format and write GETGV
predModelADE %>% 
   select(Trait,Dataset,genomicPredOut) %>% 
  unnest(genomicPredOut) %>% 
  select(-varcomps) %>% 
  unnest(gblups) %>% 
  select(Dataset,GID,Trait,GETGV) %>% 
  spread(Trait,GETGV) %>% 
  mutate(Group=case_when(GID %in% nrTP ~ "nrTP",
                         GID %in% c1a ~ "C1a",
                         GID %in% c1b ~ "C1b",
                         GID %in% c2a ~ "C2a",
                         GID %in% c2b ~ "C2b",
                         GID %in% c3a ~ "C3a")) %>% 
  select(Dataset,Group,any_of(traits)) %>% 
  arrange(desc(Group)) %>% 
  write.csv(., file = here::here("output","GETGV_NRCRI_ModelA_2020Oct15.csv"), row.names = F)

### Make a unified "tidy" long-form: 
predictions<-predModelA %>% 
  select(Trait,Dataset,genomicPredOut) %>% 
  unnest(genomicPredOut) %>% 
  select(-varcomps) %>% 
  unnest(gblups) %>% 
  select(-GETGV) %>% 
  full_join(predModelADE %>% 
              select(Trait,Dataset,genomicPredOut) %>% 
              unnest(genomicPredOut) %>% 
              select(-varcomps) %>% 
              unnest(gblups) %>% 
              rename(GEBV_modelADE=GEBV,
                     PEV_modelADE=PEVa) %>% 
              select(-genomicPredOut)) %>% 
  mutate(Group=case_when(GID %in% nrTP ~ "nrTP",
                         GID %in% c1a ~ "C1a",
                         GID %in% c1b ~ "C1b",
                         GID %in% c2a ~ "C2a",
                         GID %in% c2b ~ "C2b",
                         GID %in% c3a ~ "C3a")) %>% 
  relocate(Group,.before = GID) %>% 
  write.csv(., file = here::here("output","genomicPredictions_NRCRI_2020Oct15.csv"), row.names = F)

Next step

  1. Results

sessionInfo()
R version 4.0.2 (2020-06-22)
Platform: x86_64-apple-darwin17.0 (64-bit)
Running under: macOS Mojave 10.14.6

Matrix products: default
BLAS:   /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libRblas.dylib
LAPACK: /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libRlapack.dylib

locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
 [1] magrittr_1.5    forcats_0.5.0   stringr_1.4.0   dplyr_1.0.2    
 [5] purrr_0.3.4     readr_1.4.0     tidyr_1.1.2     tibble_3.0.4   
 [9] ggplot2_3.3.2   tidyverse_1.3.0 workflowr_1.6.2

loaded via a namespace (and not attached):
 [1] tidyselect_1.1.0 xfun_0.18        haven_2.3.1      colorspace_1.4-1
 [5] vctrs_0.3.4      generics_0.0.2   htmltools_0.5.0  yaml_2.2.1      
 [9] blob_1.2.1       rlang_0.4.8      later_1.1.0.1    pillar_1.4.6    
[13] withr_2.3.0      glue_1.4.2       DBI_1.1.0        dbplyr_1.4.4    
[17] modelr_0.1.8     readxl_1.3.1     lifecycle_0.2.0  munsell_0.5.0   
[21] gtable_0.3.0     cellranger_1.1.0 rvest_0.3.6      evaluate_0.14   
[25] knitr_1.30       ps_1.4.0         httpuv_1.5.4     fansi_0.4.1     
[29] broom_0.7.1      Rcpp_1.0.5       promises_1.1.1   backports_1.1.10
[33] scales_1.1.1     jsonlite_1.7.1   fs_1.5.0         hms_0.5.3       
[37] digest_0.6.25    stringi_1.5.3    rprojroot_1.3-2  grid_4.0.2      
[41] here_0.1         cli_2.1.0        tools_4.0.2      crayon_1.3.4    
[45] whisker_0.4      pkgconfig_2.0.3  ellipsis_0.3.1   xml2_1.3.2      
[49] reprex_0.3.0     lubridate_1.7.9  rstudioapi_0.11  assertthat_0.2.1
[53] rmarkdown_2.4    httr_1.4.2       R6_2.4.1         git2r_0.27.1    
[57] compiler_4.0.2