https://github.com/cran/ASMap
Raw File
Tip revision: 24e5618f878ff5e5caf888d08940cd70bf781e19 authored by Julian Taylor on 09 January 2024, 05:20:05 UTC
version 1.0-7
Tip revision: 24e5618
README.md
# ASMap

## Linkage Map Construction using the MSTmap Algorithm 

Functions for Accurate and Speedy linkage map construction, manipulation and diagnosis of Doubled Haploid, Backcross and Recombinant Inbred 'R/qtl' objects. This includes extremely fast linkage map clustering and optimal marker ordering using 'MSTmap' (see Wu et al.,2008).


## Installing

To install the latest version from CRAN, use the following:

```r
install.packages("ASMap")
```

To install the latest development version from GitHub, use the following:

```r
if(!require("remotes")) install.packages("remotes") 
remotes::install_github("DrJ001/ASMap")
```

## Using the package

Load the package and start using it with:

```r
library(ASMap)
```

If you find this package useful, please cite it! Type `citation("ASMap")` on the R console to find out how.
back to top