-
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.
v0.5.3: minor updates to make the package cran-compliant.
- Loading branch information
1 parent
4f540ce
commit f6a0708
Showing
27 changed files
with
330 additions
and
3,345 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 |
---|---|---|
@@ -1,34 +1,72 @@ | ||
Package: SIMBA | ||
Package: simbaR | ||
Type: Package | ||
Title: Simulation of Microbiome data with Biological Accuracy | ||
Version: 0.5.1 | ||
Title: Simulation of Microbiome Data with Biological Accuracy | ||
Version: 0.5.3 | ||
Authors@R: c(person("Jakob", "Wirbel", role = c("aut", "cre"), | ||
email = "jakob.wirbel@embl.de", | ||
email = "jakob.wirbel@gmail.com", | ||
comment = c(ORCID = "0000-0002-4073-3562")), | ||
person("Morgan", "Essex", | ||
email = "morgan.essex@embl.de", role = c("aut")), | ||
email = "essexmorgan@gmail.com", role = c("aut")), | ||
person("Sofia", "Forslund", | ||
email = "Sofia.Forslund@mdc-berlin.de", role = c("aut")), | ||
person("Georg", "Zeller", | ||
email = "zeller@embl.de", role = c("aut"))) | ||
Maintainer: Jakob Wirbel <jakob.wirbel@embl.de> | ||
Description: Based on real data, the package simulates new metagenomic data | ||
by re-sampling real samples and then implants differentially abundant | ||
features. Additionally, the package can simulate confounding factors based | ||
on metadata variables in the real data. The simulations are stored in an | ||
`.h5` file, which is then the basis for downstream benchmarking, | ||
involving i) reality assessment of the simulations, ii) testing for | ||
differential abundance, and iii) evaluation of the output from | ||
differential abundance testing methods. | ||
email = "georg.zeller@gmail.com", role = c("aut"))) | ||
Maintainer: Jakob Wirbel <jakob.wirbel@gmail.com> | ||
Description: Based on real microbiome data, the package simulates new metagenomic data by re-sampling real samples and then implants differentially abundant features. Additionally, the package can simulate confounding factors based on metadata variables in the real data. The simulations are stored in an `.h5` file, which is then the basis for downstream benchmarking, involving i) reality assessment of the simulations, ii) testing for differential abundance, and iii) evaluation of the output from differential abundance testing methods. See Wirbel, Essex, et al. for more information on benchmarking differential abundance testing methods <doi:10.1101/2022.05.09.491139>. | ||
Depends: | ||
R (>= 4.0.0), | ||
rhdf5 | ||
Imports: | ||
ineq, | ||
labdsv, | ||
vegan, | ||
progress, | ||
pROC, | ||
matrixStats, | ||
phyloseq, | ||
nlme, | ||
ggplot2, | ||
tmvtnorm | ||
Suggests: | ||
knitr, | ||
rmarkdown, | ||
tidyverse, | ||
patchwork | ||
dplyr, | ||
stringr, | ||
purrr, | ||
patchwork, | ||
BiocStyle, | ||
MASS, | ||
MAST, | ||
edgeR, | ||
exactRankTests, | ||
limma, | ||
coin, | ||
scde, | ||
lmerTest, | ||
fastANCOM, | ||
SingleCellExperiment, | ||
distinct, | ||
corncob, | ||
ANCOMBC, | ||
metagenomeSeq, | ||
LDM, | ||
SIAMCAT, | ||
DESeq2, | ||
LinDA, | ||
ALDEx2, | ||
ZINQ, | ||
ZIBSeq, | ||
sparseDOSSA, | ||
mvtnorm, | ||
SpiecEasi, | ||
TailRank, | ||
GUniFrac, | ||
car, | ||
mixOmics, | ||
lmtest | ||
VignetteBuilder: knitr | ||
License: GPL-3 | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 7.2.1 | ||
RoxygenNote: 7.2.3 |
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,21 +1,38 @@ | ||
#' @title Toy example | ||
#' @title SIMBA example features | ||
#' | ||
#' @description Feature and metadata table from the dataset from Zeevi et al | ||
#' (see \url{https://doi.org/10.1016/j.cell.2015.11.001}), containing microbial | ||
#' features profiled with mOTUs2 | ||
#' (see \url{http://dx.doi.org/10.1038/s41467-019-08844-4}). For some | ||
#' patients, more than one same has been collected. | ||
#' @description Taxonomic profiles from the study by Zeevi et al. Cell 2014 | ||
#' (see \doi{10.1016/j.cell.2015.11.001}), | ||
#' containing 1952 features from 1181 samples, created by the motus profiler. | ||
#' | ||
#' Mainly used for running the examples in the function documentation and in | ||
#' the package vignette. | ||
#' Mainly used for running the examples in the function documentation and | ||
#' in the vignette. | ||
#' | ||
#' @encoding UTF-8 | ||
#' | ||
#' @name toy_example | ||
#' @name toy.feat | ||
#' | ||
#' @source \url{https://doi.org/10.1016/j.cell.2015.11.001} | ||
#' @source \doi{10.1016/j.cell.2015.11.001} | ||
#' | ||
#' @docType data | ||
#' | ||
#' @keywords data | ||
NULL | ||
|
||
#' @title SIMBA example metadata | ||
#' | ||
#' @description Metadata from the study by Zeevi et al. Cell 2014 | ||
#' (see \doi{10.1016/j.cell.2015.11.001}). | ||
#' | ||
#' Mainly used for running the examples in the function documentation and | ||
#' in the vignette. | ||
#' | ||
#' @encoding UTF-8 | ||
#' | ||
#' @name toy.meta | ||
#' | ||
#' @source \doi{10.1016/j.cell.2015.11.001} | ||
#' | ||
#' @docType data | ||
#' | ||
#' @keywords data | ||
NULL |
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
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.