Description Usage Arguments Value Examples
Functions to read/write an ModStringSet object from/to a file.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | readModDNAStringSet(
filepath,
format = "fasta",
nrec = -1L,
skip = 0L,
seek.first.rec = FALSE,
use.names = TRUE,
with.qualities = FALSE
)
readModRNAStringSet(
filepath,
format = "fasta",
nrec = -1L,
skip = 0L,
seek.first.rec = FALSE,
use.names = TRUE,
with.qualities = FALSE
)
writeModStringSet(
x,
filepath,
append = FALSE,
compress = FALSE,
compression_level = NA,
format = "fasta",
...
)
|
filepath, format, nrec, skip, seek.first.rec, use.names, with.qualities, append, compress, compression_level, ... |
See |
x |
A |
A ModStringSet
of the defined type.
1 2 3 4 5 6 | seqs <- paste0(paste(alphabet(ModDNAString()), collapse = ""),
c("A","G","T"))
set <- ModDNAStringSet(seqs)
file <- tempfile()
writeModStringSet(set, file)
read <- readModDNAStringSet(file)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.