Skip to content

Commit

Permalink
Adding GenomeThreader
Browse files Browse the repository at this point in the history
Version 1.7.1

* Modified build.sh to avoid crashing at the install stage

* Build crashed due to lack of license file. Removed.

* The OSX version is blocked. Trying to do only the Linux.
  • Loading branch information
lucventurini committed May 10, 2019
1 parent d72a887 commit 519821d
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
5 changes: 5 additions & 0 deletions recipes/genomethreader/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
mkdir -p $PREFIX/bin/{bssm,gthdata}
install $(ls -d bin/* | grep -v bssm | grep -v gthdata) $PREFIX/bin/
install bin/bssm/* $PREFIX/bin/bssm/
install bin/gthdata/* $PREFIX/bin/gthdata/
29 changes: 29 additions & 0 deletions recipes/genomethreader/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{% set name = "genomethreader" %}
{% set version = "1.7.1" %}

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

source:
url: http://genomethreader.org/distributions/gth-{{version}}-Linux_x86_64-64bit.tar.gz # [linux]
sha256: 7c7b05d0a88a13a83918a7e209bf38195238b93b93684e0f4c2ed48ecbaf8718 # [linux]

build:
skip: True # [not linux]
number: 0

requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}

test:
commands:
- gth --version

about:
home: http://genomethreader.org/
summary: 'GenomeThreader is a software tool to compute gene structure predictions. The gene structure predictions are calculated using a similarity-based approach where additional cDNA/EST and/or protein sequences are used to predict gene structures via spliced alignments.'
license: ISC
dev_url: https://github.com/genometools/genomethreader

0 comments on commit 519821d

Please sign in to comment.