-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: Upgrade mehari to 0.30.0 #55
Merged
Merged
Changes from 25 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
6a9477c
feat: update mehari to 0.30.0
tedil 9870393
adapt to mehari db create 0.30.0 interface
tedil 93f5a32
use apptainer instead of conda for mehari builds
tedil 5041657
use specified docker image from config
tedil 59c0365
install apptainer from ppa
tedil 808d8b8
add apptainer binds for snakemake_output_cache
tedil d4dab33
explicitly mention workflow profile
tedil 31eea7a
do the same for the release-please workflow
tedil 79ab323
disable apparmor restrictions for apptainer in CI
tedil 15ac6cf
update mehari version in ci yml
tedil 1c8e48f
add squashfs to deps
tedil afa324f
toggle unprivileged_userns_clone
tedil 14228c8
fix typo
tedil cda41bd
try apptainer-suid
tedil 7820d82
yet another try
tedil d3ce918
apptainer debugging
holtgrewe aafa74b
wip
holtgrewe 19ee33e
fail early, fail often
holtgrewe b1e3075
wip
holtgrewe ee2b9dd
wip
holtgrewe a3227be
wip
holtgrewe fa3756a
install snakemake via conda, don't use github action
tedil 9788268
forgot to check in env yaml
tedil d84219e
remove incorrect path from wf
tedil 311cffc
change snakemake output cache location
tedil 5e075d2
use mehari:0.30 docker image
tedil 78362a3
0.30.0
tedil 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
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,5 @@ | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
dependencies: | ||
- snakemake =8.25.3 | ||
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ channels: | |
- bioconda | ||
- nodefaults | ||
dependencies: | ||
- mehari ==0.26.1 | ||
- mehari ==0.30.0 |
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 @@ | ||
software-deployment-method: conda | ||
software-deployment-method: | ||
- conda | ||
- apptainer | ||
cache: True | ||
apptainer-args: "-B ${SNAKEMAKE_OUTPUT_CACHE}:${SNAKEMAKE_OUTPUT_CACHE}:rw" | ||
resources: | ||
ratelimit: 3 | ||
|
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
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.
Add mehari dependency
While the snakemake version is correctly specified, the mehari package dependency (version 0.30.0) should also be added here since it's a core dependency of this project.
Apply this diff:
dependencies: - snakemake =8.25.3 + - mehari =0.30.0
📝 Committable suggestion