-
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 Resistify #51675
Update Resistify #51675
Changes from 1 commit
1e52ef4
ff00ebd
6823b9b
d717879
83a1a10
28b7621
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 | ||
---|---|---|---|---|
@@ -1,13 +1,14 @@ | ||||
{% set name = "resistify" %} | ||||
{% set version = "0.4.0" %} | ||||
{% set version = "0.5.0" %} | ||||
{% set sha256 = "c23493ec622733fac905afa4c64b6ca3ce79afe44cf358433b0b81f115578e96" %} | ||||
|
||||
package: | ||||
name: "{{ name }}" | ||||
version: "{{ version }}" | ||||
|
||||
source: | ||||
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz | ||||
sha256: ba06333873fcb1e07820cb0895755b42a615d289437749846e280bc87d6abf2c | ||||
url: https://github.com/SwiftSeal/resistify/archive/refs/tags/v{{ version }}.tar.gz | ||||
sha256: {{ sha256 }} | ||||
|
||||
build: | ||||
noarch: python | ||||
|
@@ -21,16 +22,22 @@ build: | |||
requirements: | ||||
host: | ||||
- pip | ||||
- python >=3.9 | ||||
- python | ||||
- hatchling | ||||
run: | ||||
- python >=3.9 | ||||
- scikit-learn ==0.24.2 | ||||
- python | ||||
- scikit-learn==0.24.2 | ||||
- biopython | ||||
- numpy | ||||
- rich | ||||
- rich-argparse | ||||
- hmmer | ||||
- pytorch | ||||
- torchvision | ||||
- torchaudio | ||||
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. Fix trailing whitespace. Remove trailing spaces from the following lines:
Also applies to: 59-59 🧰 Tools🪛 yamllint
|
||||
- cpuonly | ||||
- fair-esm | ||||
- transformers==4.31.0 | ||||
- sentencepiece | ||||
|
||||
test: | ||||
imports: | ||||
|
@@ -40,5 +47,12 @@ test: | |||
|
||||
about: | ||||
home: https://github.com/swiftseal/resistify | ||||
doc_url: "https://github.com/SwiftSeal/resistify/blob/main/README.md" | ||||
license: MIT | ||||
license_file: LICENSE | ||||
summary: A resistance gene annotation tool | ||||
description: | | ||||
Resistify is a nucleotide-binding leucine rich repeat (NLR) annotation | ||||
program, for the purpose of identifying putative disease resistance | ||||
genes in plant genomes. | ||||
|
||||
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. Fix trailing whitespace. Remove the trailing whitespace on line 59. -
+ 📝 Committable suggestion
Suggested change
🧰 Tools🪛 yamllint
|
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.
Consider maintaining Python version constraint.
Removing the Python >=3.9 constraint might lead to compatibility issues, especially with the ML frameworks added as dependencies. Consider keeping version constraints to ensure compatibility.
Also applies to: 28-28