From f0c09ad7d8ecaef5643d2ae06d4450b2e46ecbb2 Mon Sep 17 00:00:00 2001 From: Nirmal Date: Sat, 22 Apr 2017 11:20:29 +0530 Subject: [PATCH] Edited seq_distmatrix for case when b is not provided, arguments p and q were missing and defaults were used earlier, fixed that --- pkg/R/seqdist.R | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/R/seqdist.R b/pkg/R/seqdist.R index b7a1596..daf770b 100644 --- a/pkg/R/seqdist.R +++ b/pkg/R/seqdist.R @@ -108,6 +108,8 @@ seq_distmatrix <- function(a, b return( lower_tri(a , method=method , weight=weight + , q=q + , p=p , useNames=useNames , nthread=nthread) )