Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Cloudspades #51456

Merged
merged 34 commits into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
6da07a5
add cloudspades
pdimens Oct 15, 2024
9c352db
Rename recipes/spades/cloudspades/meta.yaml to recipes/cloudspades/me…
pdimens Oct 15, 2024
a75105d
rm flags, better versioning, rm arm
pdimens Oct 15, 2024
3fd1c6b
Merge branch 'master' into cloudspades
pdimens Oct 15, 2024
0745483
rm aarch
pdimens Oct 15, 2024
ac115e9
fix build
pdimens Oct 15, 2024
8e74a52
add ignore exports, link to the license file directly
pdimens Oct 15, 2024
b548ac9
fix constraint
pdimens Oct 15, 2024
2045d43
fix license path
pdimens Oct 15, 2024
e8c704e
simplify tests b/c cloudspades acts different
pdimens Oct 15, 2024
ad59ff4
Merge branch 'master' into cloudspades
pdimens Oct 15, 2024
3d88e6f
skip osk. make life easier
pdimens Oct 15, 2024
57b00e9
add proper test
pdimens Oct 15, 2024
4f2d95b
add gz
pdimens Oct 15, 2024
6692969
try building with less threads
mencian Oct 16, 2024
9260860
fix tests
mencian Oct 16, 2024
0399e25
edit test command
mencian Oct 16, 2024
a373b6b
do not build on aarch64/arm64
mencian Oct 16, 2024
817a88b
Merge branch 'master' into cloudspades
mencian Oct 16, 2024
af16fd4
add case for Darwin
mencian Oct 16, 2024
871a400
Merge branch 'master' into cloudspades
mencian Oct 16, 2024
140ff1c
Merge branch 'master' into cloudspades
mencian Oct 16, 2024
f1a7429
edit case
mencian Oct 16, 2024
a443735
Merge branch 'master' into cloudspades
mencian Oct 16, 2024
73936dd
Add "-D_LIBCPP_DISABLE_AVAILABILITY" for OSX
martin-g Oct 16, 2024
083460a
skip osx x86_64 for now
mencian Oct 16, 2024
8c63287
Merge branch 'bioconda:master' into cloudspades
pdimens Oct 17, 2024
f8eb7e7
simplify build script, move things manually, add real test
pdimens Oct 17, 2024
3dcbd08
Merge branch 'master' into cloudspades
pdimens Oct 17, 2024
718787e
fix mv command
pdimens Oct 17, 2024
17d00b4
bump build number
pdimens Oct 17, 2024
2a74765
rm the mv statement, it's redundant
pdimens Oct 17, 2024
7b011b2
rm the test?
pdimens Oct 17, 2024
3913272
rm arm
pdimens Oct 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions recipes/cloudspades/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

set -e -o pipefail -x

export LIBRARY_PATH="${PREFIX}/lib"
export INCLUDE_PATH="${PREFIX}/include"
export CFLAGS="${CFLAGS} -O3 -fcommon"
export CXXFLAGS="${CFLAGS} -O3 -fcommon -I${PREFIX}/include -D_LIBCPP_DISABLE_AVAILABILITY -fsigned-char"
#export LIBRARY_PATH="${PREFIX}/lib"
#export INCLUDE_PATH="${PREFIX}/include"
#export CFLAGS="${CFLAGS} -O3 -fcommon"
#export CXXFLAGS="${CFLAGS} -O3 -fcommon -I${PREFIX}/include -D_LIBCPP_DISABLE_AVAILABILITY"

case $(uname) in
Linux)
Expand All @@ -16,5 +16,8 @@ case $(uname) in
;;
esac

mkdir -p ${PREFIX}/bin ${PREFIX}/share
cd assembler
PREFIX="${PREFIX}" bash spades_compile.sh "${THREADS}" -DSPADES_ENABLE_PROJECTS="all"
./spades_compile.sh "${THREADS}"
mv -r bin/* ${PREFIX}/bin
mv -r share/spades ${PREFIX}/share
pdimens marked this conversation as resolved.
Show resolved Hide resolved
1 change: 1 addition & 0 deletions recipes/cloudspades/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ test:
- spades-kmercount -h 2>&1 | grep spades-kmercount
- spades-gmapper 2>&1 | grep spades-gmapper
- spades-gbuilder 2>&1 | grep spades-gbuilder
- spades.py --isolate --gemcode1-1 assembler/test_dataset_cloudspades/10x_format/test_1.fastq.gz --gemcode1-2 assembler/test_dataset_cloudspades/10x_format/test_2.fastq.gz -o cloudspades_test

about:
home: "https://github.com/ablab/spades"
Expand Down
Loading