Skip to content

Commit

Permalink
Method name fix in a doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
junniest committed Dec 5, 2023
1 parent 647554b commit f6c3634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phylo/src/phylo_info/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ impl PhyloInfo {
/// ];
/// let tree = from_newick_string("(((A:2.0,B:2.0):0.3,C:2.0):0.4,D:2.0);").unwrap().pop().unwrap();
/// let info = phyloinfo_from_sequences_tree(&sequences, tree).unwrap();
/// let freqs = info.get_counts(&dna_alphabet());
/// let freqs = info.get_empirical_frequencies(&dna_alphabet());
/// assert_eq!(freqs[&b'A'], 0.25);
/// assert_eq!(freqs[&b'C'], 0.25);
/// assert_eq!(freqs[&b'G'], 0.25);
Expand Down

0 comments on commit f6c3634

Please sign in to comment.