-
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
Add pyhmmsearch #51419
Closed
Closed
Add pyhmmsearch #51419
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
410aef6
Add pyhmmsearch
apcamargo d50a150
Add noarch
apcamargo 5a69316
Change entrypoints
apcamargo 4498d70
Change entrypoints
apcamargo 306ba88
edit run_exports
mencian d1d836d
Change entrypoints
apcamargo 63e7ca7
try just import tests
mencian 88ac77a
Merge branch 'master' into pyhmmsearch
mencian f49a656
Merge branch 'master' into pyhmmsearch
mencian be3b62d
Update version
apcamargo 5d13e07
Merge branch 'bioconda:master' into pyhmmsearch
apcamargo 2ec368e
Add version constraints
apcamargo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{% set name = "pyhmmsearch" %} | ||
{% set version = "2024.10.18" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/pyhmmsearch-{{ version }}.tar.gz | ||
sha256: 50c150659a45934b5b69a0459038bb1c304612951c67bd046eb72e5102b29692 | ||
|
||
build: | ||
script: {{ PYTHON }} -m pip install . -vvv --no-deps --no-build-isolation --no-cache-dir | ||
number: 0 | ||
noarch: python | ||
entry_points: | ||
- pyhmmsearch=pyhmmsearch.pyhmmsearch:main | ||
- reformat_pyhmmsearch=pyhmmsearch.reformat_pyhmmsearch:main | ||
- serialize_hmm_models=pyhmmsearch.serialize_hmm_models:main | ||
run_exports: | ||
- {{ pin_subpackage("pyhmmsearch", max_pin=None) }} | ||
|
||
requirements: | ||
host: | ||
- python | ||
- pip | ||
run: | ||
- python | ||
- pyhmmer >=0.10.12 | ||
- pandas >= 2 | ||
- tqdm >= 4 | ||
|
||
test: | ||
imports: | ||
- pyhmmsearch | ||
commands: | ||
- pyhmmsearch --help | ||
- reformat_pyhmmsearch --help | ||
- serialize_hmm_models --help | ||
|
||
about: | ||
home: "https://github.com/new-atlantis-labs/pyhmmsearch-stable" | ||
summary: "Fast implementation of HMMSEARCH optimized for high-memory systems using PyHmmer." | ||
license: MIT | ||
license_family: MIT | ||
license_file: LICENSE | ||
dev_url: "https://github.com/new-atlantis-labs/pyhmmsearch-stable" | ||
doc_url: "https://github.com/new-atlantis-labs/pyhmmsearch-stable/blob/main/README.md" |
File renamed without changes.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Reconsider the use of
--no-deps --no-build-isolation
flags.The build script uses
--no-deps --no-build-isolation
flags, which may prevent necessary dependencies from being installed during the build process. This could lead to build failures or runtime issues if required packages are not present in the environment.Consider removing these flags unless there's a specific reason for their inclusion. If they are necessary, please provide a justification in a comment.
📝 Committable suggestion