Learn R Programming

rphast (version 1.6.9)

write.hmm: Write an HMM object to a file

Description

Write an HMM object to a file

Usage

write.hmm(x, filename, append = FALSE)

Arguments

x

An object of type hmm

filename

The name of the file to write to (if NULL, write to terminal)

append

If TRUE, append hmm to existing file, otherwise overwrite.

Examples

Run this code
# NOT RUN {
state.names <- c("neutral", "conserved")
h <- hmm(matrix(c(0.99, 0.01, 0.01, 0.99), nrow=2,
                dimnames=list(state.names, state.names)),
                eq.freq=c(neutral=0.9, conserved=0.1))
filename <- tempfile()
write.hmm(h, filename)
unlink(filename)
# }

Run the code above in your browser using DataLab