-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
Update pdivas recipe #52089
Changes from 4 commits
a2e4f2e
96a085d
c9340e6
9105152
4ea5677
7607bef
98188ef
d7abd22
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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. |
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
@@ -1,45 +1,49 @@ | ||||||||||
{% 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 | ||||||||||
url: https://files.pythonhosted.org/packages/fc/7e/281e2053ea00eae24162211af598c247d3c5e4fb2c0d043e24c2e19897e6/pdivas-1.2.0.tar.gz | ||||||||||
sha256: 4a2234564557622c5bd2213478956c4a4858ba6768251d24ee43a4fc7550f721 | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Use templated PyPI URL for better maintainability The direct PyPI URL should be replaced with the templated version for better maintainability. - url: https://files.pythonhosted.org/packages/fc/7e/281e2053ea00eae24162211af598c247d3c5e4fb2c0d043e24c2e19897e6/pdivas-1.2.0.tar.gz
+ url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" 📝 Committable suggestion
Suggested change
|
||||||||||
|
||||||||||
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 | ||||||||||
home: http://github.com/account/repository | ||||||||||
summary: 'PDIVAS: Pathogenicity predictor of Deep-Intronic Variants causing Aberrant Splicing' | ||||||||||
license: 'MIT' | ||||||||||
license_file: | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
summary: "PDIVAS: Pathogenicity predictor of Deep-Intronic Variants causing Aberrant Splicing" | ||||||||||
|
||||||||||
extra: | ||||||||||
recipe-maintainers: | ||||||||||
- shiro-kur | ||||||||||
- AddYourGitHubIdHere | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This does not look correct? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you use the old URL-template?