QualityScaledModStringSet | R Documentation |
title
QualityScaledModDNAStringSet(x, quality)
QualityScaledModRNAStringSet(x, quality)
readQualityScaledModDNAStringSet(
filepath,
quality.scoring = c("phred", "solexa", "illumina"),
nrec = -1L,
skip = 0L,
seek.first.rec = FALSE,
use.names = TRUE
)
readQualityScaledModRNAStringSet(
filepath,
quality.scoring = c("phred", "solexa", "illumina"),
nrec = -1L,
skip = 0L,
seek.first.rec = FALSE,
use.names = TRUE
)
writeQualityScaledModStringSet(
x,
filepath,
append = FALSE,
compress = FALSE,
compression_level = NA
)
x |
For the For |
quality |
A
|
filepath , nrec , skip , seek.first.rec , use.names , append , compress , compression_level |
See |
quality.scoring |
Specify the quality scoring used in the FASTQ file.
Must be one of "phred" (the default), "solexa", or "illumina". If set to "
phred" (or "solexa" or "illumina"), the qualities will be stored in a
|
a QualityScaledModDNAStringSet
or
QualityScaledModDNAStringSet
object
seq <- ModRNAString("AGCU7")
seq
qseq <- PhredQuality(paste0(rep("!", length(seq)), collapse = ""))
qseq
qset <- QualityScaledModRNAStringSet(seq, qseq)
qset
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.