View source: R/genotypeInfoUpdate.R
removedYMtSnp | R Documentation |
Remove SNPs on the chromosome Y and mitochondrial DNA.
removedYMtSnp(plink, inputPrefix, outputPrefix)
plink |
an executable program in either the current working directory or somewhere in the command path. |
inputPrefix |
the prefix of the input PLINK binary files. |
outputPrefix |
the prefix of the output PLINK binary files. |
Note that if chromosome Y and mitochondrial DNA are available, they must be coded as 24 and 26, respectively.
The output PLINK binary files after removing SNPs on the chromosome Y and mitochondrial DNA.
Junfang Chen
## In the current working directory bedFile <- system.file("extdata", "controlData.bed", package="Gimpute") bimFile <- system.file("extdata", "controlData.bim", package="Gimpute") famFile <- system.file("extdata", "controlData.fam", package="Gimpute") system(paste0("scp ", bedFile, bimFile, famFile, " .")) inputPrefix <- "controlData" ## Specify the input PLINK file prefix outputPrefix <- "1_11_removedYMtSnp" ## Not run: Requires an executable program PLINK, e.g. ## plink <- "/home/tools/plink" ## removedYMtSnp(plink, inputPrefix, outputPrefix)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.