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

Create meta.yaml for drug2cell #52452

Merged
merged 6 commits into from
Dec 2, 2024
Merged
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
36 changes: 36 additions & 0 deletions recipes/drug2cell/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{% set name = "drug2cell" %}
{% set version = "main" %}
{% set sha256 = "a6353f989f92f05b36972d42795f7f071245d351bf05027dc7e3e4a074ea5bb8" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/teichlab/drug2cell/archive/main.tar.gz
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use a release/tag!
main is a moving target. Two separate builds would produce two different outouts.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your response!
I changed the source URL

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

requirements:
host:
- python
- pip
run:
- python
- anndata
- pandas
- numpy
- statsmodels
- scipy
- blitzgsea

#test:
#commands:
#- drug2cell --version
about:
home: https://github.com/teichlab/drug2cell/
license: MIT
license_file: LICENSE
summary: "This is a collection of utility functions for gene group activity evaluation in scanpy"

Loading