|
1 | 1 | {% set name = "vafator" %} |
2 | | -{% set version = "2.2.2" %} |
| 2 | +{% set version = "3.0.0" %} |
3 | 3 |
|
4 | 4 | package: |
5 | | - name: "{{ name|lower }}" |
6 | | - version: "{{ version }}" |
| 5 | + name: {{ name }} |
| 6 | + version: {{ version }} |
7 | 7 |
|
8 | 8 | source: |
9 | | - url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" |
10 | | - sha256: 2390443d1e51466c159abd8b7c58de1b13170a4ce90ea252dc6164c33215b34f |
| 9 | + url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz |
| 10 | + sha256: aacc929d8c995a34dd6195e29355cd6f1fa90903e877fcf2f1a09d64e4a4e325 |
11 | 11 |
|
12 | 12 | build: |
13 | 13 | number: 0 |
14 | 14 | noarch: python |
15 | 15 | entry_points: |
16 | | - - vafator=vafator.command_line:annotator |
17 | | - - multiallelics-filter=vafator.command_line:multiallelics_filter |
18 | | - - vafator2decifer=vafator.command_line:vafator2decifer |
19 | | - - hatchet2bed=vafator.command_line:hatchet2bed |
20 | | - script: "{{ PYTHON }} -m pip install . -vv" |
| 16 | + - vafator = vafator.command_line:annotator |
| 17 | + - multiallelics-filter = vafator.command_line:multiallelics_filter |
| 18 | + - vafator2decifer = vafator.command_line:vafator2decifer |
| 19 | + - hatchet2bed = vafator.command_line:hatchet2bed |
| 20 | + script: {{ PYTHON }} -m pip install . --no-deps --no-build-isolation --no-cache-dir -vvv |
21 | 21 | run_exports: |
22 | | - - {{ pin_subpackage('vafator', max_pin="x") }} |
| 22 | + - {{ pin_subpackage(name, max_pin="x") }} |
23 | 23 |
|
24 | 24 | requirements: |
25 | 25 | host: |
26 | | - - cyvcf2 >=0.30.14,<0.31 |
27 | | - - pandas >=1.3.3,<1.4 |
| 26 | + - python >=3.11,<3.12 |
28 | 27 | - pip |
29 | | - - pysam >=0.19.1,<0.20 |
30 | | - - python >=3.7,<=3.9 |
31 | | - - pybedtools >=0.9.0,<0.10 |
32 | | - - logzero >=1.7.0,<1.8 |
33 | | - - scipy >=1.8.1,<1.9 |
34 | 28 | run: |
35 | | - - cyvcf2 >=0.30.14,<0.31 |
36 | | - - pandas >=1.3.3,<1.4 |
37 | | - - pysam >=0.19.1,<0.20 |
38 | | - - python >=3.7,<=3.9 |
39 | | - - pybedtools >=0.9.0,<0.10 |
40 | | - - logzero >=1.7.0,<1.8 |
41 | | - - scipy >=1.8.1,<1.9 |
| 29 | + - python >=3.11,<3.12 |
| 30 | + - pandas >=3.0.1 |
| 31 | + - pysam >=0.21.0 |
| 32 | + - cyvcf2 >=0.31,<0.32 |
| 33 | + - logzero >=1.7.0,<2 |
| 34 | + - pybedtools >=0.12.0,<0.13 |
| 35 | + - numpy >=2.4.3 |
| 36 | + - scipy >=1.17.1,<2 |
| 37 | + - setuptools |
42 | 38 |
|
43 | 39 | test: |
44 | 40 | imports: |
|
59 | 55 | alignment files. We implement a set of basic coverage annotations and also more sophisticated published |
60 | 56 | annotations used to assess the quality of every variant call." |
61 | 57 | doc_url: "https://github.com/tron-bioinformatics/vafator" |
62 | | - dev_url: |
| 58 | + dev_url: "https://github.com/tron-bioinformatics/vafator" |
63 | 59 |
|
64 | 60 | extra: |
65 | 61 | recipe-maintainers: |
|
0 commit comments