-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added meta.yaml * added sha sum * added run exports * changed meta * solved linting errors * changed git to source * version 0.2.13 * fixed meta * fixed liniting errors * fixed linting errors * clean up recipe --------- Co-authored-by: Joshua Zhuang <[email protected]>
- Loading branch information
1 parent
7664e5a
commit 445b837
Showing
1 changed file
with
52 additions
and
0 deletions.
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 |