Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (8.8%) to scientific vocabulary
Repository
R interface for HoloFood resource
Basic Info
- Host: GitHub
- Owner: EBI-Metagenomics
- License: artistic-2.0
- Language: R
- Default Branch: devel
- Homepage: https://ebi-metagenomics.github.io/HoloFoodR/
- Size: 35.8 MB
Statistics
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 3
- Releases: 0
Metadata Files
README.md
HoloFoodR 
An R package developed for streamlining the integration and analysis of EMBL-EBI HoloFood data. This utility package simplifies access to the resource, enabling direct loading of data into formats tailored for multiomics downstream analytics. With this tool, users can efficiently search and retrieve data from the EBI HoloFood resource.
The retrieved data is available in MultiAssayExperiment /
TreeSummarizedExperiment format similarly to the data acquired with the
MGnifyR package from the MGnify database. This compatibility ensures users
can seamlessly combine and analyze datasets from both sources, leading to
valuable insights into intricate biological systems.
This research has received funding from the Horizon 2020 Programme of the European Union within the FindingPheno project under grant agreement No 952914.
FindingPheno 
FindingPheno, an EU-funded project, is dedicated to developing computational tools and methodologies for the integration and analysis of multi-omics data. Its primary objective is to deepen our understanding of the interactions between hosts and their microbiomes.
HoloFood 
HoloFood, a project funded under EU's Horizon 2020 programme, employed a holistic, "hologenomic", approach to enhance the efficiency of food production systems. This involved exploring the biomolecular and physiological processes triggered by the incorporation of feed additives and novel sustainable feeds in farmed animals.
The HoloFood database, hosted by European Bioinformatics Institute (EMBL-EBI), houses data gathered during the project, encompassing multiple omics, including metabolomics and various other biomolecular measurements. Notably, it does not include data on metagenomic and untargeted metabolomic analyses. However, metagenomic data from the project can be accessed through the MGnify database, while untargeted metabolomic data is stored in the MetaboLights database. To explore available datasets in HoloFood, you can utilize the API browser.
MGnify 
EMBL-EBI's MGnify serves as a repository for microbiome data, offering a wide array of analyses encompassing metabarcoding, metatranscriptomic, and metagenomic datasets from diverse environments. This platform provides comprehensive taxonomic assignments and functional annotations for these datasets. The data can be accessed through MGnifyR package.
MetaboLights 
MetaboLights, managed by EMBL-EBI, serves as a repository for metabolomic data. It can be accessed through HoloFoodR package.
miaverse 
miaverse is an R/Bioconductor framework specialized for microbiome downstream data analysis, leveraging the TreeSummarizedExperiment class. It offers a comprehensive suite of tools for microbiome bioinformatics. Additionally, miaverse includes the tutorial book Orchestrating Microbiome Analysis (OMA), which aims to guide users in conducting microbiome data analysis and sharing best practices in microbiome data science.
Installation
Bioc-release
``` if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager")
BiocManager::install("HoloFoodR") ```
Bioc-devel
``` if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager")
The following initializes usage of Bioc devel
BiocManager::install(version="devel")
BiocManager::install("HoloFoodR") ```
GitHub
remotes::install_github("EBI-Metagenomics/HoloFoodR")
Basic usage
For more detailed instructions read the associated function help,
function reference page and
vignette (vignette("HoloFoodR"))
``` library(HoloFoodR)
Search samples
samples <- doQuery("samples")
Search animals
animals <- doQuery("animal")
Fetch data on certain sample
samples <- c("ACCESSIONID") sampledata <- getData(accession.type = "samples", accession = samples)
Fetch data on genome catalogues
genome_catalogues <- getData(type = "genome-catalogues")
Fetch data on genomes in certain genome catalogue
catalogues <- c("ACCESSION_ID") genomes <- getData( type = "genomes", accession.type = "genome-catalogues", accession = catalogues)
Fetch data on untargeted metabolites
metabolites <- getMetaboLights(study_id)
Fetch data as MultiAssayExperiment
samples <- c("ACCESSION_ID") mae <- getResult(accession = samples) ```
Owner
- Name: MGnify
- Login: EBI-Metagenomics
- Kind: organization
- Email: metagenomics-help@ebi.ac.uk
- Location: Genome Campus, UK
- Website: https://www.ebi.ac.uk/metagenomics/
- Twitter: MGnifyDB
- Repositories: 153
- Profile: https://github.com/EBI-Metagenomics
MGnify (formerly known as EBImetagenomics) is a free resource for the assembly, analysis, archiving and browsing all types of microbiome derived sequence data
GitHub Events
Total
- Issues event: 2
- Watch event: 2
- Delete event: 7
- Issue comment event: 21
- Push event: 158
- Pull request review event: 1
- Pull request review comment event: 1
- Pull request event: 19
- Create event: 10
Last Year
- Issues event: 2
- Watch event: 2
- Delete event: 7
- Issue comment event: 21
- Push event: 158
- Pull request review event: 1
- Pull request review comment event: 1
- Pull request event: 19
- Create event: 10
Issues and Pull Requests
Last synced: 10 months ago
All Time
- Total issues: 14
- Total pull requests: 34
- Average time to close issues: about 2 months
- Average time to close pull requests: 3 days
- Total issue authors: 5
- Total pull request authors: 1
- Average comments per issue: 1.0
- Average comments per pull request: 0.38
- Merged pull requests: 33
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 1
- Pull requests: 17
- Average time to close issues: N/A
- Average time to close pull requests: 6 days
- Issue authors: 1
- Pull request authors: 1
- Average comments per issue: 0.0
- Average comments per pull request: 0.29
- Merged pull requests: 16
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- antagomir (2)
- artur-sannikov (1)
- TuomasBorman (1)
- SandyRogers (1)
- kozo2 (1)
Pull Request Authors
- TuomasBorman (42)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- bioconductor 2,416 total
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 2
- Total maintainers: 1
bioconductor.org: HoloFoodR
R interface to EBI HoloFood resource
- Homepage: https://github.com/EBI-Metagenomics/HoloFoodR
- Documentation: https://bioconductor.org/packages/release/bioc/vignettes/HoloFoodR/inst/doc/HoloFoodR.pdf
- License: Artistic-2.0 | file LICENSE
-
Latest release: 1.2.0
published about 1 year ago
Rankings
Maintainers (1)
Dependencies
- neurogenomics/rworkflows master composite
- MultiAssayExperiment * depends
- R >= 4.4.0 depends
- SummarizedExperiment * depends
- S4Vectors * imports
- dplyr * imports
- httr2 * imports
- jsonlite * imports
- BiocStyle * suggests
- TreeSummarizedExperiment * suggests
- knitr * suggests
- rmarkdown * suggests
- testthat * suggests