-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Expand file tree
/
Copy pathmeta.yaml
More file actions
93 lines (86 loc) · 2.24 KB
/
Copy pathmeta.yaml
File metadata and controls
93 lines (86 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{% set version = "0.28" %}
package:
name: r-nmf
version: '{{ version }}'
source:
url:
- {{ cran_mirror }}/src/contrib/NMF_{{ version }}.tar.gz
- {{ cran_mirror }}/src/contrib/Archive/NMF/NMF_{{ version }}.tar.gz
sha256: 77dfe7b323ee5e5f8801851d1d4356932e2ffc810a7ac7faf5542cbfd92eeefb
build:
number: 0
rpaths:
- lib/R/lib/
- lib/
run_exports:
- {{ pin_subpackage('r-nmf', max_pin="x.x") }}
requirements:
build:
- cross-r-base {{ r_base }} # [build_platform != target_platform]
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- {{ stdlib('c') }}
- make
host:
# Depends:
- r-base >=3.0.0
- r-registry
- r-rngtools >=1.2.3
- r-cluster
# Imports:
- r-stringr >=1.0.0
- r-digest
- r-gridbase
- r-colorspace
- r-rcolorbrewer
- r-foreach
- r-doparallel
- r-ggplot2
- r-reshape2
- bioconductor-biobase
- r-biocmanager
run:
# Depends:
- r-base >=3.0.0
- r-registry
- r-rngtools >=1.2.3
- r-cluster
# Imports:
- r-stringr >=1.0.0
- r-digest
- r-gridbase
- r-colorspace
- r-rcolorbrewer
- r-foreach
- r-doparallel
- r-ggplot2
- r-reshape2
- bioconductor-biobase
- r-biocmanager
test:
commands:
- $R -e "library('NMF')"
about:
home: https://renozao.github.io/NMF/
dev_url: https://github.com/renozao/NMF
doc_url: https://cran.r-project.org/package=NMF
license: GPL-2.0-or-later
license_family: GPL3
license_file:
- '{{ environ["PREFIX"] }}/lib/R/share/licenses/GPL-2'
- '{{ environ["PREFIX"] }}/lib/R/share/licenses/GPL-3'
summary: Framework to perform Non-negative Matrix Factorization (NMF).
description: |
Provides a framework to perform Non-negative Matrix Factorization (NMF). The package
implements a set of already published algorithms and seeding methods, and provides a
framework to test, develop and plug new/custom algorithms. Most of the built-in algorithms
have been optimized in C++, and the main interface function provides an easy way of
performing parallel computations on multicore machines.
extra:
skip-lints:
- in_other_channels
recipe-maintainers:
- tfenne
additional-platforms:
- linux-aarch64
- osx-arm64