Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Tidy and Streamlined Metabolomics Data Workflows

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md
NotificationsYou must be signed in to change notification settings

yasche/metamorphr

Repository files navigation

CRAN statusCodecov test coverageR-CMD-checkLifecycle: experimental

💡 Overview

The metamorphr package is intended to make working with metabolomicsdata more fun. For this, metamorphr introduces atidydata format which stores metabolomics data and associated metadata, aswell as MS/MS spectra in onetibble andincludes a set of functions to facilitate tasks typically encounteredduring metabolomics data analysis. This approach allows for an easyintegration withTidyverse packages,including ggplot2 and dplyr.

💾 Installation

Install the stable version from CRAN with:

install.packages("metamorphr")

Alternatively, you can install the development version of metamorphrfromGitHub with:

# install.packages("pak")pak::pak("yasche/metamorphr")

⚙️ Functions

Here is an overview of currently implemented functions.

📑 Examples

✨ Create your analysis workflows in no time

library(metamorphr)library(ggplot2)toy_metaboscape %>%  join_metadata(toy_metaboscape_metadata) %>%  filter_blank(blank_samples="blank",blank_as_group=T,group_column=Group) %>%  filter_grouped_mv(min_found=0.75) %>%  impute_lod() %>%  normalize_pqn() %>%  scale_auto() %>%  plot_pca(group_column=Group)+ggplot2::theme_bw()

📊 Seamlessly work with your data sets with dplyr and ggplot2

Easily plot the distribution of all intensities across samples

library(dplyr)toy_metaboscape %>%  join_metadata(toy_metaboscape_metadata) %>%ggplot2::ggplot(ggplot2::aes(Sample,Intensity,color=Group))+ggplot2::geom_boxplot()+ggplot2::theme_bw()

… or compare the intensity of specific features across groups

toy_metaboscape %>%  join_metadata(toy_metaboscape_metadata) %>%dplyr::filter(Name%in% c("Arachidonic acid","ADP","NADPH")) %>%dplyr::filter(Group%in% c("control","treatment")) %>%ggplot2::ggplot(ggplot2::aes(Group,Intensity,color=Group))+ggplot2::geom_boxplot()+ggplot2::facet_wrap(~Name)+ggplot2::theme_bw()

About

Tidy and Streamlined Metabolomics Data Workflows

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp