All Projects → OSS-Lab → MetQy

OSS-Lab / MetQy

Licence: other
Repository for R package MetQy (read related publication here: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6247936/)

Programming Languages

r
7636 projects
TeX
3793 projects

Projects that are alternatives of or similar to MetQy

Tsrepr
TSrepr: R package for time series representations
Stars: ✭ 75 (+341.18%)
Mutual labels:  data-mining, r-package
scMCA
Mouse cell atlas
Stars: ✭ 45 (+164.71%)
Mutual labels:  r-package
datawizard
Magic potions to clean and transform your data 🧙
Stars: ✭ 149 (+776.47%)
Mutual labels:  r-package
ffscrapr
R API Client for Fantasy Football League Platforms
Stars: ✭ 55 (+223.53%)
Mutual labels:  r-package
rcppsimdjson
Rcpp Bindings for the 'simdjson' Header Library
Stars: ✭ 103 (+505.88%)
Mutual labels:  r-package
packagefinder
Comfortable search for R packages on CRAN, either directly from the R console or with an R Studio add-in
Stars: ✭ 43 (+152.94%)
Mutual labels:  r-package
lingtypology
R package for linguistic cartography and typological databases search
Stars: ✭ 47 (+176.47%)
Mutual labels:  r-package
metafor
A meta-analysis package for R
Stars: ✭ 174 (+923.53%)
Mutual labels:  r-package
mlr3tuning
Hyperparameter optimization package of the mlr3 ecosystem
Stars: ✭ 44 (+158.82%)
Mutual labels:  r-package
tidyhydat
An R package to import Water Survey of Canada hydrometric data and make it tidy
Stars: ✭ 67 (+294.12%)
Mutual labels:  r-package
nlrx
nlrx NetLogo R
Stars: ✭ 66 (+288.24%)
Mutual labels:  r-package
states
Create country-year/month/day panels consistent with the COW or Gleditsch & Ward independent states lists
Stars: ✭ 13 (-23.53%)
Mutual labels:  r-package
wqbc
An R package for water quality thresholds and index calculation for British Columbia
Stars: ✭ 16 (-5.88%)
Mutual labels:  r-package
Luminescence
Development of the R package 'Luminescence'
Stars: ✭ 13 (-23.53%)
Mutual labels:  r-package
metadat
Meta-analytic datasets for R
Stars: ✭ 21 (+23.53%)
Mutual labels:  r-package
suppdata
Grabbing SUPPlementary DATA in R
Stars: ✭ 31 (+82.35%)
Mutual labels:  r-package
syn
syn - the thesaurus
Stars: ✭ 45 (+164.71%)
Mutual labels:  r-package
TextClassification
基于scikit-learn实现对新浪新闻的文本分类,数据集为100w篇文档,总计10类,测试集与训练集1:1划分。分类算法采用SVM和Bayes,其中Bayes作为baseline。
Stars: ✭ 86 (+405.88%)
Mutual labels:  data-mining
RcppEigen
Rcpp integration for the Eigen templated linear algebra library
Stars: ✭ 89 (+423.53%)
Mutual labels:  r-package
oem
Penalized least squares estimation using the Orthogonalizing EM (OEM) algorithm
Stars: ✭ 22 (+29.41%)
Mutual labels:  r-package

MetQy - metabolic query

MetQy is a R package to ease interfacing with the Kyoto Encyclopedia of Genes and Genomes (KEGG) database to query metabolic functions of genes and genomes. As discussed in detail in the associated paper (see above), MetQy can be used to convert key parts of the data contained in the KEGG database into R data structures, and perform analyses on this data. Below we provide a simple example of how MetQy can be used to analyze a set of given genomes for the presence of a set of given metabolic capabilities (i.e. modules).

Using MetQy

CITE US

Please cite:

    Andrea Martinez-Vernon, Fred Farrell, Orkun Soyer. MetQy - an R package to query metabolic functions of genes and genomes. 
        Bioinformatics, Volume 34, Issue 23, 01 December 2018, Pages 4134–4137, https://doi.org/10.1093/bioinformatics/bty447   

https://doi.org/10.1093/bioinformatics/bty447

Commercial use

MetQy is a free software for academic purposes. If interested in commercial use, please read the LICENCE and contact Warwick Ventures

Installation

There are three ways of installing the package:

  1. Run the following command within the R environment. Requires package devtools

    # > install.packages("devtools") # Uncomment if not previously installed 
    
    # Install MetQy - required dependent packages are installed automatically
    > devtools::install_github('OSS-Lab/MetQy',subdir = 'MetQy_1.1.0',dependencies = TRUE) # 
    
  2. Download the "MetQy_1.1.0" folder and create a 'MetQy_1.1.0.tar.gz' file using the 'tar' command. Then run the following commands within the R environment:

    # Manually install dependent packages - remove any that is already installed. Installing will replace local library.
    > install.packages(c("dplyr","ggplot2","gsubfn","reshape2","xtable"))
    
    # Install MetQy
    > install.packages('<path_to_directory>/MetQy_1.1.0.tar.gz',repos=NULL)
    > library(MetQy)
    
  3. Download 'MetQy_1.1.0.tgz' and run the following commands within the R environment:

    ## Note that this option might only be compatible with OS X. 
    
    # Manually install dependent packages - remove any that is already installed. Installing will replace local library.
    > install.packages(c("dplyr","ggplot2","gsubfn","reshape2","xtable"))
    
    # Install MetQy
    > install.packages('<path_to_directory>/MetQy_1.1.0.tgz',repos=NULL)  # QUICKER
    > library(MetQy)
    

More Info

Detailed information on MetQy functions, along with usage examples and a sample analyses can be found on associated Wiki page.

Wiki menu

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].