Description Usage Arguments Value Examples
kmer.table
- generate table with the most frequent k-mers.
get.kmer.column
- get vector of k-mers from the k-mer table from the function kmer.table
1 2 3 4 | kmer.table(.data, .heads = c(10, 100, 300, 1000, 3000, 10000, 30000), .k = 5, .nrow = 20,
.clean = T, .meat = F)
get.kmer.column(.kmer.table.list, .head)
|
.data |
tcR data.frame or a list with tcR data.frames. |
.heads |
Vector of parameter for the |
.k |
Size of the kmer. |
.nrow |
How many most frequent k-mers include to the output table. |
.clean |
Parameter for the |
.meat |
Parameter for the |
.kmer.table.list |
Result from the |
.head |
Which columns with this head return. |
kmer.table
- if .data
is a data frame, than data frame with columns like "Kmers.X", "Count.X" where X - element from .heads
.
If .data
is a list, than list of such data frames.
get.kmer.column
- data frame with first column with kmers and other columns named as a names of data frames, from which .kmer.table.list
was generated.
1 2 3 4 5 | ## Not run:
twb.kmers <- kmer.table(twb, .heads = c(5000, 10000), .meat = T)
head(get.kmer.column(twb.kmers, 10000))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.