Replies: 4 comments 6 replies
-
That could be useful BUT, lot of users are already concerned that NF creates too many hidden files (see https://docs.nersc.gov/jobs/workflow/nextflow/). Also, |
Beta Was this translation helpful? Give feedback.
-
Honestly - it's not a command that I find myself running manually very often with debugging.. I can see that it could be nice to see the file contents of the work directory in Tower directly, but I'd personally put it as a fairly low priority feature. |
Beta Was this translation helpful? Give feedback.
-
@pditommaso , just out of curiosity - I wasn't able to locate the relevant code. Could you please point out the code which is concerned with the generation of these |
Beta Was this translation helpful? Give feedback.
-
Actually, I just realized that this could also be resolved using a design pattern. For example consider a process with the following process listDirContents {
afterScript "tree -ahugf > .directorytree"
"""
touch random_file.txt
"""
}
And we obtain a
So at this point my personal use-case is satisfied ✅ Something that I'm musing about, from the point of view of Tower, I think it might be possible to inject this This way when the user's |
Beta Was this translation helpful? Give feedback.
-
Hi everyone,
I'm wondering whether it's worth adding a
.directory.tree
(or a better named file) which contains the output oftree
command when the task exits.Often times while debugging, we need to inspect the contents of the directory and having a dedicated file would help automate the process. We could add a separate
Directory contents
tab inTower
for every process window as well.Please let me know if this proposal makes sense or not.
Best,
Abhinav
Beta Was this translation helpful? Give feedback.
All reactions