data_import.Rmd
- Remove humann example form data import vignette
- Reimplementing
step_corncob
after the return of corncob package to cran
- Set workers parameter to 4 in order to avoid issues with BBS builds
- Reducing examples computation time
- Reducing examples computation time
- Suggest using
BiocManager::install()
to installdar
dependencies
- Reducing vignettes computation time
- Reducing tests and examples computation time
- Fixing bug in Github Actions on Linux with
rlang
installation.
- The
dar
package now accepts bothphyloseq
class objects andTreeSummarizedExperiment
as inputs. - The tutorial has been refocused to become a tutorial on how to import biom, qiime, mothur, metaphlan, and humann into
TreeSummarizedExperiment
andphyloseq
class objects. - The
Recipe
andPrepRecipe
classes have been introduced, replacing the previousrecipe
andprep_recipe
classes. - The
subset
andfilter
operations have been updated to allow all steps of therecipe
to be defined in a chainable manner. - The functions
step_filter_by_abundance
,step_filter_by_prevalence
,step_filter_by_rarity
, andstep_filter_by_variance
have been added to enhance filtering functionality.
- The R version dependency has been updated to 4.4.0.
- The dependency on
data.table
has been removed. - The re-export of
%>%
and:=
has been removed. Now code examples and vignettes use|>
. - The
required_deps
function is no longer exported. - The package now recommends more commonly used installation methods, such as
BiocManager::install()
orinstall.packages()
. - A warning message is now displayed whenever the
rarefy = TRUE
option is used, informing users that a fixed seed is being used and how it could impact their results. - The package coverage has increased to 82.33%.
- Unconventional package installation methods have been avoided, for example,
pak::pkg_install
. - The setting of a seed within a function (
run_aldex
) has been addressed. - The name of the data in the
R/data.R
documentation has been corrected fromNA
.
- Initial Bioconductor submission.