Skip to content
Snippets Groups Projects
Commit eab69afb authored by Kham Chaimae's avatar Kham Chaimae Committed by KHAM Chaimae
Browse files

commit tp1.R

parent c45be734
No related branches found
No related tags found
No related merge requests found
wdir="."
dir.create(wdir, showWarnings = F, recursive = T)
dir.create(<dir, showWarnings = F, recursive = T)
setwd(wdir)
#library(devtools)
......@@ -13,3 +13,11 @@ if (!require("snpStats", quietly = TRUE))
if (!require("SNPRelate", quietly = TRUE))
BiocManager::install("SNPRelate")
# Les données analysées nécessitant beaucoup de RAM, nous allons sélectionner aléatoirement 250000 SNPs et réecrire des fichiers bed, bim, fam
penncath_bed_path = "results/data/penncath.bed"
penncath_bim_path = "results/data/penncath.bim"
penncath_fam_path = "results/data/penncath.fam"
geno <- snpStats::read.plink(penncath_bed_path, penncath_bim_path, penncath_fam_path, select.snps=sample(1:861473, 25000, replace = FALSE ), na.strings = ("-9"))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment