-
Notifications
You must be signed in to change notification settings - Fork 1
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
Fix Input Handling for query_ids in FILTER_QUERY Process #27
Conversation
|
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.
This looks great. Thanks so much for this fix Kyla 😄
@@ -3,6 +3,13 @@ | |||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) | |||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | |||
|
|||
## [0.2.3] - 2024/09/20 |
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.
Thanks for adding 😄. Could you add the link to this version/tag as well in this file.
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.
Of course: 07a8762
This PR addresses Issue26.
Problem:
In the
FILTER_QUERY
process, the inputquery_ids
was originally defined as aval
. However,query_ids
is now stored as a file, and the process needs to reference thepath
to the file. This caused an issue where the file was being stored in a temporary directory, leading to file path resolution errors during execution, particularly on Azure.Solution:
This PR changes the input for
query_ids
from:input: val query_ids
TO
input: path query_ids
path
, the process can correctly reference the file path and resolve the file during execution.PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).nextflow run . -profile debug,test,docker --outdir <OUTDIR>
).CHANGELOG.md
is updated.