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 phenograph package #51795

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
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
46 changes: 46 additions & 0 deletions recipes/phenograph/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{% set name = "PhenoGraph" %}
{% set version = "1.5.7" %}

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

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/PhenoGraph-{{ version }}.tar.gz
sha256: 46b28f9e043a00deba53bb5f35dd84793669ab2bd4ce78900bf7f15f1321515a
LeonHafner marked this conversation as resolved.
Show resolved Hide resolved

build:
noarch: python
script: {{ PYTHON }} -m pip install . -vvv --no-deps --no-build-isolation --no-cache-dir
number: 0
run_exports:
- {{ pin_subpackage('phenograph', max_pin="x") }}

requirements:
host:
- python >=3.6
- pip
run:
- python >=3.6
- leidenalg >=0.8.2setuptools,>=18.0.1numpy,>=1.12scipy,>=1.5.1scikit_learn,>=0.17psutil,>4
- setuptools >=18.0.1
- numpy >=1.12
- scipy >=1.5.1
- scikit-learn >=0.17
- psutil >4
LeonHafner marked this conversation as resolved.
Show resolved Hide resolved

test:
imports:
- phenograph

about:
home: https://github.com/dpeerlab/PhenoGraph.git
summary: Graph-based clustering for high-dimensional single-cell data
license: MIT
license_family: MIT
license_file: LICENSE
dev_url: https://github.com/dpeerlab/phenograph

extra:
recipe-maintainers:
- LeonHafner