-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
New recipe: Slamdunk #10199
New recipe: Slamdunk #10199
Changes from 24 commits
c8527ad
d1e90d9
598fc0c
f443d23
3ab535d
4824c5e
474750b
d0f3efd
aa64e0a
c9bf370
c50ad33
2f61e64
5512e02
e46f313
67bc38d
c922f79
bad7c18
cf79789
792382f
6171462
32889cd
af9744c
f085d88
e877f7a
6e3a365
0b90510
ef7375a
a320434
1e84c0c
173857d
d9c9176
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
python setup.py install --single-version-externally-managed --record=record.txt | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
{% set version = "0.3.1" %} | ||
{% set sha256 = "2cc5d561ef2c3014595b646858ae2fa76c3d3972a2b624dd5d01eb82ac239c28" %} | ||
|
||
package: | ||
name: slamdunk | ||
version: {{ version }} | ||
|
||
source: | ||
sha256: '{{sha256}}' | ||
url: "https://github.com/t-neumann/slamdunk/archive/v0.3.1.tar.gz" | ||
|
||
build: | ||
entry_points: | ||
- slamdunk=slamdunk.slamdunk:run | ||
- alleyoop=slamdunk.alleyoop:run | ||
- splash=slamdunk.splash:run | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('cxx') }} | ||
- cmake | ||
- wget | ||
|
||
host: | ||
- python=2.7 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please skip python 3 build in the build/skip section. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should suffice right?
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Whenever I skip python3 build, it won't build my package anymore. Neither
nor
works. So I'm leaving this for now. |
||
- setuptools | ||
- joblib >=0.9.4 | ||
- pybedtools >=0.6.4 | ||
- intervaltree >=2.1.0 | ||
- pandas >=0.13.1 | ||
- biopython >=1.63 | ||
- pysam >=0.8.3 | ||
- cython >=0.20.1 | ||
- zlib | ||
- openjdk | ||
- r-base | ||
- ncurses | ||
- zlib | ||
- bzip2 | ||
- curl | ||
- xz | ||
- libdeflate | ||
run: | ||
- python=2.7 | ||
- joblib >=0.9.4 | ||
- pybedtools >=0.6.4 | ||
- intervaltree >=2.1.0 | ||
- pandas >=0.13.1 | ||
- biopython >=1.63 | ||
- pysam >=0.8.3 | ||
- cython >=0.20.1 | ||
- zlib | ||
- openjdk | ||
- r-base | ||
- ncurses | ||
- zlib | ||
- bzip2 | ||
- curl | ||
- xz | ||
- libdeflate | ||
|
||
test: | ||
imports: | ||
- slamdunk | ||
- slamdunk.contrib | ||
- slamdunk.dunks | ||
- slamdunk.plot | ||
- slamdunk.slamseq | ||
- slamdunk.test | ||
- slamdunk.utils | ||
commands: | ||
- slamdunk --help | ||
- alleyoop --help | ||
- splash --help | ||
|
||
about: | ||
home: "http://t-neumann.github.io/slamdunk" | ||
license: GNU Affero General Public License v3 (AGPLv3) | ||
license_file: LICENSE | ||
summary: "SlamDunk is a novel, fully automated software tool for automated, robust, scalable and reproducible SLAMseq data analysis." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please use pip install, have a look here:
bioconda-recipes/recipes/pymzml/0.7.5/meta.yaml
Line 12 in 31f2bc3