Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pdivas recipe #52089

Merged
merged 8 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions recipes/pdivas/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 Ryo Kurosawa

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
38 changes: 21 additions & 17 deletions recipes/pdivas/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,44 +1,48 @@
{% set name = "pdivas" %}
{% set version = "1.1.0" %}
{% set version = "1.2.0" %}

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

source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: ca33dc31ecfa9c505105a25146ea8efcdddb1a13cc1ac990c29561cc911d74b9
sha256: 4a2234564557622c5bd2213478956c4a4858ba6768251d24ee43a4fc7550f721

build:
number: 0
noarch: python
entry_points:
- pdivas=pdivas.__main__:main
script: "{{ PYTHON }} -m pip install . -vv"
noarch: python
script: {{ PYTHON }} -m pip install . -vv
number: 0
run_exports:
- {{ pin_subpackage('pdivas', exact=True) }}

requirements:
host:
- pip
- python
- pip
run:
- cyvcf2
- numpy
- pandas
- python
- scikit-learn
- pandas >=1.3
- numpy >=1.21
- cyvcf2 >=0.11
- scikit-learn =1.0.2

test:
imports:
- pdivas
commands:
- pip check
- pdivas --help
requires:
- pip

about:
home: "https://github.com/shiro-kur/PDIVAS"
license: MIT
license_family: OTHER
license_file:
summary: "PDIVAS: Pathogenicity predictor of Deep-Intronic Variants causing Aberrant Splicing"
home: https://github.com/shiro-kur/PDIVAS
summary: 'PDIVAS: Pathogenicity predictor of Deep-Intronic Variants causing Aberrant Splicing'
license: 'MIT'
license_file: LICENSE

extra:
recipe-maintainers:
Expand Down
Loading