Does NextFlow work for file-oriented cases? #2260
Unanswered
marco-brandizi
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
I'm completely new to NextFlow and I'm puzzled that I can't do this simple thing, nor find documentation about it: I understand that NF is channel-oriented, but can it process file-oriented cases correctly?
I mean, suppose you have the usual case (see this example, rewrittent from another discussion):
Now, I delete file a, I expect A and C to be re-executed, with C processing the new a and the existing b and recreating c.
That said,
touch
them).storeDir
and file dates are completely ignored, if a doesn't exist, but c does, A is re-executed but C isn't and the old c is kept.publishDir
would work either, since I'd expect it to work like the first case (for the files remain in the working dir, except formode='move'
, which can only be used in a final step).Am I missing something, or is it that NF isn't a good fit for file-oriented cases like the above?
Moreover, is there a way to run a pipeline only up to a given process (eg, to specify 'A')?
Beta Was this translation helpful? Give feedback.
All reactions