-
Notifications
You must be signed in to change notification settings - Fork 6
/
meta.yaml
62 lines (53 loc) · 1.1 KB
/
meta.yaml
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
{% set version = "3.4.0" %}
package:
name: pygna
version: {{ version | replace("-", "")}}
source:
path: .
build:
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "
entry_points:
- pygna = pygna.cli:main
requirements:
host:
- python =3.8
- pip
- setuptools
- numpy >=1.16
- scipy
- matplotlib
- pyyaml
- pytables >=3.4.4
- seaborn >=0.9
- palettable
- networkx ==2.3
- argh
- mygene
run:
- python =3.8
- numpy >=1.16
- scipy
- matplotlib
- pyyaml
- pytables >=3.4.4
- seaborn >=0.9
- palettable
- networkx ==2.3
- argh
- mygene
test:
commands:
- pygna -h
about:
home: https://github.com/stracquadaniolab/pygna
summary: A Python Package for Geneset Network Analysis
license: MIT
license_file: LICENSE
dev_url: https://github.com/stracquadaniolab/pygna
doc_url: https://pygna.readthedocs.io/
description: |
PyGNA is a unified framework for network analysis of high-throughput experiments.
extra:
recipe-maintainers:
- stracquadaniolab