knitr::opts_chunk$set(
    collapse = TRUE,
    comment = "#>"
)

Introduction

This R package provides methods for genetic finemapping in inbred mice by taking advantage of their very high homozygosity rate (>95%).

Method fetch allows to download homozygous genotypes of 37 inbred mouse strains for a given genetic region.

Installation

if(!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")
BiocManager::install("MouseFM")

Loading package

library(MouseFM)

Example function calls

Fetch genotypes for region chr1:5000000-6000000.

df = fetch("chr1", start=5000000, end=6000000)

df[1:10,]

View meta information

comment(df)

Output of Session Info

The output of sessionInfo() on the system on which this document was compiled:

sessionInfo()


matmu/MouseFM documentation built on Sept. 3, 2022, 5:46 a.m.