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

porechop: Use the standard release #11399

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 0 additions & 4 deletions recipes/porechop/build.sh

This file was deleted.

6 changes: 6 additions & 0 deletions recipes/porechop/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
c_compiler:
- gcc # [linux]
- clang # [osx]
cxx_compiler:
- gxx # [linux]
- clangxx # [osx]
17 changes: 7 additions & 10 deletions recipes/porechop/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
# NOTE: Currently we require a modified version of Porechop with downgraded
# SeqAn to compile with the latest GCC available in conda (4.8).
#
# When GCC 4.9 or later is available on conda, the source metadata should be
# updated to point to the latest mainstream Porechop release.

{% set version = "0.2.3_seqan2.1.1" %}
{% set version = "0.2.3" %}

package:
name: porechop
version: {{ version }}

source:
url: https://github.com/rrwick/Porechop/archive/v0.2.3-C++11.tar.gz
sha256: 817371dceed77e583e387e9ca7c10214c0faff7c0a89320d60a66efdc6c0d35a
url: https://github.com/rrwick/Porechop/archive/v0.2.3.tar.gz
sha256: bfed39f82abc54f44fffd9b13d2121868084da7ac3d158ac9b9aa6fa0257f0f4

build:
number: 3
number: 4
skip: True # [py27]
entry_points:
- porechop = porechop.porechop:main
script: |
{{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv
{{ PYTHON }} -m unittest

requirements:
build:
Expand Down