-
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 'master' into bump/starfish
- Loading branch information
Showing
23 changed files
with
617 additions
and
37 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,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.1" %} | ||
|
||
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/{{ version }}.tar.gz | ||
sha256: 7db68d7e02424fba7248db4ddd0853f1c634b31e62906037765f1f481e63635d | ||
|
||
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,10 @@ | ||
#!/bin/bash -euo | ||
|
||
# Add workaround for SSH-based Git connections from Rust/cargo. See https://github.com/rust-lang/cargo/issues/2078 for details. | ||
# We set CARGO_HOME because we don't pass on HOME to conda-build, thus rendering the default "${HOME}/.cargo" defunct. | ||
export CARGO_NET_GIT_FETCH_WITH_CLI=true CARGO_HOME="$(pwd)/.cargo" | ||
|
||
# build statically linked binary with Rust | ||
cargo-bundle-licenses --format yaml --output THIRDPARTY.yml | ||
RUST_BACKTRACE=1 cargo install --verbose --locked --no-track --root $PREFIX --path . | ||
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,47 @@ | ||
{% set version="0.0.1" %} | ||
|
||
package: | ||
name: devider | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/bluenote-1577/devider/archive/v{{ version }}.tar.gz | ||
sha256: e2c5e4a2faa51dbfd0ad4cb867d0dc25ea4012e83ec8fea27c1624592fce7dce | ||
|
||
build: | ||
number: 0 | ||
run_exports: | ||
- {{ pin_subpackage('devider', max_pin="x.x") }} | ||
|
||
requirements: | ||
build: | ||
- {{ compiler("cxx") }} | ||
- {{ compiler('rust') }} | ||
- cargo-bundle-licenses | ||
- make | ||
- cmake >=3.12 | ||
run: | ||
- python | ||
- samtools | ||
- minimap2 | ||
- lofreq >=2.1.5 | ||
- tabix | ||
- pysam >=0.16 | ||
|
||
test: | ||
commands: | ||
- devider -h | ||
- run_devider_pipeline -h | ||
- haplotag_bam -h | ||
|
||
about: | ||
home: https://github.com/bluenote-1577/devider | ||
license: MIT | ||
license_file: | ||
- LICENSE | ||
- THIRDPARTY.yml | ||
summary: Haplotyping small sequences from heterogeneous long-read sequencing samples with a SNP-encoded positional de Bruijn graphs. | ||
|
||
extra: | ||
recipe-maintainers: | ||
- bluenote-1577 |
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,5 +1,7 @@ | ||
#!/bin/bash | ||
|
||
set -xe | ||
|
||
cd gnparser | ||
CGO_ENABLED=0 | ||
go clean | ||
|
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,48 @@ | ||
{% set name = "meta_eukaryome_detect" %} | ||
{% set version = "0.1.1" %} | ||
|
||
package: | ||
name: "{{ name|lower }}" | ||
version: "{{ version }}" | ||
|
||
source: | ||
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" | ||
sha256: 0199ad179d36d3683b8122f41b1e5db6c5d7d94324c3fe5187d576fafdfa2cdc | ||
|
||
build: | ||
number: 0 | ||
entry_points: | ||
- meta_eukaryome_detect = meta_eukaryome_detect.meta_eukaryome_detect:main | ||
script: "{{ PYTHON }} -m pip install . -vv --ignore-installed --no-deps" | ||
noarch: python | ||
run_exports: | ||
{{ pin_subpackage(name, max_pin="x") }} | ||
|
||
requirements: | ||
host: | ||
- pip | ||
- python >=3.11 | ||
- poetry | ||
run: | ||
- ngless | ||
- samtools | ||
- pandas >=2.0 | ||
- requests | ||
test: | ||
imports: | ||
- meta_eukaryome_detect | ||
commands: | ||
- meta_eukaryome_detect --help | ||
|
||
about: | ||
home: "https://github.com/grp-bork/meta_eukaryome_detect" | ||
license: "MIT License" | ||
license_family: MIT | ||
license_file: LICENSE | ||
summary: "Pathogen, Parasite, Eukaryote and Virus detection in metagenomes." | ||
doc_url: "https://grp-bork.embl-community.io/grp-microbiome-astrology/meta_eukaryome_detect/" | ||
dev_url: "https://github.com/grp-bork/meta_eukaryome_detect" | ||
|
||
extra: | ||
recipe-maintainers: | ||
- fullama |
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
Oops, something went wrong.