From 7521736dd609a7d81fc38e6a30e6760c5e249785 Mon Sep 17 00:00:00 2001 From: Johan Nylander Date: Mon, 6 Mar 2023 19:52:25 +0100 Subject: [PATCH] [ci skip] Merge PR 39756 Merge PR #39756, commits were: * Removed the host section * Merge branch 'bioconda:master' into fastagap * Update meta.yaml Add the build section * Add recepie fastagap * Merge branch 'master' into fastagap --- recipes/fastagap/build.sh | 5 +++++ recipes/fastagap/meta.yaml | 27 +++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 recipes/fastagap/build.sh create mode 100644 recipes/fastagap/meta.yaml diff --git a/recipes/fastagap/build.sh b/recipes/fastagap/build.sh new file mode 100644 index 0000000000000..8350de3fdbadf --- /dev/null +++ b/recipes/fastagap/build.sh @@ -0,0 +1,5 @@ +#! /bin/bash + +mkdir -p $PREFIX/bin +cp fastagap.pl $PREFIX/bin/fastagap + diff --git a/recipes/fastagap/meta.yaml b/recipes/fastagap/meta.yaml new file mode 100644 index 0000000000000..82f67329fa854 --- /dev/null +++ b/recipes/fastagap/meta.yaml @@ -0,0 +1,27 @@ +package: + name: fastagap + version: "1.0" + +source: + url: https://github.com/nylander/fastagap/archive/refs/tags/v1.0.tar.gz + sha256: 4873e63daf735cb6932a32fcdcfc546e5448a72ade7577cff9a059317605e955 + +build: + number: 0 + noarch: generic + +requirements: + run: + - perl + - perl-list-moreutils + +test: + commands: + - fastagap --version + +about: + home: https://github.com/nylander/fastagap + license: MIT + license_file: LICENSE + summary: Count and remove missing data in fasta-formatted sequence data +