From edcf570d3848d8badebe75cfef7a55b35dd7468f Mon Sep 17 00:00:00 2001 From: fra Date: Fri, 18 Oct 2024 14:11:00 +0100 Subject: [PATCH] adding gene-trajectory-python --- recipes/gene-trajectory-python/meta.yaml | 55 ++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 recipes/gene-trajectory-python/meta.yaml diff --git a/recipes/gene-trajectory-python/meta.yaml b/recipes/gene-trajectory-python/meta.yaml new file mode 100644 index 0000000000000..7ad52d4e2a0f4 --- /dev/null +++ b/recipes/gene-trajectory-python/meta.yaml @@ -0,0 +1,55 @@ +{% set name = "gene-trajectory-python" %} +{% set version = "1.0.4" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/gene_trajectory-{{ version }}.tar.gz + sha256: 133e22dd167cbc83b8d4ecffa98bfc623f98584b91d2ecf31b915aeb11072b73 + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation + number: 0 + +requirements: + host: + - python >=3.9 + - flit-core >=3.2,<4 + - pip + run: + - python >=3.9 + - igraph >=0.10 + - matplotlib-base >=3.6 + - numpy >=1.25 + - pandas >=1.5 + - pot >=0.8.2 + - scanpy >=1.9.3 + - scikit-misc >=0.1.3 + - scikit-learn >=0.24 + - scipy >=1.8 + - seaborn >=0.13 + - tqdm >=4.64.1 + +test: + imports: + - gene_trajectory + commands: + - pip check + requires: + - pip + +about: + home: https://github.com/KlugerLab/GeneTrajectory-python + summary: Compute gene trajectories + license: MIT + license_file: LICENSE + doc_url: https://github.com/KlugerLab/GeneTrajectory-python + dev_url: https://github.com/KlugerLab/GeneTrajectory-python + + +extra: + recipe-maintainers: + - fra-pcmgf