-
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.
Add package doubletdetection (#51786)
* Added meta.yaml * clean up recipe --------- Co-authored-by: Joshua Zhuang <[email protected]>
- Loading branch information
1 parent
daa14f0
commit 890c4fd
Showing
1 changed file
with
66 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,66 @@ | ||
{% set name = "doubletdetection" %} | ||
{% set version = "4.2" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/doubletdetection-{{ version }}.tar.gz | ||
sha256: 77273d543a7c9b4f4e795b7b664c28bce0613b3a3a7c7f5137974012400a0a6c | ||
|
||
build: | ||
noarch: python | ||
script: {{ PYTHON }} -m pip install . -vvv --no-deps --no-build-isolation --no-cache-dir | ||
number: 0 | ||
run_exports: | ||
- {{ pin_subpackage('doubletdetection', max_pin="x") }} | ||
|
||
requirements: | ||
host: | ||
- python >=3.6,<4.0 | ||
- poetry >=1.0 | ||
- setuptools | ||
- poetry-core | ||
- pip | ||
run: | ||
- python >=3.6.1,<4.0 | ||
- anndata >=0.6 | ||
- ipywidgets | ||
- leidenalg | ||
- louvain | ||
- matplotlib-base >=3.1 | ||
- numpy >=1.14.2 | ||
- pandas >=0.22.0 | ||
- phenograph | ||
- scanpy >1.4.4 | ||
- scipy >=1.0.1 | ||
- tqdm | ||
run_constrained: | ||
- black >=20.8b1 | ||
- flake8 >=3.7.7 | ||
- furo * | ||
- myst-parser * | ||
- nbsphinx * | ||
- nbsphinx-link * | ||
- pre-commit >=2.7.1 | ||
- pytest >=4.4 | ||
- sphinx >=4.1,<4.4 | ||
- sphinx-autodoc-typehints * | ||
|
||
test: | ||
imports: | ||
- doubletdetection | ||
|
||
about: | ||
home: https://github.com/JonathanShor/DoubletDetection | ||
summary: Method to detect and enable removal of doublets from single-cell RNA-sequencing. | ||
license: MIT | ||
license_family: MIT | ||
license_file: LICENSE.txt | ||
dev_url: https://github.com/JonathanShor/DoubletDetection | ||
doc_url: https://doubletdetection.readthedocs.io | ||
|
||
extra: | ||
recipe-maintainers: | ||
- LeonHafner |