Skip to content

Commit

Permalink
Adding recipe for XHMM
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Aug 7, 2018
1 parent f7b6346 commit eedee54
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
7 changes: 7 additions & 0 deletions recipes/xhmm/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

export LIBRARY_PATH=${PREFIX}/lib

make
mkdir -p $PREFIX/bin
cp build/execs/xhmm $PREFIX/bin
39 changes: 39 additions & 0 deletions recipes/xhmm/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{% set hash = "cc14e52" %}
{% set version = "0.0.0.2016_01_04.cc14e52" %}
{% set sha256 = "14a521670d9417dffdd8c784f08317d785c305f11076dd6e57ae3261a0bee52b" %}

package:
name: xhmm
version: {{ version }}

source:
url: https://bitbucket.org/statgen/xhmm/get/{{ hash }}.tar.gz
sha256: {{ sha256 }}

build:
skip: True # [osx]
number: 0

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

test:
commands:
- xhmm | grep "Uses principal component analysis"

about:
home: http://atgu.mgh.harvard.edu/xhmm/index.shtml
license: GPL3
summary: XHMM (eXome-Hidden Markov Model).

extra:
identifiers:
- biotools:xhmm
- doi:10.1016/j.ajhg.2012.08.005
- doi:10.1002/0471142905.hg0723s81

0 comments on commit eedee54

Please sign in to comment.