Skip to content

Commit

Permalink
Add compare-reads (#13635)
Browse files Browse the repository at this point in the history
* Add compare-reads

* Add python run reqs

Should be brought in by pysm, but I see this in the build logs:
```
WARNING (compare-reads,lib/python2.7/site-packages/compare_reads/_compare_reads.so): Needed DSO lib/libpython2.7.so.1.0 found in ['python']
WARNING (compare-reads,lib/python2.7/site-packages/compare_reads/_compare_reads.so): .. but ['python'] not in reqs/run, i.e. it is overlinked (likely) or a missing dependency (less likely)
```
  • Loading branch information
mvdbeek authored and stain committed Feb 15, 2019
1 parent 4c7e5c4 commit b2213a0
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
2 changes: 2 additions & 0 deletions recipes/compare-reads/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
$PYTHON setup.py install
32 changes: 32 additions & 0 deletions recipes/compare-reads/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package:
name: compare-reads
version: 0.0.1

source:
url: https://github.com/mvdbeek/pysam-compare-reads/archive/v0.0.1.tar.gz
sha256: e03be74b6d04d96950fa5f2932ebe58c38b68a1b2dcff04ed81729f650b22ec7

build:
number: 0

requirements:
build:
- {{ compiler('c') }}
host:
- python
- pysam
- setuptools
- cython

run:
- python
- pysam

test:
imports:
- compare_reads

about:
home: https://github.com/mvdbeek/pysam-compare-reads
license: MIT
summary: "cythonized function to compare reads by name."

0 comments on commit b2213a0

Please sign in to comment.