R/vcf2hapmap.R

Defines functions vcf2hapmap

Documented in vcf2hapmap

vcf2hapmap <- function(input,output)
{
    if(missing(input))
    {
        stop("ERROR: input should be provided")
    }
    if(missing(output))
    {
        output = paste0(input,".hapmap")
    }
    asd = get_parental_genotypes(input)
    genotypes_out(asd,output)
}
USDA-ARS-GBRU/crossword documentation built on April 5, 2023, 7:29 p.m.