
Last chance! 50% off unlimited learning
Sale ends in
This function generates random sets of DNA sequences.
rDNAbin(n, nrow, ncol, base.freq = rep(0.25, 4), prefix = "Ind_")
a vector of integers giving the lengths of the sequences. Can
be missing in which case nrow
and ncol
must be given.
two single integer values giving the number of
sequences and the number of sites, respectively (ignored if n
is given).
the base frequencies.
the prefix used to give labels to the sequences; by default these are Ind_1, … Ind_n (or Ind_nrow).
an object of class "DNAbin"
.
If n
is used, this function generates a list with sequence lengths given by the values in n
. If n
is missing, a matrix is
generated.
The purpose of this function is to generate a set of sequences of a
specific size. To simulate sequences on a phylogenetic tree, see
simSeq
in phangorn (very efficient), and
the package phylosim (more for pedagogy).
# NOT RUN {
rDNAbin(1:10)
rDNAbin(rep(10, 10))
rDNAbin(nrow = 10, ncol = 10)
# }
Run the code above in your browser using DataLab