-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'devel' into feature/cleanup-and-refactor
- Loading branch information
Showing
6 changed files
with
32 additions
and
24 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,11 +1,11 @@ | ||
Package: MetFamily | ||
Type: Package | ||
Title: MetFamily: Discovering Regulated Metabolite Families in Untargeted Metabolomics Studies | ||
Version: 0.99.4 | ||
Date: 2024-08-22 | ||
Author: c( person("Hendrik", "Treutler, role = c("aut"), email = "[email protected]"), | ||
person("Khabat", "Vahabi", role = c("aut"), email = "[email protected]"), | ||
person("Norman", "Storz", role = c("aut"), email = "[email protected]"), | ||
Version: 0.99.5 | ||
Date: 2024-11-07 | ||
Author: c( person(given = "Hendrik", family = "Treutler", role = c("aut"), email = "[email protected]"), | ||
person(given = "Khabat", family = "Vahabi", role = c("ctb"), email = "[email protected]"), | ||
person(given = "Norman", family = "Storz", role = c("ctb"), email = "[email protected]"), | ||
person(given = "Steffen", family = "Neumann", email = "[email protected]", | ||
role = c("aut", "cre"), comment = c(ORCID = "0000-0002-7899-7192")) ) | ||
Depends: | ||
|
@@ -32,7 +32,8 @@ Depends: | |
matrixStats, | ||
plotrix, | ||
slam, | ||
plotly | ||
plotly, | ||
xcms | ||
Imports: | ||
egg, | ||
graphics, | ||
|
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,5 +1,6 @@ | ||
# syntax=docker/dockerfile:1.3-labs | ||
FROM rocker/shiny:4.4 | ||
#FROM rocker/shiny:4.4 | ||
|
||
LABEL maintainer="Steffen Neumann <[email protected]>" | ||
LABEL Description="MetFamily Base Image with dependencies." | ||
|
@@ -28,8 +29,11 @@ RUN echo 'sanitize_errors off;disable_protocols xdr-streaming xhr-streaming ifra | |
## }) | ||
## EOF | ||
|
||
## Temporarily disable gcc choking on "error: format not a string literal and no format arguments" | ||
#RUN sed -i -e 's/-Werror=format-security//g' /usr/local/lib/R/etc/Makeconf | ||
|
||
ADD DESCRIPTION /tmp/MetFamily/DESCRIPTION | ||
RUN R -e 'options(warn=2) ; install.packages("devtools")' | ||
RUN R -e 'library(devtools); options(warn=2) ; install_deps("/tmp/MetFamily")' | ||
RUN R -e 'options(warn=2) ; install.packages(c("devtools", "BiocManager"))' | ||
RUN R -e 'library(devtools); options(warn=2) ; install_deps("/tmp/MetFamily", repos=BiocManager::repositories())' | ||
|
||
WORKDIR /srv/shiny-server |
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