-
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.
Merge branch 'bioconda:master' into zamp
- Loading branch information
Showing
109 changed files
with
1,925 additions
and
441 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
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,7 @@ | ||
#!/bin/bash | ||
|
||
mkdir -p $PREFIX/bin | ||
go mod init cosigt | ||
go mod tidy | ||
go get -d ./... | ||
CGO_ENABLED=0 go build -o $PREFIX/bin/cosigt . |
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,38 @@ | ||
{% set name = "cosigt" %} | ||
{% set version = "0.1.2" %} | ||
|
||
package: | ||
name: {{ name }} | ||
version: {{ version }} | ||
|
||
build: | ||
number: 0 | ||
run_exports: | ||
- {{ pin_subpackage(name, max_pin='x.x') }} | ||
|
||
source: | ||
- url: https://github.com/davidebolo1993/{{ name }}/archive/tags/v{{ version }}.tar.gz | ||
sha256: 8cd92c395643720492cc1626d16aa5258bf44a6f448c2ea3407a257bf0ab6416 | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('go') }} | ||
|
||
test: | ||
commands: | ||
- cosigt -h | ||
|
||
about: | ||
home: https://github.com/davidebolo1993/{{ name }} | ||
license: 'GNU General Public License v3 (GPLv3)' | ||
license_family: GPL3 | ||
license_file: LICENSE | ||
summary: Cosigt (COsine SImilarity-based GenoTyper) | ||
dev_url: https://github.com/davidebolo1993/{{ name }} | ||
|
||
extra: | ||
additional-platforms: | ||
- linux-aarch64 | ||
- osx-arm64 | ||
recipe-maintainers: | ||
- AndreaGuarracino |
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,21 @@ | ||
#!/bin/bash | ||
|
||
set -xeuo | ||
|
||
# We set CARGO_HOME because we don't pass on HOME to conda-build, thus rendering the default "${HOME}/.cargo" defunct. | ||
export CARGO_HOME="$(pwd)/.cargo" | ||
|
||
# build statically linked binary with Rust | ||
cargo-bundle-licenses --format yaml --output THIRDPARTY.yml | ||
|
||
case $(uname -m) in | ||
aarch64 | arm64) | ||
FEATURES="--features neon --no-default-features" | ||
;; | ||
*) | ||
FEATURES="" | ||
;; | ||
esac | ||
|
||
RUST_BACKTRACE=1 cargo install --verbose --locked --no-track --root $PREFIX --path . ${FEATURES} | ||
cp scripts/* $PREFIX/bin |
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,14 @@ | ||
--- Cargo.toml.orig 2024-10-14 10:59:48.140000000 +0000 | ||
+++ Cargo.toml 2024-10-14 11:03:33.120000000 +0000 | ||
@@ -13,9 +13,9 @@ | ||
rayon="1.7" | ||
rand="0.8" | ||
rand_core="0.6" | ||
-rust-htslib= { version = "0.44", default-features = false } | ||
+rust-htslib= { version = "0.47", default-features = false } | ||
clap = { version = "=4.2.0", features = ["derive"] } | ||
-block-aligner = { version = "0.4", default-features = false } | ||
+block-aligner = { version = "0.5", default-features = false } | ||
debruijn = "0.3" | ||
simple_logger="4" | ||
log="0.4" |
Oops, something went wrong.