From 1f0a2b1365b6de3005f57bc0d7075f2792c74d94 Mon Sep 17 00:00:00 2001 From: Natasha Pavlovikj Date: Wed, 28 Nov 2018 17:35:09 -0600 Subject: [PATCH] Add recipe for ICED (#12406) --- recipes/iced/meta.yaml | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 recipes/iced/meta.yaml diff --git a/recipes/iced/meta.yaml b/recipes/iced/meta.yaml new file mode 100644 index 0000000000000..b400c6e07fcec --- /dev/null +++ b/recipes/iced/meta.yaml @@ -0,0 +1,42 @@ +{% set name = "iced" %} +{% set version = "0.5.0" %} +{% set sha256 = "6a227483989bb3522b499f4a221bf1aff3f3e2439da922d7383a3d2b02c2ca9b" %} + +package: + name: "{{ name }}" + version: "{{ version }}" + +source: + url: https://github.com/hiclib/{{ name }}/archive/v{{ version }}.tar.gz + sha256: {{ sha256 }} + +build: + number: 0 + script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed" + +requirements: + build: + - {{ compiler('cxx') }} + host: + - pip + - python + - numpy >=1.9 + run: + - python + - numpy >=1.9 + - scipy >=0.14 + - pandas + - scikit-learn + - cython + - matplotlib + +test: + imports: + - iced + +about: + home: https://github.com/hiclib/iced + license: new BSD + license_family: BSD + license_file: COPYING + summary: "The python module iced implements the ICE normalization of hic data."