Skip to content

Commit

Permalink
[ci skip] Merge PR 19494
Browse files Browse the repository at this point in the history
Merge PR bioconda#19494, commits were: 
 * Update meta.yaml
 * incrementing version and sha256 that may fix clang compiling
 * incrementing version that may fix clang compiling
 * changing entry point
 * Removing license file. It is MIT and on GitHub and in the tarball
 * Adding a c++ compiler
 * Adding a compiler
 * Adding a compiler
 * Adding an uppercase name
 * limiting python versions
 * adding noarch, but not sure if it is correct since we have a C++ script to compile
 * Adding PhiSpy to conda
 * Merge pull request #1 from bioconda/master

Merging new work
  • Loading branch information
linsalrob authored and BiocondaBot committed Dec 31, 2019
1 parent 1c41860 commit c49e526
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions recipes/phispy/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{% set name = "phispy" %}
{% set ucname = "PhiSpy" %}
{% set version = "3.7.8" %}

package:
name: "{{ name|lower }}"
version: "{{ version }}"

source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ ucname }}-{{ version }}.tar.gz"
sha256: "81eedc6fe00bd68ed4e0fd257c9e800395e89a3f7461643872781c12def75052"

build:
number: 0
skip: True # [py27]
script: "{{ PYTHON }} -m pip install . --no-deps -vv "

requirements:
build:
- {{ compiler('cxx') }}
host:
- pip
- python
run:
- biopython >=1.74
- numpy >=1.17.0
- python
- scikit-learn >=0.21.3

test:
imports:
- PhiSpyModules
commands:
- PhiSpy.py -v

about:
home: "https://github.com/linsalrob/PhiSpy"
license: "MIT License"
license_family: "MIT"
summary: "Prophage finder using multiple metrics"
doc_url: "https://github.com/linsalrob/PhiSpy/blob/master/README.md"
dev_url: "https://github.com/linsalrob/PhiSpy/"

extra:
recipe-maintainers:
- linsalrob
identifiers:
- doi:10.5281/zenodo.3475717

0 comments on commit c49e526

Please sign in to comment.