-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmeta.yaml
48 lines (41 loc) · 1012 Bytes
/
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
{% set name = "samsum" %}
{% set version = "0.1.2" %}
package:
name: "{{ name }}"
version: "{{ version }}"
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 85ff2356d96f7c22d4067e947061beacd48784448d2b809313c938ac735873a5
build:
number: 0
skip: True # [py2k]
entry_points:
- samsum = samsum.__main__:main
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "
requirements:
build:
- {{ compiler('cxx') }}
host:
- numpy
- pip
- pytest
- python
run:
- {{ pin_compatible('numpy') }}
- pytest
- python
test:
imports:
- samsum
commands:
- {{ name }} --help
- {{ name }} info
about:
home: https://github.com/hallamlab/samsum
license: GNU General Public v3 (GPLv3)
license_family: GPL3
license_file: LICENSE
summary: A light-weight python package for summarizing sequence coverage from SAM and BAM files
extra:
recipe-maintainers:
- cmorganl