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

New: gvcfgenotyper for joint calling with Illumina strelka2 #12331

Merged
merged 1 commit into from
Nov 26, 2018
Merged
Show file tree
Hide file tree
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
11 changes: 11 additions & 0 deletions recipes/gvcfgenotyper/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash
set -eu -o pipefail

cd external/htslib-*
./configure --prefix=${PREFIX} --disable-lzma --disable-bz2
cd ../..
sed -i.bak 's^-Isrc/c/^-Isrc/c/ -I${PREFIX}/include^' Makefile
sed -i.bak 's^-lpthread^-lpthread -L$(PREFIX)/lib^' Makefile
make
mkdir -p $PREFIX/bin
cp bin/gvcfgenotyper $PREFIX/bin
32 changes: 32 additions & 0 deletions recipes/gvcfgenotyper/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{% set version="2018.10.15" %}
{% set hash="e873f57a4df61f24901f2bb2cdf827e1cfcfc663858e56548374b0667d4c9549" %}

package:
name: gvcfgenotyper
version: {{ version }}


source:
url: https://github.com/Illumina/gvcfgenotyper/archive/{{ version }}.tar.gz
sha256: {{ hash }}

build:
number: 0
skip: True # [not linux]

requirements:
build:
- {{ compiler('cxx') }}
host:
- zlib
run:
- zlib

test:
commands:
- gvcfgenotyper 2>&1 | grep 'About:'

about:
home: https://github.com/Illumina/gvcfgenotyper
license: Apache 2.0
summary: A utility for merging and genotyping Illumina-style GVCFs.