View source: R/normalize_filter.R
filter_counts | R Documentation |
This calls the various filtering functions in genefilter along with suggestions made in our lab meetings; defaulting to the threshold based filter suggested by Hector.
filter_counts(
count_table,
method = "cbcb",
p = 0.01,
A = 1,
k = 1,
cv_min = 0.01,
cv_max = 1000,
thresh = 2,
min_samples = 2,
...
)
count_table |
Some counts to filter. |
method |
Filtering method to apply (cbcb, pofa, kofa, cv right now). |
p |
Used by genefilter's pofa(). |
A |
Also for pofa(). |
k |
Used by genefilter's kofa(). |
cv_min |
Used by genefilter's cv(). |
cv_max |
Also used by cv(). |
thresh |
Minimum threshold across samples for cbcb. |
min_samples |
Minimum number of samples for cbcb. |
... |
More options might be needed, especially if I fold cv/p/etc into ... |
Data frame of filtered counts.
[genefilter]
## Not run:
new <- filter_counts(old)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.