-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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 pepsirf to 1.7.0 #51138
Open
BiocondaBot
wants to merge
7
commits into
master
Choose a base branch
from
bump/pepsirf
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+34
−225
Open
Update pepsirf to 1.7.0 #51138
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
d73e10b
Update pepsirf to 1.7.0
BiocondaBot 3b72676
add run_exports
mencian ee4a0bc
add -D_LIBCPP_DISABLE_AVAILABILITY
mencian 1edfb44
try -std=c++17
mencian b36aa47
Merge branch 'master' into bump/pepsirf
mencian 27c481c
Update build.sh
mencian 29687c3
Merge branch 'master' into bump/pepsirf
mencian File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -1,8 +1,23 @@ | ||
#!/bin/bash | ||
mkdir build | ||
cd build | ||
cmake -DCMAKE_BUILD_TYPE=Release .. | ||
make pepsirf | ||
|
||
mkdir -p "${PREFIX}/bin/" | ||
cp pepsirf "${PREFIX}/bin/" | ||
mkdir -p "${PREFIX}/bin" | ||
|
||
export INCLUDES="-I${PREFIX}/include" | ||
export LIBPATH="-L${PREFIX}/lib" | ||
export CXXFLAGS="${CXXFLAGS} -O3 -std=c++14 -I${PREFIX}/include" | ||
export LDFLAGS="${LDFLAGS} -L${PREFIX}/lib" | ||
|
||
if [[ `uname` == "Darwin" ]]; then | ||
export CONFIG_ARGS="-DCMAKE_FIND_FRAMEWORK=NEVER -DCMAKE_FIND_APPBUNDLE=NEVER" | ||
else | ||
export CONFIG_ARGS="" | ||
fi | ||
|
||
cmake -S . -B build -DCMAKE_INSTALL_PREFIX="${PREFIX}" \ | ||
-DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER="${CXX}" \ | ||
-DCMAKE_CXX_FLAGS="${CXXFLAGS}" \ | ||
"${CONFIG_ARGS}" | ||
cmake --build build --target pepsirf -j "${CPU_COUNT}" -v | ||
|
||
chmod 0755 build/pepsirf | ||
mv build/pepsirf "${PREFIX}/bin" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Codebase verification
Incomplete Replacement of 'boost' Dependencies
The dependency has been updated from
boost
toboost-cpp
inrecipes/pepsirf/meta.yaml
. However, multiple references toboost
still exist throughout the codebase, indicating that the replacement is not fully implemented. This may lead to inconsistencies or build issues.Files still referencing 'boost':
recipes/build-fail-blacklist
recipes/bioconductor-netboost/meta.yaml
recipes/bte/meta.yaml
recipes/cansam/meta.yaml
recipes/galaxy-ml/meta.yaml
recipes/metagraph/meta.yaml
recipes/reseq/meta.yaml
recipes/sankoff/meta.yaml
recipes/scelestial/meta.yaml
recipes/tagger/meta.yaml
recipes/vamos/meta.yaml
recipes/scelestial/meta.yaml
recipes/reviewer/meta.yaml
Please ensure that all instances of
boost
are appropriately replaced withboost-cpp
where necessary to maintain consistency and avoid potential issues.🔗 Analysis chain
Verify the impact of changing 'boost' to 'boost-cpp'.
The dependency has been updated from 'boost' to 'boost-cpp' in both build and run requirements. This change is likely intentional to specify a more targeted dependency on Boost's C++ components. However, it's important to ensure that this change doesn't negatively impact the build process or runtime behavior.
To verify the impact of this change, you can run the following script:
Also applies to: 26-26
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 184
Script:
Length of output: 132494