-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from federicomarini/mosdefied-ideal
Mosdefied ideal
- Loading branch information
Showing
32 changed files
with
483 additions
and
359 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
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 |
---|---|---|
@@ -1,30 +1,31 @@ | ||
Package: ideal | ||
Type: Package | ||
Title: Interactive Differential Expression AnaLysis | ||
Version: 1.29.0 | ||
Date: 2024-04-07 | ||
Version: 1.99.0 | ||
Date: 2024-09-13 | ||
Authors@R: c(person("Federico", "Marini", role = c("aut", "cre"), | ||
email ="[email protected]", | ||
comment = c(ORCID = '0000-0003-3252-7758'))) | ||
Description: This package provides functions for an Interactive | ||
Differential Expression AnaLysis of RNA-sequencing datasets, to | ||
extract quickly and effectively information downstream the step | ||
of differential expression. A Shiny application encapsulates | ||
the whole package. | ||
the whole package. Support for reproducibility of the whole analysis is | ||
provided by means of a template report which gets automatically compiled | ||
and can be stored/shared. | ||
License: MIT + file LICENSE | ||
LazyData: TRUE | ||
Depends: topGO | ||
Imports: | ||
DESeq2, | ||
SummarizedExperiment, | ||
mosdef (>= 1.1.0), | ||
GenomicRanges, | ||
IRanges, | ||
S4Vectors, | ||
ggplot2 (>= 2.0.0), | ||
heatmaply, | ||
plotly, | ||
pheatmap, | ||
pcaExplorer, | ||
IHW, | ||
gplots, | ||
UpSetR, | ||
|
@@ -48,8 +49,11 @@ Imports: | |
shinyAce, | ||
BiocParallel, | ||
grDevices, | ||
graphics, | ||
base64enc, | ||
methods | ||
methods, | ||
utils, | ||
stats | ||
Suggests: | ||
testthat, | ||
BiocStyle, | ||
|
@@ -58,6 +62,7 @@ Suggests: | |
org.Hs.eg.db, | ||
TxDb.Hsapiens.UCSC.hg38.knownGene, | ||
DEFormats, | ||
htmltools, | ||
edgeR | ||
URL: https://github.com/federicomarini/ideal, | ||
https://federicomarini.github.io/ideal/ | ||
|
@@ -67,3 +72,4 @@ biocViews: ImmunoOncology, GeneExpression, DifferentialExpression, RNASeq, Seque | |
VignetteBuilder: knitr | ||
RoxygenNote: 7.3.2 | ||
Encoding: UTF-8 | ||
Roxygen: list(markdown = TRUE) |
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
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
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,45 @@ | ||
#' Deprecated functions in ideal | ||
#' | ||
#' Functions that are on their way to the function afterlife. | ||
#' Their successors are also listed. | ||
#' | ||
#' The successors of these functions are likely coming after the rework that | ||
#' led to the creation of the `mosdef` package. See more into its | ||
#' documentation for more details. | ||
#' | ||
#' @param ... Ignored arguments. | ||
#' | ||
#' @return All functions throw a warning, with a deprecation message pointing | ||
#' towards its descendent (if available). | ||
#' | ||
#' @name deprecated | ||
#' | ||
#' @section Transitioning to the mosdef framework: | ||
#' | ||
#' - [goseqTable()] is now being replaced by the more flexible | ||
#' [mosdef::run_goseq()] function (which is even faster) | ||
#' - [ggplotCounts()] is now being replaced by the more flexible, better | ||
#' designed, and actually even more good looking [mosdef::gene_plot()] | ||
#' function, with better default behavior and all. | ||
#' - [deseqresult2tbl()] and [deseqresult2DEgenes()] are now replaced by the | ||
#' more flexible [mosdef::deresult_to_df()] | ||
#' - The internally defined functions `createLinkENS()`, `createLinkGeneSymbol()`, | ||
#' and `createLinkGO()` are now replaced by the equivalent functions in `mosdef`: | ||
#' [mosdef::create_link_ENSEMBL()], [mosdef::create_link_NCBI()] and | ||
#' [mosdef::create_link_GO()]. Notably, the `mosdef` package expanded on the | ||
#' concept of automatically generated buttons, taking this to the extreme of | ||
#' efficiency with the [mosdef::buttonifier()] function | ||
#' | ||
#' @author Federico Marini | ||
#' | ||
#' @examples | ||
#' # try(goseqtable()) | ||
#' | ||
NULL | ||
|
||
|
||
## #' @export | ||
## #' @rdname defunct | ||
## trendVar <- function(...) { | ||
## .Defunct("fitTrendVar") | ||
## } |
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
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
Oops, something went wrong.