Skip to content

Commit

Permalink
[ci skip] Merge PR 18959
Browse files Browse the repository at this point in the history
Merge PR 18959
  • Loading branch information
sakkayaphab authored and BiocondaBot committed Nov 29, 2019
1 parent 8316cea commit b899407
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
11 changes: 11 additions & 0 deletions recipes/genie/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

go version
mkdir -p src/github.com/sakkayaphab/bolt
mv bed cli fasta gff hts variant vcf main.go go.sum go.mod vendor src/github.com/sakkayaphab/bolt
cd src/github.com/sakkayaphab/bolt
export GOPATH="$SRC_DIR/"
go get ./...
go build -o genie main.go
mkdir -p $PREFIX/bin
cp genie $PREFIX/bin
28 changes: 28 additions & 0 deletions recipes/genie/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{% set version = "0.4.1" %}

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

source:
url: https://github.com/sakkayaphab/genie/archive/v{{ version }}.tar.gz
md5: 950c0be81474a2db47b717a332490864

build:
number: 0

test:
commands:
- genie -h

requirements:
build:
- {{ compiler('go') }}

about:
home: https://github.com/sakkayaphab/genie
summary: Genie is a bioinformatics tools for managing high-throughput sequencing data
license: MIT
license_family: MIT
license_file: LICENSE
library_file: THIRD-PARTY-LICENSE

0 comments on commit b899407

Please sign in to comment.