-
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 clust * Clean recipe * Add "noarch" * Add DOI * Add build file * Python 2.7 * Fix scikit-learn dependency * Trigger new build
- Loading branch information
Showing
2 changed files
with
52 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,2 @@ | ||
#!/bin/bash | ||
$PYTHON setup.py install --single-version-externally-managed --record=record.txt |
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,50 @@ | ||
{% set name = "clust" %} | ||
{% set version = "1.8.4" %} | ||
|
||
package: | ||
name: "{{ name|lower }}" | ||
version: "{{ version }}" | ||
|
||
source: | ||
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz | ||
sha256: 1855b333fc18f7d788c640c678800bf032c466e565fe953bd7057f794a04adba | ||
|
||
build: | ||
number: 0 | ||
skip: True # [not py27] | ||
|
||
requirements: | ||
host: | ||
- joblib | ||
- matplotlib | ||
- numpy | ||
- pandas | ||
- pip | ||
- portalocker | ||
- python | ||
- scipy | ||
- scikit-learn | ||
- sompy | ||
run: | ||
- joblib | ||
- matplotlib | ||
- numpy | ||
- pandas | ||
- portalocker | ||
- python | ||
- scipy | ||
- scikit-learn | ||
- sompy | ||
|
||
test: | ||
imports: | ||
- clust | ||
|
||
about: | ||
home: https://github.com/baselabujamous/clust | ||
license: University of Oxford Academic Use Licence | ||
summary: Optimised consensus clustering of multiple heterogeneous datasets. | ||
|
||
extra: | ||
identifiers: | ||
- doi:10.1186/s13059-018-1536-8 |