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

Update FINEMAP to 1.4.2 #51978

Merged
merged 16 commits into from
Nov 21, 2024
47 changes: 27 additions & 20 deletions recipes/finemap/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,37 +1,44 @@
# This file created by conda-build 3.22.0
# meta.yaml template originally from:
# /home/conda/conda-forge/recipes/finemap, last modified Thu Oct 20 22:53:08 2022
# ------------------------------------------------
{% set name = "finemap" %}
{% set version = "1.4.2" %}

package:
name: finemap
version: 1.4.1
name: {{ name }}
version: {{ version }}

source:
sha256: 75c919d9cc981bc08e1a982b1632110109ffe6a057e803c9aa36c143aa56d546
url: http://www.christianbenner.com/finemap_v1.4.1_x86_64.tgz
url: http://www.christianbenner.com/finemap_v{{ version }}_x86_64.tgz # [linux]
sha256: 3b1fc6eb3c2ccafd647b32e02d0244495cd0ade9ed7d474606c31ebf6e98b0c9 # [linux]
url: http://www.christianbenner.com/finemap_v{{ version }}_MacOSX.tgz # [osx]
sha256: e2967e5586347a8ac5cbcddf3c0e41bf8d3e7793875f78b509d07903d17a415b # [osx]

build:
binary_relocation: false
noarch: generic
number: '0'
number: 0
# skip broken osx for now
skip: True # [not linux]
run_exports:
- {{ pin_subpackage('finemap', max_pin="x") }}
script:
- install -Dd ${PREFIX}/bin
- install -D -m 755 finemap_v1.4.1_x86_64 ${PREFIX}/bin/finemap
string: '0'
- mkdir -p ${PREFIX}/bin
- install -m 755 finemap_v{{ version }}_x86_64 ${PREFIX}/bin/finemap # [linux]
- install -m 755 finemap_v{{ version }}_MacOSX ${PREFIX}/bin/finemap # [osx]

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

test:
commands:
- test -f $PREFIX/bin/finemap
- finemap --help

about:
home: http://www.christianbenner.com
license: Other
license_file: LICENSE
summary: Program for identifying causal SNPs and their effect sizes and heritability
contributions
summary: >
Program for identifying causal SNPs and their effect sizes and heritability contributions

extra:
copy_test_source_files: true
final: true
recipe-maintainers:
- danielnachun
Loading