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

[ALE-Amalgamated likelihood estimation] Add ALE recipes #14450

Closed
wants to merge 23 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
9a3265f
Reformat meta.yml and fix build.sh for escaping @ in Perl [mummer]-1
thanhleviet Jan 4, 2019
7f71758
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes
thanhleviet Jan 14, 2019
e83091d
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes
thanhleviet Jan 16, 2019
2fdcf49
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes
thanhleviet Jan 18, 2019
f2072ab
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes
thanhleviet Jan 18, 2019
9a4aac0
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes
thanhleviet Jan 21, 2019
5deaa10
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes
thanhleviet Jan 22, 2019
ff8d3c3
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes
thanhleviet Jan 23, 2019
1fb3066
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes
thanhleviet Jan 24, 2019
f7dbcbf
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes
thanhleviet Jan 24, 2019
ae7d8b1
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes
thanhleviet Jan 24, 2019
fd52f91
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes
thanhleviet Jan 24, 2019
5ff6011
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes
thanhleviet Jan 24, 2019
f40ee3f
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes
thanhleviet Feb 4, 2019
f3bcc29
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes
thanhleviet Feb 12, 2019
33d76ff
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes
thanhleviet Feb 14, 2019
abe09b8
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes…
thanhleviet Apr 5, 2019
b4622c9
[albatradis] bump to 1.0.0
thanhleviet Apr 5, 2019
f81af2c
add ALE
thanhleviet Apr 12, 2019
199d08f
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes…
thanhleviet Apr 12, 2019
374f167
add ALE
thanhleviet Apr 12, 2019
73f76c2
add ALE
thanhleviet Apr 12, 2019
9f73d4c
update ALE
thanhleviet Apr 12, 2019
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
33 changes: 33 additions & 0 deletions recipes/ALE/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{% set name = 'ALE' %}
{% set version = '0.5' %}
{% set sha256 = '1efd3bc5814232a7a5240e935fb2aba7c1d291e8' %}

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

build:
number: 0

source:
git_url: https://github.com/ssolo/ALE
git_revision: {{ revision }}
sha256: unused

requirements:
build:
- {{ compiler('c') }}
- cmake
- bpp-core
- bpp-seq
- bpp-phy
run:
- bpp-core

#test:
# commands:

about:
home: https://github.com/ssolo/ALE
license: GPLv3
summary: "Amalgamated Likelihood Estimation. Reconstruction of reconciled gene trees and estimation of DTL rates from a sample of gene trees and a rooted species tree."
12 changes: 12 additions & 0 deletions recipes/ale-dtl/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

export LIBRARY_PATH="${PREFIX}/lib"
export LD_LIBRARY_PATH="${PREFIX}/lib"
export LDFLAGS="-L${PREFIX}/lib"
export CPPFLAGS="-I${PREFIX}/include"

mkdir build && pushd build
cmake -DCMAKE_INSTALL_PREFIX=${PREFIX} -DCMAKE_PREFIX_PATH=${PREFIX} -DCMAKE_INSTALL_RPATH:STRING=${PREFIX}/lib -DCMAKE_BUILD_WITH_INSTALL_RPATH=TRUE -DCMAKE_INSTALL_LIBDIR=${PREFIX}/lib ..

make -j 4
make install
40 changes: 40 additions & 0 deletions recipes/ale-dtl/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{% set name = 'ale-dtl' %}
{% set version = '0.5' %}
{% set revision = '1efd3bc5814232a7a5240e935fb2aba7c1d291e8' %}

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

build:
number: 0

source:
git_url: https://github.com/ssolo/ALE
git_revision: {{ revision }}
sha256: unused

requirements:
build:
- {{ compiler('c') }}
- cmake
- bpp-core
- bpp-seq
- bpp-phyl
run:
- bpp-core
- bpp-seq
- bpp-phyl

test:
commands:
- ALEobserve -h

extra:
skip-lints:
- uses_git_url

about:
home: https://github.com/ssolo/ALE
license: GPLv3
summary: "Amalgamated Likelihood Estimation. Reconstruction of reconciled gene trees and estimation of DTL rates from a sample of gene trees and a rooted species tree."