-
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 remote-tracking branch 'bioconda_origin/master' into saccharis
- Loading branch information
Showing
43 changed files
with
9,709 additions
and
496 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 |
---|---|---|
@@ -1,10 +1,14 @@ | ||
#!/bin/bash | ||
#ln -s ${CC} gcc | ||
#ln -s ${CXX} g++ | ||
#export PATH=$PATH:$(pwd) | ||
|
||
uname_S=`uname -s 2>/dev/null || echo not` | ||
|
||
if [ "$uname_S" == "Darwin" ]; then make -j${CPU_COUNT}; else make -j${CPU_COUNT} LEIDEN=true; fi | ||
export LDFLAGS="${LDFLAGS} -L${PREFIX}/lib" | ||
|
||
if [[ "$uname_S" == "Darwin" ]]; then | ||
make -j"${CPU_COUNT}" CXX="${CXX}" LDFLAGS="${LDFLAGS}"; | ||
else | ||
make LEIDEN=true -j"${CPU_COUNT}" CXX="${CXX}" LDFLAGS="${LDFLAGS}"; | ||
fi | ||
|
||
install -d "${PREFIX}/bin" | ||
install clusty "${PREFIX}/bin" | ||
install -v -m 0755 clusty "${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,13 @@ | ||
diff --git a/makefile b/makefile | ||
index 21492fe..009c44f 100644 | ||
--- a/makefile | ||
+++ b/makefile | ||
@@ -73,7 +73,7 @@ ifeq ($(DYNAMIC_LINK), true) | ||
else | ||
ifeq ($(uname_S),Darwin) | ||
CFLAGS = -Wall -O3 $(ARCH_FLAGS) -std=c++17 $(DEFINE_FLAGS) $(INCLUDES) | ||
- CLINK = -lm -O3 -std=c++17 $(ABI_FLAGS) -static-libgcc | ||
+ CLINK = -lm -O3 -std=c++17 $(ABI_FLAGS) | ||
else | ||
CFLAGS = -Wall -O3 $(ARCH_FLAGS) -std=c++17 $(DEFINE_FLAGS) $(INCLUDES) -static -Wl,--whole-archive -lpthread -Wl,--no-whole-archive | ||
CLINK = -lm -static -O3 -std=c++17 $(ABI_FLAGS) -Wl,--whole-archive -lpthread -Wl,--no-whole-archive |
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,42 +1,47 @@ | ||
{% set version = "1.1.1" %} | ||
{% set name = "clusty" %} | ||
{% set version = "1.1.4" %} | ||
|
||
package: | ||
name: clusty | ||
name: {{ name }} | ||
version: {{ version }} | ||
|
||
build: | ||
number: 0 | ||
run_exports: | ||
- {{ pin_subpackage('clusty', max_pin='x.x.x') }} | ||
- {{ pin_subpackage('clusty', max_pin='x') }} | ||
|
||
source: | ||
git_url: https://github.com/refresh-bio/clusty.git | ||
git_rev: v{{ version }} | ||
patches: | ||
- buildfixes.patch # [osx] | ||
|
||
requirements: | ||
build: | ||
- make | ||
- {{ compiler('c') }} | ||
- {{ compiler('cxx') }} | ||
- {{ compiler('c') }} | ||
- cmake | ||
- flex | ||
- bison | ||
|
||
test: | ||
commands: | ||
- clusty > /dev/null | ||
|
||
about: | ||
home: https://github.com/refresh-bio/clusty | ||
summary: "Clusty is a tool for large-scale data clustering." | ||
license: GPL-3 | ||
license_family: GPL | ||
license: GPL-3.0-or-later | ||
license_family: GPL3 | ||
license_file: LICENSE | ||
|
||
test: | ||
commands: | ||
- clusty > /dev/null | ||
dev_url: https://github.com/refresh-bio/clusty | ||
doc_url: "https://github.com/refresh-bio/clusty/blob/v{{ version }}/README.md" | ||
|
||
extra: | ||
additional-platforms: | ||
- linux-aarch64 | ||
- osx-arm64 | ||
skip-lints: | ||
- uses_vcs_url | ||
- missing_hash | ||
- missing_hash |
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,10 +1,5 @@ | ||
#!/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="${BUILD_PREFIX}/.cargo" | ||
|
||
# build statically linked binary with Rust | ||
RUST_BACKTRACE=1 | ||
cargo install --verbose --path . --root $PREFIX | ||
|
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,14 @@ | ||
diff --git a/src/utility/src/align/align-ksw2-extz2-sse.C b/src/utility/src/align/align-ksw2-extz2-sse.C | ||
index d237b48..f96c6fa 100644 | ||
--- a/src/utility/src/align/align-ksw2-extz2-sse.C | ||
+++ b/src/utility/src/align/align-ksw2-extz2-sse.C | ||
@@ -304,6 +304,8 @@ void ksw_extz2_sse(void *km, int qlen, const uint8_t *query, int tlen, const uin | ||
kfree(km, mem2); kfree(km, off); | ||
} | ||
} | ||
-#endif // __SSE2__ | ||
|
||
} // merylutil::align::ksw2::v1 | ||
+ | ||
+#endif // __SSE2__ | ||
+ |
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,7 +1,14 @@ | ||
#!/bin/bash | ||
|
||
set -xe | ||
|
||
ARCH_BUILD="-m64 -msse4.1" | ||
case $(uname -m) in | ||
arm64|aarch64) ARCH_BUILD="" ;; | ||
esac | ||
|
||
make -C src BUILD_DIR="$(pwd)" \ | ||
TARGET_DIR="${PREFIX}" \ | ||
CXX="${CXX}" \ | ||
CXXFLAGS="${CXXFLAGS} -O3 -I${PREFIX}/include" \ | ||
CXXFLAGS="${CXXFLAGS} -O3 -Wno-c++20-extensions -Wno-inline-namespace-reopened-noninline -Wno-format ${ARCH_BUILD} -I${PREFIX}/include" \ | ||
LDFLAGS="${LDFLAGS} -fopenmp -L${PREFIX}/lib" -j"${CPU_COUNT}" |
Oops, something went wrong.