Description Details Value Slots Examples
Contains Theoretical GC content for a selection of species
Estimates are able to be retained for genomic and transcriptomic sequences. Values are stored as frequencies.
An object of class TheoreticalGC
GenomeA data.frame containing theoretical GC content for
genomic sequences
TranscriptomeA data.frame containing theoretical GC content
for transcriptomic sequences
mDataA data.frame containing metadata about all species in the
object
1 2 3 4 5 6 7 8 9 10 | ## How to form an object using your own fasta file
faDir <- system.file("extdata", package = "ngsReports")
faFile <- list.files(faDir, pattern = "fasta", full.names = TRUE)
gen_df <- estGcDistn(faFile, n = 200)
gen_df <- dplyr::rename(gen_df, Athaliana = Freq)
mData_df <-
data.frame(Name = "Athaliana", Genome = TRUE, Transcriptome = FALSE)
tr_df <- data.frame()
myGC <- new(
"TheoreticalGC", Genome = gen_df, Transcriptome = tr_df, mData = mData_df)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.