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

Hardcode htslib and samtools versions in pysam #1041

Merged
merged 2 commits into from
Mar 14, 2016
Merged
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
15 changes: 7 additions & 8 deletions recipes/pysam/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@ source:
md5: 66913000ff50817bdcf56dfd3a52396f

build:
number: 1
number: 2

requirements:
build:
- gcc # [linux]
- llvm # [osx]
- htslib
- samtools
- bcftools
- htslib ==1.3
- samtools ==1.3
- bcftools ==1.3
- cython
- python
- setuptools

run:
- libgcc # [linux]
- htslib
- samtools
- bcftools
- htslib ==1.3
- samtools ==1.3
- bcftools ==1.3
- python

test:
Expand All @@ -37,4 +37,3 @@ about:
home: https://github.com/pysam-developers/pysam
license: MIT
summary: "Pysam is a python module for reading and manipulating Samfiles. It is a lightweight wrapper of the samtools C-API. Pysam also includes an interface for tabix."