-
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 bubblegun recipe #51903
Merged
Merged
Add bubblegun recipe #51903
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
d40401e
adding bubblegun recipe
fawaz-dabbaghieh 114ac12
Merge branch 'master' into bubblegun
fawaz-dabbaghieh 90a0e29
adding some fixes to what coderabbit suggested
fawaz-dabbaghieh 40696b8
adding back the run_export that coderabbitair specifically suggested …
fawaz-dabbaghieh 6394cbb
Update meta.yaml
mencian 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,39 @@ | ||
{% set name = "BubbleGun" %} | ||
{% set version = "1.1.9" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: "https://github.com/fawaz-dabbaghieh/bubble_gun/archive/refs/tags/v1.1.9.tar.gz" | ||
sha256: 005d61a1e5774dfec810e612c1b4c5ce6c8d15f80d131237590ef71f62704c94 | ||
|
||
|
||
build: | ||
number: 0 | ||
noarch: python | ||
script: {{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv | ||
run_exports: | ||
- {{ pin_compatible('BubbleGun', max_pin="x") }} | ||
|
||
requirements: | ||
host: | ||
- python >=3.6 | ||
- pip | ||
- setuptools | ||
run: | ||
- python >=3.6 | ||
|
||
test: | ||
commands: | ||
- BubbleGun -h | ||
|
||
about: | ||
home: "https://github.com/fawaz-dabbaghieh/bubble_gun" | ||
license: MIT | ||
license_family: MIT | ||
license_file: LICENSE | ||
summary: 'BubbleGun is a tool for detecting bubbles and superbubbles in GFA graphs, and reports them and their nested structures' | ||
doc_url: "https://github.com/fawaz-dabbaghieh/bubble_gun/blob/master/README.md" | ||
dev_url: "https://github.com/fawaz-dabbaghieh" | ||
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.
💡 Codebase verification
Package name needs to be lowercase to avoid conflicts
The package name should be lowercase to follow Bioconda naming conventions and avoid potential conflicts. Currently, there are similar packages in the ecosystem:
Please modify the package name in the recipe to use
bubblegun
(lowercase) consistently:{% set name = "BubbleGun" %}
to{% set name = "bubblegun" %}
run_exports
section to use lowercase:{{ pin_compatible('bubblegun', max_pin="x") }}
🔗 Analysis chain
Verify package name in bioconda-utils.
Since this is a Bioconda package, let's verify the package name doesn't conflict with existing packages.
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 39
Script:
Length of output: 261
🧰 Tools
🪛 yamllint
[error] 19-19: trailing spaces
(trailing-spaces)
[error] 1-1: syntax error: found character '%' that cannot start any token
(syntax)