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/ImputeDCas20_5510.Rmd) and HTML (docs/ImputeDCas20_5510.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

DArTseqLD (DCas20-5510) contains new NRCRI GS C3.

Impute with RefPanelWA (W. Africa RefPanel)

Copy data

Copy the imputation reference panel from 2019 to the data/ folder.

#cp -r /home/jj332_cas/marnin/NRCRI_2020GS /workdir/mw489/
cp -r /home/jj332_cas/marnin/NRCRI_2020GS/data/Report-DCas20-5510 /workdir/mw489/NRCRI_2020GS/data/
#cp -r /home/jj332_cas/CassavaGenotypeData/CassavaGeneticMap /workdir/mw489/NRCRI_2020GS/data/
#cp /home/jj332_cas/CassavaGenotypeData/nextgenImputation2019/ImputationStageII_71219/chr*_ImputationReferencePanel_StageIIpartI_72219.vcf.gz /workdir/mw489/NRCRI_2020GS/data/

With RefPanelWA

Impute with Beagle V5.0.

Use the “imputation reference panel” dataset from 2019, e.g. chr1_ImputationReferencePanel_StageIIpartI_72219.vcf.gz as reference.

Used 1 large memory Cornell CBSU machine (e.g. cbsulm16; 112 cores, 512 GB RAM), running 1 chromosome at a time.

R functions are stored in the code/ sub-directory. Functions sourced from e.g. imputationFunctions.R are wrappers around e.g. Beagle, and other command line programs.

Impute

#library(tidyverse); library(magrittr);
source(here::here("code","imputationFunctions.R"))
targetVCFpath<-here::here("data/Report-DCas20-5510/") # location of the targetVCF
refVCFpath<-here::here("data/")
mapPath<-here::here("data/CassavaGeneticMap/")
outPath<-here::here("output/")
outSuffix<-"DCas20_5510"

purrr::map(1:18,~runBeagle5(targetVCF=paste0(targetVCFpath,"chr",.,"_DCas20_5510.vcf.gz"),
                            refVCF=paste0(refVCFpath,"chr",.,"_ImputationReferencePanel_StageIIpartI_72219.vcf.gz"),
                            mapFile=paste0(mapPath,"chr",.,"_cassava_cM_pred.v6_91019.map"),
                            outName=paste0(outPath,"chr",.,"_DCas20_5510_WA_REFimputed"),
                            nthreads=112))

Clean up Beagle log files after run. Move to sub-directory output/BeagleLogs/.

cd /workdir/mw489/NRCRI_2020GS/output/; 
#mkdir BeagleLogs;
cp *_DCas20_5510_WA_REFimputed.log BeagleLogs/
cp -r BeagleLogs /home/jj332_cas/marnin/NRCRI_2020GS/output/
cp *_DCas20_5510_WA_REFimputed* /home/jj332_cas/marnin/NRCRI_2020GS/output/

Post-impute filter

For now, the function will just do a fixed filter: AR2>0.75 (DR2>0.75 as of Beagle5.0), P_HWE>1e-20, MAF>0.005 [0.5%].

It can easily be modified in the future to include parameters to vary the filter specifications.

Input parameters

#' @inPath path to input VCF-to-be-filtered, can be left null if path included in @inName . Must end in "/"
#' @inName name of input VCF file EXCLUDING file extension. Assumes .vcf.gz
#' @outPath path where filtered VCF and related are to be stored.Can be left null if path included in @outName . Must end in "/".
#' @outName name desired for output EXCLUDING extension. Output will be .vcf.gz 

Loop to filter all 18 VCF files in parallel

inPath<-here::here("output/")
outPath<-here::here("output/")
source(here::here("code","imputationFunctions.R"))
require(furrr); options(mc.cores=18); plan(multiprocess)
future_map(1:18,~postImputeFilter(inPath=inPath,
                                  inName=paste0("chr",.,"_DCas20_5510_WA_REFimputed"),
                                  outPath=outPath,
                                  outName=paste0("chr",.,"_DCas20_5510_WA_REFimputedAndFiltered")))

Check what’s left

purrr::map(1:18,~system(paste0("zcat ",here::here("output/"),"chr",.,"_DCas20_5510_WA_REFimputedAndFiltered.vcf.gz | wc -l")))
# 7805
# 3766
# 3356
# 3873
# 3221
# 3096
# 1746
# 2946
# 3021
# 2955
# 3049
# 2767
# 2480
# 5357
# 3663
# 2695
# 2739
# 2690
cd /workdir/mw489/NRCRI_2020GS/output/;
cp *_DCas20_5510_WA_REFimputedAndFiltered* /home/jj332_cas/marnin/NRCRI_2020GS/output/

Formats for downstream analysis

library(tidyverse); library(magrittr);
# Make binary plink
pathIn<-"/home/jj332_cas/marnin/NRCRI_2020GS/output/"
require(furrr); options(mc.cores=18); plan(multiprocess)
future_map(1:18,~system(paste0("export PATH=/programs/plink-1.9-x86_64-beta3.30:$PATH;",
                               "plink --vcf ",pathIn,"chr",.,
                               "_DCas20_5510_WA_REFimputedAndFiltered.vcf.gz ",
                               "--make-bed --const-fid ",
                               "--out ",pathIn,"chr",.,
                               "_DCas20_5510_WA_REFimputedAndFiltered")))
# Recode to dosage
future_map(1:18,~system(paste0("export PATH=/programs/plink-1.9-x86_64-beta3.30:$PATH;",
                               "plink --bfile ",pathIn,"chr",.,
                               "_DCas20_5510_WA_REFimputedAndFiltered ",
                               "--recode A ",
                               "--out ",pathIn,"chr",.,
                               "_DCas20_5510_WA_REFimputedAndFiltered")))

# Genome-wide dosage (for use in R)
snps<-future_map(1:18,~read.table(paste0(pathIn,"chr",.,"_DCas20_5510_WA_REFimputedAndFiltered.raw"), stringsAsFactor=F, header = T) %>% 
                   dplyr::select(-FID,-PAT,-MAT,-SEX,-PHENOTYPE) %>% 
                   column_to_rownames(var = "IID") %>% 
                   as.matrix()) %>% 
  reduce(.,cbind)
dim(snps)
# [1]   395 61045
saveRDS(snps,file = paste0(pathIn,"DosageMatrix_DCas20_5510_WA_REFimputedAndFiltered.rds"))

sessionInfo()