-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
#' filter_low_counts | ||
#' | ||
#' @param raw_counts_matrix raw_counts_matrix object | ||
#' @param min_counts integer number of min_counts across all samples, default 0 | ||
#' @param min_cpm float minimum cpm value, default 0 | ||
#' @param min_cpm_fraction float fraction of samples that need to satisfy min_cpm filter, default 1.0 | ||
#' | ||
#' @return filtered_raw_count_matrix | ||
#' @export | ||
#' | ||
#' @examples | ||
filter_low_counts <- function( | ||
raw_counts_matrix, | ||
min_counts = 0, | ||
min_cpm = 0, | ||
min_cpm_fraction = 1.0){ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#' read_raw_counts | ||
#' | ||
#' @param pathtofile string absolute file path to raw counts matrix | ||
#' @param delimiter string default is tab | ||
#' | ||
#' @return raw_counts_matrix | ||
#' @export | ||
#' | ||
#' @examples | ||
read_raw_counts <- function( | ||
pathtofile, | ||
delimiter = "\t") { | ||
|
||
} |