seqinfo {sdtoolkit} | R Documentation |
Function takes a box sequence as output by sdprim
, and prints it nicely to the screen, and also to a text file if desired.
seqinfo(box.seq, outfile = NA)
box.seq |
A box sequence object as output by sdprim . |
outfile |
A character specifying a filename for outputting a copy of the printed display. The default NA argument will not output a file. |
Nothing of value returned, but outputs text to screen, and also to the text file specified in outfile
.
Benjamin P. Bryant, bryant@prgs.edu
#Load an example box sequence for demonstration: data(exboxes) #Display information about the box sequence: seqinfo(exboxes) #Display info, and also print it out: seqinfo(exboxes, outfile="demofile.txt")