From 4644c1db288fbc5cec87605a44b5a96cc54373d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Camilo=20Garc=C3=ADa?= Date: Sat, 6 Apr 2024 17:14:28 -0500 Subject: [PATCH] Add export statements for new constants and functions --- src/models.jl | 2 ++ src/perronfrobenius.jl | 2 ++ src/utils.jl | 2 ++ 3 files changed, 6 insertions(+) diff --git a/src/models.jl b/src/models.jl index e20807a..7678f7a 100644 --- a/src/models.jl +++ b/src/models.jl @@ -1,3 +1,5 @@ +export ECOLICDS, ECOLINOCDS, CPGPOS, CPGNEG + const ECOLICDS = begin tpm = [ 0.310 0.224 0.199 0.268 diff --git a/src/perronfrobenius.jl b/src/perronfrobenius.jl index 5979797..c8bbcd7 100644 --- a/src/perronfrobenius.jl +++ b/src/perronfrobenius.jl @@ -1,5 +1,7 @@ ### MarkdovChainHammer.jl ### +export perronfrobenius # generatedna + """ perronfrobenius(sequence::SeqOrView{A}, n::Int64=1) where A diff --git a/src/utils.jl b/src/utils.jl index ea9e2af..41e051c 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -1,3 +1,5 @@ +export randbmc + function _int_to_dna(index::Int64) # A = extended_alphabet ? alphabet(DNA) : ACGT modifier(value) = (value == 3) ? 4 : (value == 4) ? 8 : value