-
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.
* gemma 0.98 * gemma 0.98 Leave gsl and zlib out of runtime dependencies
- Loading branch information
Showing
2 changed files
with
48 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
set -eu | ||
|
||
export C_INCLUDE_PATH=${PREFIX}/include | ||
export CPP_INCLUDE_PATH=${PREFIX}/include | ||
export LIBRARY_PATH=${PREFIX}/lib | ||
|
||
if [ "$(uname)" == "Darwin" ]; then | ||
make EIGEN_INCLUDE_PATH=${PREFIX}/include/eigen3 CXX=clang++ | ||
else | ||
make EIGEN_INCLUDE_PATH=${PREFIX}/include/eigen3 | ||
fi | ||
|
||
mkdir -p ${PREFIX}/bin | ||
cp bin/gemma ${PREFIX}/bin/gemma |
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,33 @@ | ||
{% set version='0.98' %} | ||
package: | ||
name: gemma | ||
version: {{ version }} | ||
|
||
# There are no OSX binaries yet, so just build on both platforms | ||
source: | ||
# Using a specific git checkout of 0.98 because of a minor fix in the Makefile | ||
url: https://github.com/genetics-statistics/GEMMA/archive/93bdcb038b74b311d3a040f44606c25f5f9b20f9.tar.gz | ||
sha256: beb3f5a57ee5d99fc48c3fec11ad8c95ee66053cd5b0bfa417881a77138f2ed6 | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('cxx') }} | ||
host: | ||
- openblas | ||
- eigen | ||
- gsl | ||
- zlib | ||
run: | ||
- openblas | ||
|
||
test: | ||
commands: | ||
- gemma | ||
|
||
about: | ||
home: https://github.com/genetics-statistics/GEMMA | ||
license: GPLv3 | ||
summary: Linear mixed models (LMMs) for genome-wide association (GWA) |