-
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.
* kipoi initial commit * fixxing issues * adding maintainers * test command should be in quotations * problems with pandas... * problems with pandas... * problems with libstdcxx-ng * gcc problem? * remove unecessary includes * removing comments * bumping to new 0.3.6 version
- Loading branch information
Showing
1 changed file
with
92 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,92 @@ | ||
{% set name = "kipoi" %} | ||
{% set version = "0.3.6" %} | ||
{% set file_ext = "tar.gz" %} | ||
{% set hash_type = "sha256" %} | ||
{% set hash_value = "6a2482e91c4fd168411bfb5c8c5ad7833669f6c02ad2af8f3ec21cac06541302" %} | ||
|
||
package: | ||
name: '{{ name|lower }}' | ||
version: '{{ version }}' | ||
|
||
source: | ||
fn: '{{ name }}-{{ version }}.{{ file_ext }}' | ||
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.{{ file_ext }} | ||
'{{ hash_type }}': '{{ hash_value }}' | ||
|
||
build: | ||
number: 0 | ||
entry_points: | ||
- kipoi = kipoi.__main__:main | ||
script: pip install 'related>=0.6.0' enum34 epc && python setup.py install --single-version-externally-managed --record=record.txt | ||
|
||
requirements: | ||
build: | ||
- git-lfs | ||
- gcc # [not osx] | ||
- llvm # [osx] | ||
- python | ||
- pip | ||
- setuptools | ||
- pyyaml | ||
- future | ||
- numpy | ||
- pandas | ||
- tqdm | ||
# - related >=0.6.0 | ||
# - enum34 | ||
- colorlog | ||
- cookiecutter | ||
- h5py | ||
run: | ||
- libgcc # [not osx] | ||
- git-lfs | ||
- python | ||
- pyyaml | ||
- future | ||
- numpy | ||
- pandas | ||
- tqdm | ||
# - related >=0.6.0 | ||
# - enum34 | ||
- colorlog | ||
- cookiecutter | ||
- h5py | ||
|
||
test: | ||
imports: | ||
- kipoi | ||
- kipoi.cli | ||
- kipoi.external | ||
- kipoi.external.related | ||
- kipoi.external.torch | ||
- kipoi.postprocessing | ||
- kipoi.postprocessing.variant_effects | ||
- kipoi.postprocessing.variant_effects.utils | ||
commands: | ||
- "kipoi --help" | ||
requires: | ||
# - libstdcxx-ng # [not osx] | ||
# - bumpversion | ||
# - cython | ||
# - epc | ||
# - jedi | ||
# - keras | ||
# - pytest >=3.3.1 | ||
# - pytest-cov | ||
# - pytest-pep8 | ||
# - pytest-xdist | ||
# - scikit-learn | ||
# - tensorflow | ||
# - wheel | ||
|
||
about: | ||
home: https://github.com/kipoi/kipoi | ||
license: MIT | ||
license_family: MIT | ||
summary: 'Kipoi: model zoo for genomics' | ||
description: 'Kipoi: model zoo for genomics. http://kipoi.org/' | ||
|
||
extra: | ||
recipe-maintainers: | ||
- visze | ||
- Avsecz |