-
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
Pegas #49759
Merged
Merged
Pegas #49759
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
8462ad7
added meta.yaml
liviurotiul a0f8f63
added sha sum
liviurotiul a11c9fc
added run exports
liviurotiul bc0b071
Merge branch 'master' into pegas
liviurotiul 969253e
changed meta
liviurotiul ddbbe76
Merge branch 'pegas' of https://github.com/liviurotiul/bioconda-recip…
liviurotiul dabe2d7
Merge branch 'bioconda:master' into pegas
liviurotiul c76205c
Merge branch 'bioconda:master' into pegas
liviurotiul 1e5fa2d
solved linting errors
liviurotiul cf267e4
changed git to source
liviurotiul 3ebc55e
Merge branch 'master' into pegas
liviurotiul 1030457
version 0.2.13
liviurotiul 810a3c5
Merge branch 'pegas' of https://github.com/liviurotiul/bioconda-recip…
liviurotiul 4f34548
fixed meta
liviurotiul 2e58da7
Merge branch 'master' into pegas
liviurotiul 855f109
fixed liniting errors
liviurotiul f602251
fixed linting errors
liviurotiul 790cee0
Merge branch 'master' into pegas
liviurotiul 3e4b96e
clean up recipe
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,52 @@ | ||
{% set name = "pegas" %} | ||
{% set version = "0.2.13" %} | ||
|
||
package: | ||
name: {{ name }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/liviurotiul/PeGAS/archive/refs/tags/v{{ version }}.tar.gz | ||
sha256: 2c028caa90bb8825e1c64f2ca5bd5e80f82f6db1cb5c4609bed86157c954c1f8 | ||
|
||
build: | ||
number: 0 | ||
noarch: python | ||
script: "{{ PYTHON }} -m pip install . --no-deps --no-build-isolation --no-cache-dir -vvv" | ||
run_exports: | ||
- {{ pin_subpackage(name, max_pin="x.x") }} | ||
|
||
requirements: | ||
build: | ||
- python >=3.10 | ||
- pip | ||
- setuptools | ||
run: | ||
- python >=3.10 | ||
- plotly >=5.0.0 | ||
- pandas >=1.3.5 | ||
- tqdm >=4.66.5 | ||
- matplotlib-base >=3.9.2 | ||
- networkx >=3.2 | ||
- snakemake-minimal >=7.32.4 | ||
- beautifulsoup4 >=4.12.3 | ||
|
||
test: | ||
commands: | ||
- {{ name }} --help | ||
|
||
about: | ||
home: https://github.com/liviurotiul/PeGAS | ||
license: GPL-2.0-or-later | ||
license_family: GPL | ||
license_file: LICENSE | ||
summary: "PeGAS is a Snakemake pipeline for genome analysis" | ||
description: | | ||
PeGAS is a Snakemake pipeline for genome analysis. It is designed to be | ||
lightweight, easy to install, and easy to use. | ||
doc_url: https://github.com/liviurotiul/PeGAS#readme | ||
dev_url: https://github.com/liviurotiul/PeGAS/issues | ||
|
||
extra: | ||
recipe-maintainers: | ||
- liviurotiul |
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.
🛠️ Refactor suggestion
Enhance test coverage for better package validation.
While running the help command is a good basic test to ensure the package is installed correctly, it doesn't verify the package's functionality.
Consider adding more comprehensive tests, such as:
For example:
These additional tests would provide more confidence in the package's functionality after installation. Please adjust the suggested tests according to your package's specific features and requirements.