-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New: cgpbigwig (BigWig manipulation); Update: bcbio (#11347)
- cgpbigwig (https://github.com/cancerit/cgpBigWig) provides bigwig generation and manipulation command line tools including bam to bigwig conversion. - bcbio: fixes for QC on variants and peddy for CWL runs
- Loading branch information
Showing
3 changed files
with
60 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
mkdir -p $PREFIX/bin | ||
make -C c clean | ||
make -C c prefix=$PREFIX HTSLOC=$PREFIX/lib OPTINC="-I$PREFIX/include" LFLAGS="-L$PREFIX/lib" | ||
cp bin/* $PREFIX/bin | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{% set version = "1.0.2" %} | ||
{% set sha256 = "1858d4f59e8a28b95080cfcc48d98571fb50466bb4e6cd20fac8207360910a61" %} | ||
|
||
package: | ||
name: cgpbigwig | ||
version: {{ version }} | ||
|
||
build: | ||
number: 0 | ||
skip: true # [not linux] | ||
|
||
source: | ||
url: https://github.com/cancerit/cgpBigWig/archive/{{ version }}.tar.gz | ||
sha256: {{ sha256 }} | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('c') }} | ||
host: | ||
- zlib | ||
- bzip2 | ||
- xz | ||
- gnutls | ||
- gmp | ||
- libtasn1 | ||
- nettle | ||
- p11-kit | ||
- htslib | ||
- libbigwig | ||
run: | ||
- zlib | ||
- bzip2 | ||
- xz | ||
- gnutls | ||
- gmp | ||
- libtasn1 | ||
- nettle | ||
- p11-kit | ||
- htslib | ||
- libbigwig | ||
|
||
about: | ||
home: https://github.com/cancerit/cgpBigWig | ||
license: GPLv3 | ||
summary: BigWig manpulation tools using libBigWig and htslib | ||
|
||
test: | ||
commands: | ||
- bam2bw -h | ||
- detectExtremeDepth -h |