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

Add TE-Aid #44954

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 12 additions & 0 deletions recipes/te-aid/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/env bash

set -euo

PACKAGE_HOME=${PREFIX}/share/${PKG_NAME}-${PKG_VERSION}-${PKG_BUILDNUM}
mkdir -p ${PACKAGE_HOME}
cp -r ./* ${PACKAGE_HOME}

# Make TE-Aid executable available
mkdir -p ${PREFIX}/bin
chmod +x ${PACKAGE_HOME}/TE-Aid
ln -s ${PACKAGE_HOME}/TE-Aid ${PREFIX}/bin
39 changes: 39 additions & 0 deletions recipes/te-aid/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{% set name = "TE-Aid" %}
{% set version = "0.1.0" %}
{% set sha256 = "2150a8bb7a16ceba29f824063dd7866da9e827e952b1dbf01fb61f0c89b18904" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://github.com/bricoletc/TE-Aid/archive/refs/tags/v{{ version }}.tar.gz
sha256: {{ sha256 }}

build:
noarch: generic
number: 0

requirements:
run:
- blast >=2.15.0
- emboss >=6.6.0
- r >=4.2

test:
commands:
- TE-Aid

about:
home: https://github.com/clemgoub/TE-Aid
dev_url: https://github.com/clemgoub/TE-Aid
license: MIT
# license_file: TODO
summary: "Annotation helper tool for the manual curation of transposable element consensus sequences"
description: |
TE-Aid is a shell+R program aimed to help the manual curation of transposable
elements (TE). It inputs a TE consensus sequence (fasta format) and requires a
reference genome (in fasta as well). TE-Aid produces 4 figures reporting i) the genomic
hits with divergence to consensus, ii) the genomic coverage of the consensus,
iii) a self dot-plot, and iv) a structure analysis including TIR and LTR suggestions,
open reading frames (ORFs) and TE protein hit annotation.
Loading