-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
457 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env bash | ||
|
||
meson setup --buildtype release --prefix=$PREFIX build | ||
meson install -C build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{% set version = "1.0.0" %} | ||
|
||
package: | ||
name: ntstat | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/bcgsc/ntStat/archive/refs/tags/v{{ version }}.tar.gz | ||
sha256: 262dc58ab6f781a6816a5d4fc129659c7fa2c3364871320eafb45bfa822fab6a | ||
|
||
build: | ||
number: 0 | ||
run_exports: | ||
- {{ pin_subpackage('ntstat', max_pin="x") }} | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('cxx') }} | ||
- meson | ||
- meson-python | ||
- cmake | ||
host: | ||
- python | ||
- llvm-openmp # [osx] | ||
- libgomp # [linux] | ||
- btllib >=1.7.2 | ||
- cpp-argparse | ||
- cpp-tabulate | ||
- indicators | ||
- pybind11 | ||
run: | ||
- python | ||
- ntcard | ||
- matplotlib | ||
- numpy | ||
- scipy | ||
- tabulate | ||
|
||
test: | ||
commands: | ||
- ntstat --version | ||
- ntstat count --help | ||
|
||
about: | ||
home: https://github.com/bcgsc/ntStat | ||
license: GPL-3.0-or-later | ||
license_file: LICENSE | ||
summary: 'a toolkit for statistical analysis of k-mer frequency and depth' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
|
||
if [[ `uname` == "Darwin" ]]; then | ||
export CONFIG_ARGS="-DCMAKE_FIND_FRAMEWORK=NEVER -DCMAKE_FIND_APPBUNDLE=NEVER" | ||
else | ||
export CONFIG_ARGS="" | ||
fi | ||
|
||
cd src || exit 1 | ||
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_INSTALL_PREFIX="${PREFIX}" \ | ||
-DCMAKE_C_COMPILER="${CC}" \ | ||
-DCMAKE_C_FLAGS="${CFLAGS}" \ | ||
"${CONFIG_ARGS}" | ||
cmake --build build --target install -j "${CPU_COUNT}" -v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{% set version = "2.2" %} | ||
|
||
package: | ||
name: amplici | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/DormanLab/AmpliCI/archive/refs/tags/v{{ version }}.tar.gz | ||
sha256: 273362b5449ec29ff411d4c1aa5f89b1ec1eb361c8a9b69a4d89f4409fbdb70e | ||
|
||
build: | ||
number: 0 | ||
run_exports: | ||
- {{ pin_subpackage("amplici", max_pin="x") }} | ||
|
||
requirements: | ||
build: | ||
- cmake | ||
- make | ||
- {{ compiler('c') }} | ||
- {{ compiler('cxx') }} | ||
- {{ compiler('fortran') }} | ||
host: | ||
- zlib | ||
|
||
about: | ||
home: https://github.com/DormanLab/AmpliCI | ||
license: BSD 3-Clause | ||
license_family: BSD | ||
license_file: LICENSE | ||
summary: "AmpliCI: Cluster amplicon sequences in a fastq file with or without UMIs." | ||
dev_url: https://github.com/DormanLab/AmpliCI | ||
|
||
test: | ||
commands: | ||
- run_AmpliCI -h | ||
|
||
extra: | ||
additional-platforms: | ||
- linux-aarch64 | ||
- osx-arm64 | ||
recipe-maintainers: | ||
- xiyupeng | ||
identifiers: | ||
- biotools:amplici | ||
- doi:10.1093/bioinformatics/btaa648 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{% set name = "msa4u" %} | ||
{% set version = "0.4.0" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/msa4u-{{ version }}.tar.gz | ||
sha256: 0471f334bbc1fbb8ea6c0974c39f9aed59030b32d3d790caf814c8f53c393c17 | ||
|
||
build: | ||
run_exports: | ||
- {{ pin_subpackage("msa4u", max_pin="x.x") }} | ||
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation | ||
number: 0 | ||
noarch: python | ||
|
||
requirements: | ||
host: | ||
- python | ||
- pip | ||
run: | ||
- python | ||
- biopython | ||
- pandas | ||
- reportlab | ||
- configs | ||
|
||
test: | ||
imports: | ||
- msa4u | ||
commands: | ||
- msa4u --help | ||
|
||
about: | ||
home: https://github.com/GCA-VH-lab/msa4u | ||
summary: "A simple visualisation tool for Multiple Sequence Alignment." | ||
license: WTFPL | ||
license_file: LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,18 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
cd src/ | ||
sed -i.bak -e 's/ -static//' Makefile | ||
mkdir -p ${PREFIX}/bin | ||
cd src || exit 1 | ||
echo "0" > gitver.txt | ||
|
||
make CXX=$CXX | ||
cp ${RECIPE_DIR}/vcxproj_make.py . | ||
chmod +x vcxproj_make.py | ||
./vcxproj_make.py --openmp --cppcompiler ${CXX} | ||
|
||
mkdir -p "$PREFIX"/bin | ||
cp "$(uname)"/muscle "$PREFIX"/bin/muscle | ||
# Verify binary exists and is executable | ||
if [ ! -x ../bin/muscle ]; then | ||
echo "Error: muscle binary not found" | ||
exit 1 | ||
fi | ||
|
||
cp ../bin/muscle ${PREFIX}/bin/muscle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.