Skip to content

Commit

Permalink
Merge branch 'master' into feature/qfeature
Browse files Browse the repository at this point in the history
  • Loading branch information
sneumann authored Sep 4, 2024
2 parents 9f78385 + 80aa01a commit eb5311a
Show file tree
Hide file tree
Showing 11 changed files with 128,892 additions and 11 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ jobs:
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
extra-repositories: https://janmarvin.r-universe.dev

# Step 4: Setup pandoc from r-lib
- name: Setup pandoc from r-lib
Expand Down
12 changes: 7 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Title: MetFamily: Discovering Regulated Metabolite Families in Untargeted Metabo
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("Khabat", "Vahabi", role = c("aut"), email = "[email protected]"),
person("Norman", "Storz", role = c("aut"), email = "[email protected]"),
person(given = "Steffen", family = "Neumann", email = "[email protected]",
role = c("aut", "cre"), comment = c(ORCID = "0000-0002-7899-7192")) )
Expand Down Expand Up @@ -41,14 +41,16 @@ Imports:
QFeatures,
stats,
utils
Remotes: decisionpatterns/searchable
Remotes:
decisionpatterns/searchable
Suggests:
knitr,
BiocStyle,
testthat
testthat,
shinytest2
VignetteBuilder: knitr
Maintainer: Hendrik Treutler<hendrik.treutler@ipb-halle.de>
Description: We present a novel approach for the untargeted discovery
Maintainer: Steffen Neumann <sneumann@ipb-halle.de>
Description: Untargeted discovery
of metabolite families offering a bird's eye view of metabolic regulation
in comparative metabolomics. We implemented the presented methodology
in the easy-to-use web application MetFamily to enable the analysis
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#FROM sneumann/metfamily-base:latest
FROM sneumann/metfamily-base:4.3.2
FROM sneumann/metfamily-base:4.4
#FROM sneumann/metfamily-base:4.3.2
#FROM sneumann/metfamily-base:4.0.5
#FROM sneumann/metfamily-base:3.6.3

MAINTAINER Steffen Neumann <[email protected]>

LABEL maintainer="Steffen Neumann <[email protected]>"
LABEL Description="MetFamily helps identifying metabolites and groups them into metabolite clusters (a.k.a. families)."

ADD . /tmp/MetFamily
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile-base
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# syntax=docker/dockerfile:1.3-labs
FROM rocker/shiny:4.3.2

MAINTAINER Steffen Neumann <[email protected]>
FROM rocker/shiny:4.4

LABEL maintainer="Steffen Neumann <[email protected]>"
LABEL Description="MetFamily Base Image with dependencies."

## Older base images might need libigraph0-dev instead of libigraph-dev
Expand All @@ -16,6 +15,7 @@ RUN echo 'sanitize_errors off;disable_protocols xdr-streaming xhr-streaming ifra
## The following Rprofile allows to use CRAN snapshots
## (The HERE document COPY <<EOF requires syntax=docker/dockerfile:1.3-labs)
## We have tested the following combinations of FROM and CRAN:
## rocker/shiny:4.3.2
## rocker/shiny:3.6.3 https://packagemanager.posit.co/cran/2020-04-23/
## rocker/shiny:4.0.5 https://packagemanager.posit.co/cran/2021-03-01/
## rocker/shiny:4.3.2 https://packagemanager.posit.co/cran/2023-12-01/
Expand Down
9 changes: 9 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
CHANGES IN VERSION 0.99.4
-------------------------
NEW FEATURES

o Reading and parsing of intensity matrix now via QFeatures package
o First parallelisation (and speedup) in distance matrix calculation
o Adding of new contributor, change of maintainer


CHANGES IN VERSION 0.99.2
-------------------------

Expand Down
6 changes: 6 additions & 0 deletions R/DataProcessing.R
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,8 @@ readProjectData <- function(fileLines, progress = FALSE)
listMatrixRows <- NULL
listMatrixCols <- NULL

## Disable command line reading of answer
if (FALSE) {
################################################################################
#Start of importing annotation part1 from two
# Display the message and give the user the option to choose whether to upload the annotation file or not.
Expand Down Expand Up @@ -257,6 +259,7 @@ readProjectData <- function(fileLines, progress = FALSE)

#####################################################################################################################################
#end of importing annotation part1 from two
}

listMatrixVals <- NULL

Expand Down Expand Up @@ -315,6 +318,8 @@ readProjectData <- function(fileLines, progress = FALSE)
dataFrameHeader[3, target + 1] <- annotationColumnName
}

## STN: Disabled.
if (FALSE) {
#Start of importing annotation part2 from two
################################################################################
#adding HEX color codes from external annotations to the annotationColorsMapInitValue of dataFrameHeader
Expand All @@ -336,6 +341,7 @@ readProjectData <- function(fileLines, progress = FALSE)
}
################################################################################
#End of importing annotation part2 from two
}

annotationColumnIndex <- which(metaboliteProfileColumnNames == annotationColumnName)
annotationColorsValue <- dataFrameHeader[2, annotationColumnIndex]
Expand Down
300 changes: 300 additions & 0 deletions inst/extdata/testdata/canopus/HeightShort.txt

Large diffs are not rendered by default.

Loading

0 comments on commit eb5311a

Please sign in to comment.