Skip to content

Commit

Permalink
Merge pull request #20 from xtrojak/conda-env
Browse files Browse the repository at this point in the history
conda env
  • Loading branch information
martenson authored Aug 31, 2021
2 parents 6e0b74e + c6d58d2 commit 544fb97
Show file tree
Hide file tree
Showing 3 changed files with 121 additions and 0 deletions.
25 changes: 25 additions & 0 deletions conda/environment-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: recetox-aplcms-build
channels:
- conda-forge
- bioconda
- defaults
dependencies:
- anaconda-client
- conda-build
- conda-verify
- r-base >=3.5
- r-mass
- r-rgl
- bioconductor-mzR
- r-splines2
- r-doparallel
- r-foreach
- r-iterators
- r-snow
- r-gbm
- r-e1071
- r-randomForest
- r-rocr
- r-rocs
- r-rcpp
- r-arrow
24 changes: 24 additions & 0 deletions conda/environment-dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: recetox-aplcms
channels:
- conda-forge
- bioconda
- defaults
dependencies:
- r-base >= 3.5
- r-devtools
- r-biocmanager
- r-mass
- r-rgl
- bioconductor-mzR
- r-splines2
- r-doparallel
- r-foreach
- r-iterators
- r-snow
- r-gbm
- r-e1071
- r-randomForest
- r-rocr
- r-rocs
- r-rcpp
- r-arrow
72 changes: 72 additions & 0 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{% set name = "recetox-aplcms" %}
{% set version = "0.9.3" %}
{% set github = "https://github.com/RECETOX/recetox-aplcms" %}

package:
name: "r-{{ name|lower }}"
version: "{{ version }}"

source:
path: ..

build:
number: 0
noarch: generic
rpaths:
- lib/
- lib/R/lib/
script: R CMD INSTALL --build .


requirements:
host:
- r-base >=3.5
- r-mass
- r-rgl
- bioconductor-mzR
- r-splines2
- r-doparallel
- r-foreach
- r-iterators
- r-snow
- r-gbm
- r-e1071
- r-randomForest
- r-rocr
- r-rocs
- r-rcpp

run:
- r-base >=3.5
- r-devtools
- r-biocmanager
- r-mass
- r-rgl
- bioconductor-mzR
- r-splines2
- r-doparallel
- r-foreach
- r-iterators
- r-snow
- r-gbm
- r-e1071
- r-randomForest
- r-rocr
- r-rocs
- r-rcpp
- r-arrow

test:
commands:
- $R -e "library(recetox.aplcms)"

about:
home: "{{ github }}"
license: GPL2.0
summary: apLCMS is a software which generates a feature table from a batch of LC/MS spectra. A modified fork of the original apLCMS by Tianwei Yu.

extra:
maintainers:
- RECETOX/conda
identifiers:
- doi:10.1093/bioinformatics/btp291

0 comments on commit 544fb97

Please sign in to comment.