Skip to content
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 recipe for blitzgsea #26427

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions recipes/blitzgsea/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{% set name = "blitzgsea" %}
{% set version = "1.3.40" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/blitzgsea-{{ version }}.tar.gz
sha256: 88df2c96dd52c4d29cacf69aa9fff628f8e3efcb54f121ce2df68cb842361a64

build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- python >=3.6
- pip
run:
- python >=3.6
- pandas >=1.1.5
- numpy
- scikit-learn
- tqdm
- statsmodels
- mpmath
- matplotlib-base

test:
imports:
- blitzgsea
commands:
- pip check
requires:
- pip

about:
home: https://github.com/maayanlab/blitzgsea
summary: Package for fast and accurate calculation of Gene Set Enrichment Analysis (GSEA) similar to prerank using gamma distribution approximation.
license: Apache-2.0
license_file: LICENSE

extra:
recipe-maintainers:
- wxicu