Skip to content

Commit

Permalink
Merge pull request #18 from uclahs-cds/danknight-update-changelog
Browse files Browse the repository at this point in the history
CRAN submission fixes
  • Loading branch information
jeeyunhan authored Nov 15, 2024
2 parents 1ae5524 + 3305069 commit c791d47
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: OutSeekR
Type: Package
Title: Statistical Approach to Outlier Detection in RNA-Seq and Related Data
Version: 0.1.0
Date: 2024-01-23
Version: 1.0.0
Date: 2024-11-15
Authors@R: c(
person("Jee Yun", "Han", email = "[email protected]", role = "aut"),
person("John", "Sahrmann", email = "[email protected]", role = "aut"),
Expand All @@ -16,13 +16,13 @@ Description: An approach to outlier detection in RNA-seq and related data
Depends:
R (>= 2.10)
Imports:
future,
future.apply,
gamlss,
gamlss.dist,
lsa,
truncnorm
Suggests:
future,
knitr,
rmarkdown,
testthat (>= 3.0.0)
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Unreleased

# OutSeekR 1.0.0 - 2024-11-07
# OutSeekR 1.0.0 - 2024-11-15

## Added
* Implementation of core *Outlier Detection Algorithm*, a statistical approach for detecting transcript-level outliers in RNA-seq or related data types, leveraging normalized data (e.g., FPKM) and several statistical metrics.
Expand Down
2 changes: 1 addition & 1 deletion R/detect.outliers.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#' Detect outliers in normalized RNA-seq data.
#'
#' @param data A matrix or data frame of normalized RNA-seq data, organized with transcripts on rows and samples on columns. Transcript identifiers should be stored as `rownames(data)`.
#' @param num.null The number of transcripts to generate when simulating from null distributions; default is 1000.
#' @param num.null The number of transcripts to generate when simulating from null distributions; default is 1000. We recommend using at least 10,000 iterations for publication-level results, with 100,000 or even one million iterations providing more robust estimates.
#' @param initial.screen.method The statistical criterion for initial gene selection; valid options are 'FDR' and 'p-value'.
#' @param p.value.threshold The p-value threshold for the outlier test; default is 0.05. Once the p-value for a sample exceeds `p.value.threshold`, testing for that transcript ceases, and all remaining samples will have p-values equal to `NA`.
#' @param fdr.threshold The false discovery rate (FDR)-adjusted p-value threshold for determining the final count of outliers; default is 0.01.
Expand Down
2 changes: 1 addition & 1 deletion man/detect.outliers.Rd

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

0 comments on commit c791d47

Please sign in to comment.