forked from bioconda/bioconda-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.yaml
40 lines (34 loc) · 2.06 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package:
name: "ucsc-bedgraphtobigwig"
version: "332"
source:
url: "http://hgdownload.cse.ucsc.edu/admin/exe/userApps.v332.src.tgz" # [linux]
fn: "userApps.src.tgz" # [linux]
md5: "8c2663c7bd302a77cdf52b2e9e85e2cd" # [linux]
patches: # [linux]
- "include.patch" # [linux]
url: "http://hgdownload.cse.ucsc.edu/admin/exe/macOSX.x86_64/bedGraphToBigWig" # [osx]
fn: "bedGraphToBigWig" # [osx]
build: # [osx]
script: "mkdir -p $PREFIX/bin; cp bedGraphToBigWig $PREFIX/bin; chmod +x $PREFIX/bin/bedGraphToBigWig" # [osx]
requirements:
build:
- libpng # [linux]
- mysql # [linux]
- zlib # [linux]
- openssl # [linux]
- gcc
run: # [linux]
- libpng # [linux]
- mysql # [linux]
- zlib # [linux]
- openssl # [linux]
- libgcc
test:
commands:
# just check for existence, because the individual programs have no unified behavior
- which bedGraphToBigWig
about:
home: "http://hgdownload.cse.ucsc.edu/admin/exe/"
license: "varies; see http://genome.ucsc.edu/license"
summary: "Convert a bedGraph file to bigWig format."