From 5bc3f6a9ca740c9261a5324f25b90346a4605ef1 Mon Sep 17 00:00:00 2001 From: Vince Buffalo Date: Thu, 8 Feb 2024 00:27:35 -0800 Subject: [PATCH] working pre-release --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index f54a6bf..a9093f4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,12 +1,12 @@ //! Functionality for reading and working with recombination maps. //! -//! [`RecMap`] objects can be created from reading in a HapMap-formatted +//! [`RecMap`] objects can be created from reading in a HapMap-formatted //! recombination map. Note that since the HapMap recombination format does //! not include the chromosome lengths, this must be specified too. //! A convenience function [`read_seqlens`] is provided to read in TSV-formatted //! "genome" files of the chromosome names and lengths. //! -//! Here is a example which loads a recombination map from a HapMap-formatted +//! Here is a example which loads a recombination map from a HapMap-formatted //! recombination map and calculates the total map lengths. //! //! ```no_run