Replace staged input file with original URL#45
Merged
bentsherman merged 1 commit intomainfrom Oct 23, 2025
Merged
Conversation
|
Does this mean that the plugin will require a minimum Nextflow version to work, and what would that be? |
Member
Author
|
If this gets merged, I would release a new plugin version that requires Nextflow 25.04 or newer. So if you use an older version of Nextflow, it will automatically use the current version of nf-prov |
211ed90 to
6e825d5
Compare
6e825d5 to
7c2e753
Compare
c754671 to
485cde2
Compare
7c2e753 to
de1d9d2
Compare
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
de1d9d2 to
1fb381d
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR uses nextflow-io/nextflow#5911 to trace staged input files to their original URL.
Test:
Before:
{ "name": "de11525869ad90b98a2d376c4c30a545", "description": "WC_SAMPLE (1)", "input_list": [ { "uri": "work/stage-5170692d-7ce4-44da-877a-8ed0fc6a9f29/b9/75a58cde91580a079c4fca5d42d70e/read2.fq.gz" }, { "uri": "work/stage-5170692d-7ce4-44da-877a-8ed0fc6a9f29/4d/58a16d7add20fdcddcff6bdeea01d5/read1.fq.gz" } ], }After:
{ "name": "de11525869ad90b98a2d376c4c30a545", "description": "WC_SAMPLE (1)", "input_list": [ { "uri": "https://openstack.cebitec.uni-bielefeld.de:8080/swift/v1/denbi-mg-course/read2.fq.gz" }, { "uri": "https://openstack.cebitec.uni-bielefeld.de:8080/swift/v1/denbi-mg-course/read1.fq.gz" } ], }