From 5771eb18d6659af55912697bb7bfeac2b76f2c48 Mon Sep 17 00:00:00 2001 From: molpopgen Date: Wed, 30 Dec 2020 09:38:48 -0800 Subject: [PATCH] Document other differences from tskit. --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 679acbd2..942c9cee 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -24,6 +24,9 @@ //! that would only be useful to write when transfering //! final results ot a [``tskit_rust::TableCollection``]. //! 4. Mutation table data are different. See [``MutationRecord``]. +//! 5. Time is measured as an integer (see [``Time``]), +//! as are genomic locations (see [``Position``]). +//! In `tskit`, both are C `double`, the equivalent of [``f64``]. //! //! # Where to find examples //!