Skip to content

Commit

Permalink
cat mod
Browse files Browse the repository at this point in the history
  • Loading branch information
noriakis committed Apr 10, 2024
1 parent b73a57b commit aee4e21
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions R/consensusSeqFast.R
Original file line number Diff line number Diff line change
Expand Up @@ -244,10 +244,10 @@ consensusSeqMIDAS2 <- function(
fract_cov=info$fraction_covered))
}
})
qqcat(" Profiled samples: @{length(SAMPLES)}\n")
cat_subtle("# Profiled samples: ", length(SAMPLES), "\n", sep="")
names(SAMPLES) <- SPECIES[["summary"]]$sample_name
SAMPLES <- SAMPLES[vapply(SAMPLES, function(x) !is.null(x), FUN.VALUE=TRUE)]
qqcat(" Included samples: @{length(SAMPLES)}\n")
cat_subtle("# Included samples: ", length(SAMPLES), "\n", sep="")

if (verbose) {
qqcat("Beginning site-wise filtering\n")
Expand Down Expand Up @@ -298,6 +298,7 @@ consensusSeqMIDAS2 <- function(


if (!is.null(site_list)) {
cat_subtle("# site_list specified: ", length(site_list), "\n", sep="")
positions <- which(row.names(SPECIES[["info"]]) %in% site_list)
## Ignoring max_sites if site_list is provided.
## All the site in site_list is included, and filtered positions are
Expand Down
2 changes: 1 addition & 1 deletion R/doBoruta.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#' @param deleteZeroDepth delete zero depth SNV
#' @param doFix performs TentativeRoughFix on Boruta result
#' @param argList passed to Boruta()
#' @return Boruta object
#' @return list of Boruta object and plot
#' @import ggplot2
#' @export
doBoruta <- function(stana, sp, cl=NULL, doFix=TRUE,
Expand Down
2 changes: 1 addition & 1 deletion man/doBoruta.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit aee4e21

Please sign in to comment.