Skip to content

Commit

Permalink
Add export statements for new constants and functions
Browse files Browse the repository at this point in the history
  • Loading branch information
camilogarciabotero committed Apr 6, 2024
1 parent cc09152 commit 4644c1d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/models.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
export ECOLICDS, ECOLINOCDS, CPGPOS, CPGNEG

const ECOLICDS = begin
tpm = [
0.310 0.224 0.199 0.268
Expand Down
2 changes: 2 additions & 0 deletions src/perronfrobenius.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
### MarkdovChainHammer.jl ###

export perronfrobenius # generatedna

"""
perronfrobenius(sequence::SeqOrView{A}, n::Int64=1) where A
Expand Down
2 changes: 2 additions & 0 deletions src/utils.jl
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 4644c1d

Please sign in to comment.