-
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.
Merge pull request #21 from AliYoussef96/dev_jeba
corrections to the package
- Loading branch information
Showing
35 changed files
with
1,436 additions
and
711 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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: rworkflows | ||
'on': | ||
push: | ||
branches: | ||
- master | ||
- main | ||
- devel | ||
- RELEASE_** | ||
pull_request: | ||
branches: | ||
- master | ||
- main | ||
- devel | ||
- RELEASE_** | ||
jobs: | ||
rworkflows: | ||
permissions: write-all | ||
runs-on: ${{ matrix.config.os }} | ||
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | ||
container: ${{ matrix.config.cont }} | ||
strategy: | ||
fail-fast: ${{ false }} | ||
matrix: | ||
config: | ||
- os: ubuntu-latest | ||
bioc: devel | ||
r: auto | ||
cont: ghcr.io/bioconductor/bioconductor_docker:devel | ||
rspm: ~ | ||
- os: macOS-latest | ||
bioc: devel | ||
r: auto | ||
cont: ~ | ||
rspm: ~ | ||
- os: windows-latest | ||
bioc: devel | ||
r: auto | ||
cont: ~ | ||
rspm: ~ | ||
steps: | ||
- uses: neurogenomics/rworkflows@master | ||
with: | ||
run_bioccheck: ${{ false }} | ||
run_rcmdcheck: ${{ true }} | ||
as_cran: ${{ true }} | ||
run_vignettes: ${{ true }} | ||
has_testthat: ${{ true }} | ||
run_covr: ${{ true }} | ||
run_pkgdown: ${{ true }} | ||
has_runit: ${{ false }} | ||
has_latex: ${{ false }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run_docker: ${{ false }} | ||
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} | ||
runner_os: ${{ runner.os }} | ||
cache_version: cache-v1 | ||
docker_registry: ghcr.io |
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 |
---|---|---|
|
@@ -14,10 +14,18 @@ Authors@R: | |
person(given = "Eleanor", family = "Coffey", role = c("aut", "ths"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-9717-5610"))) | ||
Description: Differential expression analysis is a prevalent method utilised in the examination of diverse biological data. | ||
The reproducibility-optimized test statistic (ROTS) modifies a t-statistic based on the data's intrinsic characteristics and ranks features according to their statistical significance for differential expression between two or more groups (f-statistic). | ||
Focussing on proteomics and metabolomics, the current ROTS implementation cannot account for technical or biological covariates such as MS batches or gender differences among the samples. | ||
Consequently, we developed LimROTS, which employs a reproducibility-optimized test statistic utilising the limma methodology to simulate complex experimental designs. | ||
Description: Differential expression analysis is a prevalent method utilised in | ||
the examination of diverse biological data.The | ||
reproducibility-optimized test statistic (ROTS) modifies a | ||
t-statistic based on the data's intrinsic characteristics and ranks | ||
features according to their statistical significance for | ||
differential expression between two or more groups (f-statistic). | ||
Focussing on proteomics and metabolomics, the current ROTS | ||
implementation cannot account for technical or biological | ||
covariates such as MS batches or gender differences among | ||
the samples.Consequently, we developed LimROTS, which employs a | ||
reproducibility-optimized test statistic utilising the limma | ||
methodology to simulate complex experimental designs. | ||
License: Artistic-2.0 | ||
Encoding: UTF-8 | ||
Roxygen: list(markdown = TRUE) | ||
|
@@ -40,8 +48,10 @@ Imports: | |
utils, | ||
stats, | ||
doRNG, | ||
magick, | ||
dplyr | ||
Suggests: | ||
BiocStyle, | ||
ggplot2, | ||
testthat (>= 3.0.0), | ||
knitr, | ||
|
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.